/* ==========================================================================
   DCA International LLP — Design System
   Palette (matched to the DCA logo): Deep Navy #123A6B | Ocean Blue #1C6FA6
            Teal #1CA7C2 | Bright Cyan #55D6E8 | Leaf Green #6FB93C
            Cool White #F5FAFC | Charcoal #1D1D1D | Soft Sky #E4EEF3 | White #FFFFFF
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700&display=swap');

:root{
  --green:#123A6B;
  --green-light:#1C6FA6;
  --gold:#1CA7C2;
  --gold-light:#55D6E8;
  --red:#6FB93C;
  --ivory:#F5FAFC;
  --charcoal:#1D1D1D;
  --beige:#E4EEF3;
  --white:#FFFFFF;

  --font-head:'Montserrat', -apple-system, Segoe UI, sans-serif;
  --font-body:'Montserrat', -apple-system, Segoe UI, sans-serif;

  --shadow-sm: 0 4px 16px rgba(18,58,107,0.08);
  --shadow-md: 0 12px 32px rgba(18,58,107,0.12);
  --shadow-lg: 0 24px 60px rgba(18,58,107,0.18);

  --radius: 18px;
  --radius-sm: 10px;
  --container: 1220px;
  --header-h: 84px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--charcoal);
  background:var(--ivory);
  line-height:1.7;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{
  font-family:var(--font-head);
  color:var(--green);
  line-height:1.2;
  margin:0 0 .5em;
  font-weight:700;
}
p{ margin:0 0 1em; }
.container{ width:100%; max-width:var(--container); margin:0 auto; padding:0 24px; }
section{ position:relative; }

/* ---------- utility ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:.78rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--red); font-weight:600; margin-bottom:14px;
}
.eyebrow::before{ content:''; width:26px; height:2px; background:var(--gold); display:inline-block; }
.section-head{ max-width:720px; margin:0 auto 56px; text-align:center; }
.section-head h2{ font-size:clamp(1.9rem,3.4vw,2.7rem); }
.section-head p{ color:#4a4a44; font-size:1.05rem; }
.section-head.left{ margin:0 0 48px; text-align:left; }

.section-pad{ padding:96px 0; }
.bg-beige{ background:var(--beige); }
.bg-green{ background:var(--green); color:#eef3ef; }
.bg-green h2, .bg-green h3, .bg-green .eyebrow{ color:var(--gold-light); }
.bg-white{ background:var(--white); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 32px; border-radius:100px; font-weight:600; font-size:.95rem;
  border:2px solid transparent; cursor:pointer; transition:.35s cubic-bezier(.2,.8,.2,1);
  position:relative; overflow:hidden; white-space:nowrap;
}
.btn-primary{ background:var(--gold); color:var(--green); box-shadow:0 8px 24px rgba(28,167,194,.35); }
.btn-primary:hover{ background:var(--gold-light); transform:translateY(-3px); box-shadow:0 14px 34px rgba(28,167,194,.5); }
.btn-outline{ border-color:rgba(255,255,255,.6); color:inherit; }
.btn-outline:hover{ background:rgba(255,255,255,.12); transform:translateY(-3px); }
.btn-dark{ background:var(--green); color:var(--ivory); }
.btn-dark:hover{ background:var(--green-light); transform:translateY(-3px); box-shadow:0 14px 34px rgba(18,58,107,.35); }
.btn-sm{ padding:10px 22px; font-size:.85rem; }
.btn-red{ background:var(--red); color:var(--ivory); }
.btn-red:hover{ background:#8f2a20; transform:translateY(-3px); box-shadow:0 14px 34px rgba(111,185,60,.4); }

/* glow sweep on hover */
.btn::after{
  content:''; position:absolute; inset:0; background:linear-gradient(120deg,transparent,rgba(255,255,255,.35),transparent);
  transform:translateX(-120%); transition:transform .6s;
}
.btn:hover::after{ transform:translateX(120%); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header{
  position:fixed; top:0; left:0; width:100%; z-index:1000;
  padding:18px 0; transition:.4s ease;
  background:transparent;
}
.site-header.scrolled{
  padding:12px 0;
  background:rgba(244,250,252,.82);
  backdrop-filter:blur(14px) saturate(160%);
  -webkit-backdrop-filter:blur(14px) saturate(160%);
  box-shadow:0 8px 30px rgba(18,58,107,.08);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; }
.logo{ display:flex; align-items:center; gap:12px; font-family:var(--font-head); }
.logo-img{
  height:54px; width:auto; display:block; flex-shrink:0;
  filter:drop-shadow(0 2px 10px rgba(0,0,0,.18));
  transition:.3s;
}

.main-nav{ display:flex; align-items:center; gap:38px; }
.main-nav a{
  font-weight:500; font-size:.95rem; color:var(--charcoal); position:relative; padding:6px 0;
}
.site-header.transparent-mode:not(.scrolled) .main-nav a{ color:var(--white); }
.main-nav a::after{
  content:''; position:absolute; left:0; bottom:0; height:2px; width:0; background:var(--gold);
  transition:width .3s;
}
.main-nav a:hover::after, .main-nav a.active::after{ width:100%; }
.main-nav a.active{ color:var(--red); }
.site-header.transparent-mode:not(.scrolled) .main-nav a.active{ color:var(--gold-light); }

.header-actions{ display:flex; align-items:center; gap:18px; }
.nav-toggle{
  display:none; width:44px; height:44px; border-radius:50%; border:1px solid rgba(18,58,107,.2);
  background:var(--white); cursor:pointer; align-items:center; justify-content:center; flex-direction:column; gap:5px;
}
.nav-toggle span{ width:20px; height:2px; background:var(--green); display:block; transition:.3s; }
.nav-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

@media (max-width:960px){
  .main-nav{
    position:fixed; top:0; right:0; height:100vh; width:min(78vw,320px);
    background:var(--green); flex-direction:column; justify-content:center; gap:30px;
    transform:translateX(100%); transition:transform .45s cubic-bezier(.2,.8,.2,1);
    padding:40px;
  }
  .main-nav.open{ transform:translateX(0); box-shadow:-20px 0 60px rgba(0,0,0,.3); }
  .main-nav a{ color:var(--ivory) !important; font-size:1.15rem; }
  .main-nav a.active{ color:var(--gold-light) !important; }
  .header-actions .btn-primary{ display:none; }
  .nav-toggle{ display:flex; }
}

/* ==========================================================================
   HERO SLIDER (home)
   ========================================================================== */
.hero-slider{
  position:relative; min-height:100vh; color:var(--white); overflow:hidden; padding-top:var(--header-h);
}
.hero-slide{
  position:absolute; inset:0; display:flex; align-items:center; overflow:hidden;
  opacity:0; z-index:1; pointer-events:none;
  transition:opacity 1.2s ease;
}
.hero-slide.active{ opacity:1; z-index:2; pointer-events:auto; }
.hero-slide .hero-slide-bg{
  position:absolute; inset:0; background-size:cover; background-position:center;
  will-change:transform;
}
.hero-slide::after{
  content:''; position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(18,58,107,.55) 0%, rgba(18,58,107,.72) 55%, rgba(15,30,24,.92) 100%),
    linear-gradient(100deg, rgba(18,58,107,.7) 10%, rgba(111,185,60,.28) 55%, rgba(28,167,194,.32) 100%);
}
.hero-content{ position:relative; z-index:4; max-width:820px; }
.hero-content h1{
  color:var(--white); font-size:clamp(2.3rem,5vw,3.9rem); margin-bottom:22px;
  text-shadow:0 4px 30px rgba(0,0,0,.25);
}
.hero-content h1 em{ color:var(--gold-light); font-style:italic; }
.hero-content p.lead{ font-size:1.18rem; color:rgba(244,250,252,.92); max-width:640px; margin-bottom:36px; }
.hero-cta{ display:flex; gap:18px; flex-wrap:wrap; margin-bottom:56px; }
.trust-badges{ display:flex; flex-wrap:wrap; gap:14px; }
.trust-badge{
  display:flex; align-items:center; gap:10px; padding:12px 18px; border-radius:100px;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.22);
  backdrop-filter:blur(6px); font-size:.85rem; font-weight:500;
}
.trust-badge .dot{ width:8px; height:8px; border-radius:50%; background:var(--gold-light); box-shadow:0 0 12px var(--gold-light); }

/* ---------- slider controls ---------- */
.hero-nav{
  position:absolute; left:0; right:0; bottom:36px; z-index:5;
  display:flex; align-items:center; justify-content:center; gap:22px;
}
.hero-arrow{
  width:44px; height:44px; border-radius:50%; flex-shrink:0;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.3); color:var(--white);
  display:flex; align-items:center; justify-content:center; cursor:pointer; transition:.3s;
}
.hero-arrow:hover{ background:var(--gold); border-color:var(--gold); color:var(--green); }
.hero-dots{ display:flex; align-items:center; gap:10px; }
.hero-dot{
  width:10px; height:10px; border-radius:50%; padding:0; border:1px solid rgba(255,255,255,.55);
  background:transparent; cursor:pointer; transition:.3s;
}
.hero-dot.active{ background:var(--gold-light); border-color:var(--gold-light); width:28px; border-radius:6px; }
@media (max-width:600px){
  .hero-nav{ bottom:22px; gap:14px; }
  .hero-arrow{ width:38px; height:38px; }
}

/* ---------- inner page hero ---------- */
.page-hero{
  position:relative; padding:calc(var(--header-h) + 90px) 0 100px; color:var(--white);
  background-size:cover; background-position:center; overflow:hidden;
}
.page-hero::before{
  content:''; position:absolute; inset:0;
  background:linear-gradient(120deg, rgba(18,58,107,.92), rgba(18,58,107,.75) 45%, rgba(111,185,60,.45));
}
.page-hero .container{ position:relative; z-index:2; }
.page-hero h1{ color:var(--white); font-size:clamp(2.2rem,4.4vw,3.3rem); }
.page-hero p{ color:rgba(244,250,252,.9); font-size:1.1rem; max-width:640px; }
.breadcrumb{ font-size:.85rem; color:var(--gold-light); margin-bottom:16px; letter-spacing:.05em; }
.breadcrumb a{ color:rgba(244,250,252,.75); }
.breadcrumb a:hover{ color:var(--gold-light); }

/* ==========================================================================
   REVEAL ANIMATIONS
   ========================================================================== */
.reveal{ opacity:0; transform:translateY(36px); transition:opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in-view{ opacity:1; transform:translateY(0); }
.reveal-delay-1.in-view{ transition-delay:.1s; }
.reveal-delay-2.in-view{ transition-delay:.2s; }
.reveal-delay-3.in-view{ transition-delay:.3s; }
.reveal-delay-4.in-view{ transition-delay:.4s; }

/* ==========================================================================
   TWO COLUMN INTRO
   ========================================================================== */
.intro-grid{ display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
.intro-collage{ position:relative; display:flex; gap:16px; height:460px; }
.intro-collage img{ border-radius:var(--radius); object-fit:cover; width:100%; height:100%; box-shadow:var(--shadow-md); display:block; }
.intro-collage .tall{ flex:1.2 1 0%; min-width:0; }
.intro-collage .collage-stack{ flex:.8 1 0%; min-width:0; display:flex; flex-direction:column; gap:16px; }
.intro-collage .collage-stack img{ flex:1 1 0%; min-height:0; }
.intro-badge{
  position:absolute; left:-24px; bottom:-24px; background:var(--white); border-radius:var(--radius-sm);
  box-shadow:var(--shadow-lg); padding:18px 22px; display:flex; align-items:center; gap:14px; z-index:3;
}
.intro-badge .num{ font-family:var(--font-head); font-size:2rem; color:var(--red); font-weight:800; }
.intro-badge .lbl{ font-size:.78rem; color:#555; max-width:110px; line-height:1.3; }
@media (max-width:900px){
  .intro-grid{ grid-template-columns:1fr; gap:44px; }
  .intro-collage{ height:380px; }
  .intro-badge{ left:12px; bottom:-18px; }
}
@media (max-width:480px){
  .intro-collage{ height:300px; }
}

/* ==========================================================================
   TIMELINE
   ========================================================================== */
.timeline{ position:relative; max-width:900px; margin:0 auto; }
.timeline::before{
  content:''; position:absolute; left:24px; top:0; bottom:0; width:2px;
  background:linear-gradient(var(--gold), var(--green));
}
.timeline-item{ position:relative; padding-left:70px; margin-bottom:48px; }
.timeline-item:last-child{ margin-bottom:0; }
.timeline-dot{
  position:absolute; left:12px; top:2px; width:26px; height:26px; border-radius:50%;
  background:var(--white); border:3px solid var(--gold); display:flex; align-items:center; justify-content:center;
  box-shadow:0 0 0 6px rgba(28,167,194,.15);
}
.timeline-dot::after{ content:''; width:9px; height:9px; border-radius:50%; background:var(--red); }
.timeline-year{ color:var(--red); font-weight:700; font-family:var(--font-head); font-size:1.4rem; margin-bottom:6px; }
.timeline-item h4{ margin-bottom:6px; }
.timeline-item p{ color:#4a4a44; max-width:600px; }

@media (min-width:820px){
  .timeline{ display:flex; flex-direction:column; }
}

/* ==========================================================================
   CATEGORY CARDS
   ========================================================================== */
.category-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:32px; }
.category-card{
  position:relative; border-radius:var(--radius); overflow:hidden; height:420px;
  box-shadow:var(--shadow-md); isolation:isolate;
}
.category-card img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform 1s cubic-bezier(.2,.7,.2,1); z-index:-2; }
.category-card::before{
  content:''; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(0deg, rgba(18,58,107,.94) 10%, rgba(18,58,107,.25) 60%, rgba(18,58,107,.1) 100%);
}
.category-card:hover img{ transform:scale(1.08); }
.category-card-content{ position:absolute; left:0; right:0; bottom:0; padding:34px; color:var(--white); }
.category-card-content span.tag{ color:var(--gold-light); font-size:.78rem; letter-spacing:.12em; text-transform:uppercase; font-weight:600; }
.category-card-content h3{ color:var(--white); font-size:1.7rem; margin:8px 0 12px; }
.category-card-content p{ color:rgba(244,250,252,.85); font-size:.94rem; margin-bottom:18px; max-width:400px; }
@media (max-width:800px){ .category-grid{ grid-template-columns:1fr; } .category-card{ height:360px; } }

/* ==========================================================================
   PRODUCT CARDS
   ========================================================================== */
.product-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:28px; }
.product-card{
  background:var(--white); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm);
  transition:transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s;
  display:flex; flex-direction:column;
}
.product-card:hover{ transform:translateY(-10px); box-shadow:var(--shadow-lg); }
.product-thumb{ position:relative; height:210px; overflow:hidden; }
.product-thumb img{ width:100%; height:100%; object-fit:cover; transition:transform .7s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-thumb img{ transform:scale(1.1); }
.product-thumb .ribbon{
  position:absolute; top:14px; left:14px; background:var(--red); color:#fff; font-size:.7rem;
  font-weight:700; letter-spacing:.05em; text-transform:uppercase; padding:5px 12px; border-radius:100px;
  box-shadow:0 6px 16px rgba(111,185,60,.4);
}
.product-body{ padding:22px 22px 26px; display:flex; flex-direction:column; flex:1; }
.product-body h4{ font-size:1.18rem; margin-bottom:8px; }
.product-body p{ font-size:.9rem; color:#55554e; flex:1; margin-bottom:16px; }
.tag-row{ display:flex; flex-wrap:wrap; gap:8px; }
.tag-pill{
  font-size:.7rem; font-weight:600; letter-spacing:.02em; padding:5px 12px; border-radius:100px;
  background:var(--beige); color:var(--green); border:1px solid rgba(18,58,107,.12);
}
@media (max-width:1080px){ .product-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .product-grid{ grid-template-columns:1fr; } }

/* filter tabs */
.filter-tabs{ display:flex; justify-content:center; flex-wrap:wrap; gap:12px; margin-bottom:48px; }
.filter-tab{
  padding:12px 26px; border-radius:100px; background:var(--white); border:1px solid rgba(18,58,107,.15);
  font-weight:600; font-size:.88rem; cursor:pointer; transition:.3s;
}
.filter-tab:hover{ border-color:var(--gold); color:var(--red); }
.filter-tab.active{ background:var(--green); color:var(--gold-light); border-color:var(--green); }
.product-card[data-hidden="true"]{ display:none; }

/* ==========================================================================
   FEATURE / ICON CARDS
   ========================================================================== */
.feature-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.feature-card{
  background:var(--white); border-radius:var(--radius); padding:36px 30px; box-shadow:var(--shadow-sm);
  transition:.4s cubic-bezier(.2,.7,.2,1); border:1px solid transparent;
}
.feature-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); border-color:rgba(28,167,194,.35); }
.feature-icon{
  width:60px; height:60px; border-radius:16px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(145deg,var(--green),var(--green-light)); color:var(--gold-light); margin-bottom:20px;
  font-size:1.5rem; transition:.4s;
}
.feature-card:hover .feature-icon{ background:linear-gradient(145deg,var(--gold),var(--gold-light)); color:var(--green); transform:rotate(-8deg) scale(1.08); }
.feature-card h4{ font-size:1.15rem; margin-bottom:10px; }
.feature-card p{ font-size:.92rem; color:#55554e; margin:0; }
@media (max-width:900px){ .feature-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .feature-grid{ grid-template-columns:1fr; } }

/* ==========================================================================
   PROCESS STEPS
   ========================================================================== */
.process-flow{ display:grid; grid-template-columns:repeat(6,1fr); gap:20px; counter-reset:step; }
.process-step{
  background:var(--white); border-radius:var(--radius-sm); padding:26px 18px; text-align:center;
  box-shadow:var(--shadow-sm); position:relative; transition:.4s;
}
.process-step:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.process-step .step-num{
  width:38px; height:38px; border-radius:50%; background:var(--green); color:var(--gold-light);
  display:flex; align-items:center; justify-content:center; margin:0 auto 14px; font-family:var(--font-head); font-weight:700;
}
.process-step h5{ font-family:var(--font-head); color:var(--green); font-size:.98rem; margin-bottom:6px; }
.process-step p{ font-size:.8rem; color:#666; margin:0; }
@media (max-width:1000px){ .process-flow{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:560px){ .process-flow{ grid-template-columns:repeat(2,1fr); } }

/* ==========================================================================
   PACKAGING CARDS
   ========================================================================== */
.pack-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:22px; }
.pack-card{
  background:var(--white); border-radius:var(--radius-sm); padding:28px 18px; text-align:center; box-shadow:var(--shadow-sm);
  transition:.35s;
}
.pack-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); background:var(--beige); }
.pack-icon{
  width:58px; height:58px; border-radius:14px; margin:0 auto 16px;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(145deg,var(--green),var(--green-light)); color:var(--gold-light);
  transition:.4s cubic-bezier(.2,.7,.2,1);
}
.pack-card:hover .pack-icon{ background:linear-gradient(145deg,var(--gold),var(--gold-light)); color:var(--green); transform:rotate(-6deg) scale(1.06); }
.pack-card h5{ font-family:var(--font-head); font-size:.96rem; color:var(--green); margin:0; }
@media (max-width:960px){ .pack-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:600px){ .pack-grid{ grid-template-columns:repeat(2,1fr); } }

/* ==========================================================================
   STATS COUNTER
   ========================================================================== */
.stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:30px; text-align:center; }
.stat-item .num{
  font-family:var(--font-head); font-size:clamp(2.4rem,5vw,3.4rem); font-weight:800; color:var(--gold-light);
  display:flex; align-items:baseline; justify-content:center; gap:4px;
}
.stat-item .lbl{ color:rgba(244,250,252,.85); font-size:.92rem; margin-top:8px; }
@media (max-width:800px){ .stats-grid{ grid-template-columns:repeat(2,1fr); gap:40px 20px; } }

/* ==========================================================================
   MISSION / VISION / VALUES
   ========================================================================== */
.mvv-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.mvv-card{
  padding:40px 32px; border-radius:var(--radius); background:var(--white); box-shadow:var(--shadow-sm);
  border-top:4px solid var(--gold); transition:.4s;
}
.mvv-card:nth-child(2){ border-top-color:var(--red); }
.mvv-card:nth-child(3){ border-top-color:var(--green); }
.mvv-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.mvv-card h3{ font-size:1.4rem; }
.mvv-card p{ color:#55554e; font-size:.95rem; }
.value-list{ display:flex; flex-wrap:wrap; gap:10px; margin-top:12px; }
.value-list li{ background:var(--beige); color:var(--green); font-weight:600; font-size:.82rem; padding:6px 14px; border-radius:100px; }
@media (max-width:900px){ .mvv-grid{ grid-template-columns:1fr; } }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner{
  position:relative; padding:100px 0; text-align:center; color:var(--white); overflow:hidden;
  background:linear-gradient(120deg, var(--green) 0%, #0A2547 100%);
}
.cta-banner .bg-shape{ position:absolute; inset:0; opacity:.15; background:radial-gradient(circle at 20% 30%, var(--gold) 0, transparent 40%), radial-gradient(circle at 80% 70%, var(--red) 0, transparent 40%); }
.cta-banner h2{ color:var(--white); font-size:clamp(1.9rem,3.6vw,2.7rem); }
.cta-banner p{ color:rgba(244,250,252,.85); max-width:560px; margin:0 auto 32px; }
.cta-banner .container{ position:relative; z-index:2; }

/* ==========================================================================
   ABOUT PAGE SPECIFIC
   ========================================================================== */
.split-media{ display:grid; grid-template-columns:1fr 1fr; gap:0; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-lg); }
.split-media .media{ position:relative; min-height:420px; }
.split-media .media img{ width:100%; height:100%; object-fit:cover; }
.split-media .content{ background:var(--green); color:var(--ivory); padding:56px 48px; display:flex; flex-direction:column; justify-content:center; }
.split-media .content h3{ color:var(--gold-light); }
.split-media .content p{ color:rgba(244,250,252,.88); }
@media (max-width:860px){ .split-media{ grid-template-columns:1fr; } .split-media .media{ min-height:260px; } }

.trust-statement{
  text-align:center; max-width:820px; margin:0 auto; padding:70px 40px; background:var(--beige); border-radius:var(--radius);
  position:relative;
}
.trust-statement::before{ content:'\201C'; font-family:var(--font-head); font-size:6rem; color:var(--gold); position:absolute; top:0; left:30px; opacity:.5; line-height:1; }
.trust-statement p{ font-family:var(--font-head); font-style:italic; font-size:1.35rem; color:var(--green); line-height:1.6; }

/* ==========================================================================
   PRODUCTS PAGE — USE CASES + CHECKLIST
   ========================================================================== */
.usecase-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.usecase-item{
  background:var(--white); border-radius:var(--radius-sm); padding:26px 16px; text-align:center; box-shadow:var(--shadow-sm);
  font-weight:600; font-size:.9rem; color:var(--green); transition:.3s;
}
.usecase-item:hover{ background:var(--green); color:var(--gold-light); transform:translateY(-5px); }
@media (max-width:820px){ .usecase-grid{ grid-template-columns:repeat(2,1fr); } }

.checklist{ display:grid; grid-template-columns:1fr 1fr; gap:18px 40px; max-width:820px; margin:0 auto; }
.checklist li{ display:flex; align-items:flex-start; gap:14px; font-size:.98rem; }
.checklist .check{
  flex-shrink:0; width:26px; height:26px; border-radius:50%; background:var(--gold); color:var(--green);
  display:flex; align-items:center; justify-content:center; font-weight:800; font-size:.8rem; margin-top:2px;
}
@media (max-width:700px){ .checklist{ grid-template-columns:1fr; } }

/* ==========================================================================
   CERTIFICATES PAGE
   ========================================================================== */
.cert-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:28px; }
.cert-card{
  background:var(--white); border-radius:var(--radius); padding:36px 28px; text-align:center; box-shadow:var(--shadow-sm);
  transition:.4s cubic-bezier(.2,.7,.2,1); display:flex; flex-direction:column; align-items:center;
}
.cert-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.cert-icon{
  width:64px; height:64px; border-radius:16px; display:flex; align-items:center; justify-content:center; flex-shrink:0;
  background:linear-gradient(145deg,var(--green),var(--green-light)); color:var(--gold-light); margin-bottom:20px;
}
.cert-card h4{ font-size:1.05rem; margin-bottom:10px; }
.cert-card p{ font-size:.88rem; color:#55554e; margin-bottom:22px; flex:1; }
@media (max-width:1080px){ .cert-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .cert-grid{ grid-template-columns:1fr; } }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.contact-card{
  background:var(--white); padding:34px 28px; border-radius:var(--radius); box-shadow:var(--shadow-sm); text-align:center;
  transition:.4s;
}
.contact-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.contact-card .feature-icon{ margin:0 auto 18px; }
.contact-card h4{ margin-bottom:8px; }
.contact-card a, .contact-card p{ color:#55554e; font-size:.95rem; }
.contact-card a:hover{ color:var(--red); }

.contact-layout{ display:grid; grid-template-columns:1.1fr .9fr; gap:50px; align-items:start; }
.contact-form{ background:var(--white); border-radius:var(--radius); padding:44px; box-shadow:var(--shadow-md); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-group{ margin-bottom:20px; }
.form-group label{ display:block; font-size:.85rem; font-weight:600; color:var(--green); margin-bottom:8px; }
.form-group input, .form-group select, .form-group textarea{
  width:100%; padding:13px 16px; border-radius:10px; border:1.5px solid #cddce6; background:var(--ivory);
  font-family:var(--font-body); font-size:.95rem; color:var(--charcoal); transition:.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{
  outline:none; border-color:var(--gold); box-shadow:0 0 0 4px rgba(28,167,194,.15); background:var(--white);
}
.form-group textarea{ resize:vertical; min-height:120px; }
.form-note{ font-size:.85rem; color:#3aa15a; margin-top:14px; display:none; }
.form-note.show{ display:block; }

.side-panel{ display:flex; flex-direction:column; gap:22px; }
.map-box{
  border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-md); height:260px;
  position:relative;
}
.map-box iframe{ width:100%; height:100%; border:0; filter:grayscale(15%); }
.whatsapp-card{
  background:linear-gradient(120deg,var(--green-light),var(--green)); color:var(--ivory); border-radius:var(--radius); padding:30px;
  display:flex; align-items:center; gap:18px;
}
.whatsapp-card .wa-icon{ width:52px; height:52px; border-radius:50%; background:#25D366; display:flex; align-items:center; justify-content:center; font-size:1.5rem; flex-shrink:0; }
.response-box{ background:var(--beige); border-radius:var(--radius); padding:26px 28px; text-align:center; font-weight:600; color:var(--green); }
@media (max-width:960px){ .contact-layout{ grid-template-columns:1fr; } .contact-grid{ grid-template-columns:1fr; } .form-row{ grid-template-columns:1fr; } }

/* ==========================================================================
   FLOATING BUTTONS
   ========================================================================== */
.whatsapp-float{
  position:fixed; bottom:28px; left:28px; width:60px; height:60px; border-radius:50%; background:#25D366;
  display:flex; align-items:center; justify-content:center; color:#fff; font-size:1.7rem; z-index:900;
  box-shadow:0 10px 30px rgba(37,211,102,.5); animation:pulseWa 2.4s infinite;
}
.whatsapp-float:hover{ transform:scale(1.08); }
@keyframes pulseWa{
  0%{ box-shadow:0 10px 30px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.5); }
  70%{ box-shadow:0 10px 30px rgba(37,211,102,.5), 0 0 0 16px rgba(37,211,102,0); }
  100%{ box-shadow:0 10px 30px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0); }
}
.back-to-top{
  position:fixed; bottom:28px; right:28px; width:52px; height:52px; border-radius:50%; background:var(--green);
  color:var(--gold-light); display:flex; align-items:center; justify-content:center; font-size:1.3rem; z-index:900;
  box-shadow:var(--shadow-md); opacity:0; visibility:hidden; transform:translateY(20px); transition:.35s; cursor:pointer;
  border:none;
}
.back-to-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover{ background:var(--gold); color:var(--green); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer{ background:#0A2547; color:rgba(244,250,252,.8); padding-top:80px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-logo-img{ height:64px; }
.footer-brand p{ font-size:.9rem; color:rgba(244,250,252,.65); margin-top:16px; max-width:320px; }
footer h5{ color:var(--gold-light); font-family:var(--font-head); font-size:1.05rem; margin-bottom:20px; }
footer ul li{ margin-bottom:12px; }
footer ul li a{ font-size:.9rem; color:rgba(244,250,252,.75); transition:.25s; }
footer ul li a:hover{ color:var(--gold-light); padding-left:4px; }
.footer-contact li{ display:flex; gap:10px; font-size:.88rem; align-items:flex-start; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:26px 0; font-size:.82rem; flex-wrap:wrap; gap:10px; color:rgba(244,250,252,.55); }
.footer-social{ display:flex; gap:12px; }
.footer-social a{ width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; transition:.3s; }
.footer-social a:hover{ background:var(--gold); color:var(--green); }
@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }

/* ==========================================================================
   RESPONSIVE — GLOBAL FALLBACKS
   ========================================================================== */
@media (max-width:1080px){
  .process-flow{ grid-template-columns:repeat(3,1fr); }
}
@media (max-width:768px){
  .section-pad{ padding:70px 0; }
  .contact-form{ padding:28px; }
  .split-media .content{ padding:38px 26px; }
}
