:root{
  --bg: #0b1118;
  --surface: #101a25;
  --surface-2: #132232;
  --surface-3: #1a2b3b;
  --primary: #253240;
  --primary-2: #31485f;
  --accent: #ffd343;
  --accent-2: #f5d9a2;
  --text: #f4f7fb;
  --muted: #aab7c5;
  --line: rgba(255,255,255,0.10);
  --success: #25d366;
  --white: #ffffff;
  --shadow-sm: 0 12px 28px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 20px 60px rgba(0, 0, 0, 0.28);
  --radius: 20px;
  --container: 1180px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,211,67,0.08), transparent 22%),
    radial-gradient(circle at bottom right, rgba(49,72,95,0.18), transparent 30%),
    linear-gradient(180deg, #081018 0%, #0d1620 100%);
  color:var(--text);
  line-height:1.6;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
textarea{
  font:inherit;
}

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter: blur(16px);
  background:rgba(8, 16, 24, 0.78);
  border-bottom:1px solid var(--line);
}

.nav{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand img{
  width:56px;
  height:56px;
  object-fit:contain;
  border-radius:14px;
}

.brand-copy{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}

.brand-copy strong{
  font-size:1.05rem;
  letter-spacing:0.02em;
  color:var(--white);
}

.brand-copy span{
  font-size:0.88rem;
  color:var(--muted);
}

.nav-menu{
  display:flex;
  align-items:center;
  gap:24px;
}

.nav-menu a{
  color:var(--muted);
  font-weight:600;
  transition:color .25s ease;
}

.nav-menu a:hover{
  color:var(--white);
}

.nav-cta{
  padding:12px 18px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  color:#1d2730 !important;
  box-shadow:var(--shadow-sm);
}

.nav-toggle{
  display:none;
  width:46px;
  height:46px;
  border:none;
  background:rgba(255,255,255,0.06);
  border-radius:12px;
  cursor:pointer;
  padding:10px;
}

.nav-toggle span{
  display:block;
  width:100%;
  height:3px;
  border-radius:999px;
  background:var(--white);
  margin:5px 0;
}

/* HERO */
.hero{
  position:relative;
  overflow:hidden;
  padding:76px 0 64px;
}

.hero-bg-glow{
  position:absolute;
  border-radius:50%;
  filter:blur(80px);
  opacity:0.34;
  pointer-events:none;
}

.hero-bg-glow-1{
  width:280px;
  height:280px;
  background:rgba(255,211,67,0.18);
  top:40px;
  left:-60px;
}

.hero-bg-glow-2{
  width:320px;
  height:320px;
  background:rgba(49,72,95,0.34);
  right:-100px;
  top:50px;
}

.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:42px;
  align-items:center;
}

.eyebrow,
.section-kicker{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  color:var(--accent);
  font-size:0.9rem;
  font-weight:700;
  margin-bottom:16px;
}

.hero h1{
  margin:0 0 18px;
  font-size:clamp(2.4rem, 4vw, 4.5rem);
  line-height:1.02;
  letter-spacing:-0.04em;
}

.hero-text{
  margin:0 0 26px;
  color:var(--muted);
  font-size:1.08rem;
  max-width:700px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:24px;
}

.hero-points{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.hero-points li{
  color:var(--text);
  position:relative;
  padding-left:24px;
}

.hero-points li::before{
  content:"•";
  position:absolute;
  left:8px;
  top:0;
  color:var(--accent);
  font-weight:800;
}

.hero-visual{
  position:relative;
}

.hero-card{
  border-radius:28px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:var(--shadow-md);
  padding:18px;
}

.hero-card img{
  width:100%;
  border-radius:18px;
  object-fit:cover;
}

.floating-metric{
  position:absolute;
  max-width:240px;
  padding:16px;
  border-radius:18px;
  background:rgba(10,18,27,0.86);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:var(--shadow-sm);
  backdrop-filter:blur(10px);
}

.floating-metric strong{
  display:block;
  margin-bottom:6px;
  color:var(--white);
}

.floating-metric span{
  color:var(--muted);
  font-size:0.92rem;
}

.metric-one{
  left:-20px;
  bottom:24px;
}

.metric-two{
  right:-20px;
  top:26px;
}

/* TRUST */
.trust-strip{
  padding:22px 0;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.trust-item{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:18px;
  padding:18px;
  box-shadow:var(--shadow-sm);
}

.trust-item strong{
  display:block;
  margin-bottom:6px;
  color:var(--white);
}

.trust-item span{
  color:var(--muted);
  font-size:0.95rem;
}

/* SECTIONS */
.section{
  padding:84px 0;
}

.section-dark{
  background:linear-gradient(180deg, rgba(19,34,50,0.92), rgba(13,22,32,0.9));
  border-top:1px solid rgba(255,255,255,0.05);
  border-bottom:1px solid rgba(255,255,255,0.05);
}

.section-light{
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.03));
}

.section-heading{
  max-width:860px;
  margin:0 auto 44px;
  text-align:center;
}

.section-heading h2{
  margin:0 0 14px;
  font-size:clamp(2rem, 3vw, 3.1rem);
  line-height:1.08;
}

.section-heading p{
  margin:0;
  color:var(--muted);
  font-size:1.05rem;
}

/* SERVICES */
.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.service-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.07);
  border-radius:22px;
  padding:26px 22px;
  box-shadow:var(--shadow-sm);
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service-card:hover{
  transform:translateY(-6px);
  border-color:rgba(255,211,67,0.28);
  box-shadow:var(--shadow-md);
}

.service-icon{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:linear-gradient(135deg, rgba(255,211,67,0.18), rgba(255,255,255,0.06));
  font-size:1.45rem;
  margin-bottom:18px;
}

.service-card h3{
  margin:0 0 12px;
  font-size:1.15rem;
  color:var(--white);
}

.service-card p{
  margin:0 0 14px;
  color:var(--muted);
}

.text-link{
  color:var(--accent);
  font-weight:700;
}

/* TWO COLUMN */
.two-column{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
}

.content-block h2{
  margin:0 0 16px;
  font-size:clamp(1.8rem, 3vw, 2.8rem);
  line-height:1.1;
}

.content-block p{
  margin:0 0 14px;
  color:var(--muted);
}

.feature-panel{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.07);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow-sm);
}

.feature-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.feature-row:last-child{
  border-bottom:none;
}

.feature-row strong{
  color:var(--white);
}

.feature-row span{
  color:var(--muted);
  text-align:right;
}

/* PROJECTS */
.projects-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.project-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.07);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.project-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-md);
  border-color:rgba(255,211,67,0.22);
}

.project-media{
  aspect-ratio: 16 / 10;
  overflow:hidden;
  background:#0b1118;
}

.project-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.project-content{
  padding:20px;
}

.project-content h3{
  margin:0 0 10px;
  color:var(--white);
  font-size:1.18rem;
}

.project-content p{
  margin:0 0 14px;
  color:var(--muted);
}

.project-tag{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,211,67,0.12);
  color:var(--accent);
  font-size:0.88rem;
  font-weight:700;
}

/* PROCESS */
.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.process-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:22px;
  padding:24px 22px;
  box-shadow:var(--shadow-sm);
}

.process-number{
  display:inline-flex;
  width:54px;
  height:54px;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  color:#1d2730;
  font-weight:800;
  margin-bottom:16px;
}

.process-card h3{
  margin:0 0 10px;
  color:var(--white);
}

.process-card p{
  margin:0;
  color:var(--muted);
}

/* STATS */
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.stat-card{
  padding:24px;
  border-radius:22px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.06);
  box-shadow:var(--shadow-sm);
  text-align:center;
}

.stat-card strong{
  display:block;
  font-size:1.2rem;
  color:var(--white);
  margin-bottom:8px;
}

.stat-card span{
  color:var(--muted);
}

/* CONTACT */
.contact-box{
  border-radius:28px;
  background:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.03));
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:var(--shadow-md);
  padding:36px;
  text-align:center;
}

.contact-copy h2{
  margin:0 0 14px;
  font-size:clamp(1.9rem, 3vw, 2.9rem);
  line-height:1.1;
}

.contact-copy p{
  margin:0 auto 22px;
  color:var(--muted);
  max-width:760px;
}

.contact-actions{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:24px;
}

.contact-data{
  display:grid;
  gap:6px;
}

.contact-data p{
  margin:0;
  color:var(--text);
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  font-weight:700;
  transition:transform .2s ease, opacity .2s ease, background .2s ease, color .2s ease;
  box-shadow:var(--shadow-sm);
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  color:#1d2730;
}

.btn-secondary{
  background:rgba(255,255,255,0.08);
  color:var(--white);
  border:1px solid rgba(255,255,255,0.12);
}

.btn-outline{
  background:transparent;
  color:var(--accent);
  border:1px solid rgba(255,211,67,0.28);
}

/* FLOATING WHATSAPP */
.floating-whatsapp{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:999;
  min-height:58px;
  padding:0 20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:var(--success);
  color:var(--white);
  font-weight:800;
  box-shadow:0 20px 40px rgba(37, 211, 102, 0.28);
}

/* FOOTER */
.site-footer{
  padding-top:54px;
  background:#081018;
  border-top:1px solid rgba(255,255,255,0.06);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 0.8fr 0.8fr;
  gap:28px;
  padding-bottom:28px;
}

.footer-logo{
  width:82px;
  margin-bottom:14px;
}

.site-footer h3{
  margin:0 0 14px;
  color:var(--white);
  font-size:1rem;
}

.site-footer p,
.site-footer li,
.site-footer a{
  color:var(--muted);
}

.site-footer ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.site-footer a:hover{
  color:var(--white);
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.06);
  padding:18px 0 24px;
  text-align:center;
}

.footer-bottom p{
  margin:0;
  color:var(--muted);
}

/* REVEAL */
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .65s ease, transform .65s ease;
}

.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1100px){
  .hero-grid,
  .two-column,
  .services-grid,
  .projects-grid,
  .process-grid,
  .stats-grid,
  .trust-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .projects-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .process-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .stats-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .trust-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .metric-one,
  .metric-two{
    position:static;
    margin-top:14px;
  }
}

@media (max-width: 860px){
  .nav-toggle{
    display:block;
  }

  .nav-menu{
    position:absolute;
    top:84px;
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    background:rgba(8,16,24,0.98);
    border-bottom:1px solid var(--line);
    padding:12px 16px 18px;
  }

  .nav-menu.open{
    display:flex;
  }

  .nav-menu a{
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,0.06);
  }

  .nav-menu a:last-child{
    border-bottom:none;
  }

  .hero{
    padding:54px 0 42px;
  }

  .section{
    padding:64px 0;
  }

  .services-grid,
  .projects-grid,
  .process-grid,
  .stats-grid,
  .trust-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .container{
    width:min(var(--container), calc(100% - 22px));
  }

  .hero h1{
    font-size:2.2rem;
  }

  .hero-text{
    font-size:1rem;
  }

  .hero-actions,
  .contact-actions{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }

  .contact-box{
    padding:24px 16px;
  }

  .floating-whatsapp{
    left:12px;
    right:12px;
    bottom:12px;
  }
}