:root {
  --bg: #0b1220;
  --bg-soft: #101a2e;
  --surface: #ffffff;
  --surface-2: #f4f7fb;
  --text: #1a2233;
  --text-light: #68748c;
  --white: #ffffff;
  --primary: #e7b76a;
  --primary-dark: #cb9b4f;
  --border: rgba(16, 24, 40, 0.08);
  --shadow: 0 18px 50px rgba(11, 18, 32, 0.1);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1200px;
  --transition: 0.3s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary-dark);
}

.section-tag::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

h1, h2, h3, h4, p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.3;
}

p {
  color: var(--text-light);
}

.topbar {
  background: var(--bg);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 46px;
}

.topbar__socials {
  display: flex;
  gap: 10px;
}

.topbar__socials span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.9;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16, 24, 40, 0.06);
}

.header.scrolled {
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.logo__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #f4d08f);
  color: var(--bg);
  box-shadow: var(--shadow);
}

.logo__text {
  font-size: 1.05rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  font-weight: 600;
  font-size: 0.96rem;
  transition: color var(--transition);
}

.nav a:hover {
  color: var(--primary-dark);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--primary);
  color: var(--bg);
}

.btn--primary:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.btn--ghost {
  border-color: rgba(255,255,255,0.22);
  color: var(--white);
}

.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn--light {
  background: var(--white);
  color: var(--bg);
}

.btn--mobile {
  display: none;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: var(--transition);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(231, 183, 106, 0.18), transparent 28%),
    linear-gradient(135deg, #09111f 0%, #0f1a2f 50%, #17253f 100%);
  color: var(--white);
  padding: 84px 0 72px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(231, 183, 106, 0.08);
  filter: blur(30px);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 44px;
}

.hero__desc {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 34px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 620px;
}

.hero__stats div {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 18px;
}

.hero__stats strong,
.about__badge strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1.1;
  color: var(--white);
}

.hero__stats span {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero__visual {
  position: relative;
  min-height: 540px;
}

.hero-card {
  position: absolute;
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}


.hero-card img {
  width: 100%;
  height: 100%;
  display: block;
	 border-radius: 20px;
  object-fit: cover;
}

.hero-card--large {
  inset: 0 0 0 40px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(10, 17, 31, 0.15), rgba(10, 17, 31, 0.75)),
    linear-gradient(135deg, #d9dee8, #8e99ae 50%, #5d6a81);
}

.hero-card__label {
  display: inline-block;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.hero-card__title {
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.1;
}

.hero-card--small {
  min-width: 150px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
}

.hero-card--small span {
  display: block;
  color: var(--text-light);
  font-size: 0.9rem;
}

.hero-card--small strong {
  font-size: 2rem;
  color: var(--bg);
}

.hero-card--floating {
  top: 28px;
  left: 0;
}

.hero-card--corner {
  right: 0;
  bottom: 36px;
}

.services {
  background: var(--surface-2);
}

.services__grid,
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card,
.blog-card,
.feature-box,
.logo-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  
  overflow: hidden;
	  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.service-card {
  position: relative;
  padding: 28px;
}

.service-card__number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(16, 24, 40, 0.15);
  font-size: 2rem;
  font-weight: 800;
}

.service-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(231, 183, 106, 0.15);
  color: var(--primary-dark);
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.service-card a,
.blog-card a {
  color: var(--primary-dark);
  font-weight: 700;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__image {
  min-height: 560px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(10,17,31,0.1), rgba(10,17,31,0.6)),
    linear-gradient(145deg, #dfe5ef, #a6b2c7 45%, #73829b);
}

.about__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  left: -14px;
  bottom: 26px;
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--bg);
  color: rgba(255,255,255,0.74);
  box-shadow: 0 20px 60px rgba(11, 18, 32, 0.25);
}

.about__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.feature-box {
  padding: 22px;
}

.feature-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.logo-grid { 
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}


.logo-item {
  min-height: 92px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #7a8498;
}

.blog-card {
  overflow: hidden;
}

.blog-card__image {
  height: 220px;
  background:
    linear-gradient(180deg, rgba(10,17,31,0.08), rgba(10,17,31,0.35)),
    url('image/tabela.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.blog-card__image2 {
  height: 220px;
  background:
    linear-gradient(180deg, rgba(10,17,31,0.08), rgba(10,17,31,0.35)),
    url('image/cephe.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.blog-card__image3 {
  height: 220px;
  background:
    linear-gradient(180deg, rgba(10,17,31,0.08), rgba(10,17,31,0.35)),
    url('image/ATM.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.blog-card h3,
.blog-card p,
.blog-card a,
.blog-card__date {
  padding-inline: 24px;
}

.blog-card__date {
  display: inline-block;
  padding-top: 24px;
  color: var(--primary-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.blog-card a {
  display: inline-block;
  padding-bottom: 24px;
}

.cta {
  background: linear-gradient(135deg, var(--bg) 0%, #13213a 100%);
}

.cta__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  padding: 42px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(231,183,106,0.14), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.08);
}

.footer {
  background: #0a1020;
  color: rgba(255,255,255,0.75);
  padding: 84px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer__logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 16px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li + li {
  margin-top: 10px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 36px;
  padding-top: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .nav {
    position: fixed;
    top: 84px;
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: var(--transition);
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .btn--mobile,
  .menu-toggle {
    display: inline-flex;
  }

  .header__actions > .btn--primary {
    display: none;
  }

  .hero__grid,
  .about__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 460px;
  }

  .hero-card--large {
    inset: 20px 20px 20px 20px;
  }

  .services__grid,
  .blog__grid,
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .topbar__inner {
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
  }

  .header__inner {
    min-height: 74px;
  }

  .nav {
    top: 78px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero__stats,
  .about__features,
  .services__grid,
  .blog__grid,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 360px;
  }

  .hero-card--floating,
  .hero-card--corner {
    min-width: 120px;
    padding: 14px 16px;
  }

  .about__image {
    min-height: 420px;
  }

  .cta__box {
    padding: 28px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .logo__text {
    font-size: 0.96rem;
  }

  .hero-card--small {
    min-width: 104px;
  }

  .hero-card--floating {
    top: 8px;
    left: 8px;
  }

  .hero-card--corner {
    right: 8px;
    bottom: 10px;
  }

  .about__badge {
    position: static;
    margin-top: 16px;
    display: inline-block;
  }
}


/* Tablet */
@media (max-width: 992px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .logo-item {
    height: 100px;
  }
}

/* Mobil */
@media (max-width: 576px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .logo-item {
    height: 90px;
    padding: 10px;
  }
}

.wa-wrapper {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;
}

.wa-wrapper.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wa-button {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 210px;
  padding: 14px 18px;
  border-radius: 18px;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow:
    0 12px 30px rgba(18, 140, 126, 0.28),
    0 4px 12px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

.wa-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 90%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );
  transition: left 0.65s ease;
}

.wa-button:hover::before {
  left: 130%;
}

.wa-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 18px 35px rgba(18, 140, 126, 0.34),
    0 8px 16px rgba(0, 0, 0, 0.16);
}

.wa-button:active {
  transform: scale(0.98);
}

.wa-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.18);
}

.wa-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.wa-content {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.wa-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.wa-text {
  font-size: 13px;
  opacity: 0.92;
  margin-top: 4px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .wa-wrapper {
    right: 16px;
    bottom: 16px;
  }

  .wa-button {
    min-width: auto;
    padding: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    justify-content: center;
  }

  .wa-content {
    display: none;
  }

  .wa-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: transparent;
    box-shadow: none;
  }

  .wa-icon svg {
    width: 30px;
    height: 30px;
  }
}



