/* =====================================================
   ROOT
===================================================== */
:root{
  --white:#ffffff;
  --soft:#fafafa;
  --text:#1f2933;
  --muted:#6b7280;
  --border:#e5e7eb;
  --accent:#6b7f2b;

  --glass-bg:rgba(255,255,255,0.65);
  --glass-border:rgba(255,255,255,0.35);
  --glass-blur:blur(14px);

  --ease:cubic-bezier(0.22,1,0.36,1);
  --max:1140px;
  --radius:999px;
}

/* =====================================================
   RESET
===================================================== */
*{margin:0;padding:0;box-sizing:border-box;}
body{
  font-family:system-ui,-apple-system,"Segoe UI",Inter,sans-serif;
  background:var(--white);
  color:var(--text);
  line-height:1.7;
}
img{
  width:100%;
  display:block;
  border-radius:16px;
  background:#f3f4f6;
}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}

/* =====================================================
   CONTAINER
===================================================== */
.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 24px;
}
.narrow{max-width:720px;}

/* =====================================================
   HEADER
===================================================== */
header{
  background:var(--glass-bg);
  backdrop-filter:var(--glass-blur);
  border-bottom:1px solid var(--glass-border);
  position:sticky;
  top:0;
  z-index:100;
}
.header-inner{
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand h1{font-size:18px;font-weight:600;}
.brand p{font-size:12px;color:var(--muted);}
.primary-nav ul{display:flex;gap:28px;}
.primary-nav a{font-size:14px;color:var(--muted);}
.primary-nav a:hover{color:var(--text);}
.header-cta a{
  border:1px solid var(--accent);
  padding:8px 18px;
  border-radius:var(--radius);
  font-size:14px;
  color:var(--accent);
}
.header-cta a:hover{background:var(--accent);color:#fff;}
.menu-toggle{display:none;font-size:22px;background:none;border:none;}

/* =====================================================
   MOBILE MENU
===================================================== */
.mobile-menu{
  max-height:0;
  overflow:hidden;
  opacity:0;
  background:var(--glass-bg);
  border-top:1px solid var(--glass-border);
  transition:all .4s var(--ease);
}
.mobile-menu.open{max-height:500px;opacity:1;}
.mobile-menu ul{padding:24px;}
.mobile-primary a{display:block;padding:14px 0;font-weight:600;}
.mobile-secondary{
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid var(--border);
}
.mobile-secondary a{display:block;padding:10px 0;color:var(--muted);}

/* =====================================================
   HERO
===================================================== */
.hero{padding:80px 0 56px;}
.hero-inner{text-align:center;margin-bottom:40px;}
.hero .eyebrow{
  font-size:12px;
  letter-spacing:1px;
  color:var(--accent);
  margin-bottom:12px;
  display:inline-block;
}
.hero h2{font-size:42px;margin-bottom:16px;}
.hero p{color:var(--muted);}
.hero-actions{
  margin-top:28px;
  display:inline-flex;
  gap:16px;
  padding:16px 20px;
  background:rgba(255,255,255,.6);
  backdrop-filter:blur(10px);
  border-radius:var(--radius);
}
.hero-actions a:first-child{
  background:var(--accent);
  color:#fff;
  padding:12px 28px;
  border-radius:var(--radius);
}
.hero-actions a:last-child{
  padding:10px 16px;
  background:rgba(107,127,43,.1);
  color:var(--accent);
  border-radius:var(--radius);
}

/* =====================================================
   TRUST + PROOF INTRO
===================================================== */
.trust-proof{padding:72px 0;}
.trust-proof-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
}
.trust-proof h3{margin-bottom:12px;}
.trust-proof p{color:var(--muted);margin-bottom:14px;}
.trust-proof ul li{margin-top:8px;color:var(--muted);}

/* Vertical divider (desktop only) */
.trust-block{position:relative;}
@media(min-width:1025px){
  .trust-block::after{
    content:"";
    position:absolute;
    top:10%;
    right:-32px;
    width:1px;
    height:80%;
    background:var(--border);
  }
}

/* =====================================================
   PROOF DETAILS
===================================================== */
.proof-details{padding:72px 0;}
.proof-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
  margin-bottom:56px;
}

/* Desktop lock */
.proof-text{order:1;}
.proof-image{order:2;}
.proof-row.reverse .proof-image{order:1;}
.proof-row.reverse .proof-text{order:2;}

.proof-text h4{margin-bottom:10px;}
.proof-text p{color:var(--muted);}
.proof-image img{max-width:520px;margin:0 auto;}

/* =====================================================
   PROJECTS
===================================================== */
.projects{padding:72px 0;}
.project-list{display:flex;flex-direction:column;gap:64px;}
.project{
  background:rgba(255,255,255,.75);
  border:1px solid var(--glass-border);
  border-radius:24px;
  padding:32px;
}
.project-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
}
.project-row:nth-child(even){direction:rtl;}
.project-row:nth-child(even)>*{direction:ltr;}
.project-image img{max-width:520px;margin:0 auto;}
.project-content .location,
.project-content .approval{color:var(--muted);}
.project-content .description{margin:14px 0;}
.highlights{
  margin:12px 0 18px;
  padding-left:16px;
}
.highlights li{
  list-style:disc;
  font-size:14px;
  color:var(--muted);
  margin-bottom:6px;
}

/* =====================================================
   KNOWLEDGE
===================================================== */
.knowledge{padding:72px 0;}
.knowledge-glass{
  margin-top:32px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:28px;
}
.glass-card{
  background:var(--glass-bg);
  backdrop-filter:var(--glass-blur);
  border:1px solid var(--glass-border);
  border-radius:24px;
  padding:28px;
}
.glass-card::before{
  content:"";
  width:32px;
  height:3px;
  background:var(--accent);
  border-radius:2px;
  display:block;
  margin-bottom:12px;
}
.glass-card h4{margin-bottom:10px;}
.glass-card p{color:var(--muted);}
.glass-card a{
  display:inline-block;
  margin-top:10px;
  color:var(--accent);
  font-weight:500;
}

/* =====================================================
   TESTIMONIALS
===================================================== */
.testimonials{padding:72px 0;background:var(--soft);}
.testimonial-list{
  margin-top:32px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
}
.testimonial-list article{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  padding:24px;
}
.testimonial-list p{
  font-style:italic;
  color:var(--muted);
  margin-bottom:10px;
}

/* =====================================================
   CONTACT + MAP
===================================================== */
.contact{padding:72px 0;}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
}
.contact-info h3{margin-bottom:12px;}
.contact-info p{color:var(--muted);line-height:1.8;}
.contact-map iframe{
  width:100%;
  height:280px;
  border:0;
  border-radius:16px;
}

/* =====================================================
   CTA
===================================================== */
.cta{
  padding:88px 0;
  background:var(--text);
  color:#fff;
  text-align:center;
}
.cta p{color:#d1d5db;margin:16px 0 24px;}
.cta a{
  background:var(--accent);
  padding:14px 36px;
  border-radius:var(--radius);
}

/* =====================================================
   FOOTER
===================================================== */
footer{
  margin:40px auto 24px;
  max-width:calc(var(--max) + 48px);
  background:var(--soft);
  border:1px solid var(--border);
  border-radius:32px;
}
.footer-inner{
  padding:36px 32px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:32px;
}

/* =====================================================
   WHATSAPP FLOAT
===================================================== */
.whatsapp-float{
  position:fixed;
  bottom:24px;
  right:24px;
  width:56px;
  height:56px;
  background:#25d366;
  color:#fff;
  font-size:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  box-shadow:0 8px 24px rgba(0,0,0,.2);
  z-index:999;
}

/* =====================================================
   MOBILE FIXES (FINAL)
===================================================== */
@media(max-width:768px){

  /* Header */
  .primary-nav,.header-cta{display:none;}
  .menu-toggle{display:block;}

  /* Hero */
  .hero h2{font-size:32px;}
  .hero-actions{flex-direction:column;}

  /* Trust + Proof stack one by one */
  .trust-proof-grid{
    display:flex;
    flex-direction:column;
    gap:40px;
  }
  .trust-block::after{display:none;}

  /* Proof details order lock */
  .proof-row,
  .proof-row.reverse{
    display:flex;
    flex-direction:column;
  }
  .proof-text{order:1;}
  .proof-image{order:2;margin-top:16px;}

  /* Projects order lock */
  .project-row{
    display:flex;
    flex-direction:column;
  }
  .project-image{order:1;}
  .project-content{order:2;margin-top:16px;}

  /* Contact map stack */
  .contact-grid{
    grid-template-columns:1fr;
    text-align:center;
  }
  .contact-map iframe{height:240px;}

  footer{
    margin:32px 16px 24px;
    border-radius:24px;
  }
}
/* =====================================================
   FINAL MOBILE ORDER LOCK (NO MORE JUMPING)
===================================================== */
@media (max-width: 768px) {

  /* RESET all layout tricks */
  .proof-row,
  .proof-row.reverse,
  .project-row {
    display: flex !important;
    flex-direction: column !important;
  }

  /* Remove any direction influence */
  .proof-row *,
  .project-row * {
    direction: ltr !important;
  }

  /* PROOF: always text then image */
  .proof-text {
    order: 1 !important;
  }
  .proof-image {
    order: 2 !important;
    margin-top: 16px;
  }

  /* PROJECTS: always image then content */
  .project-image {
    order: 1 !important;
  }
  .project-content {
    order: 2 !important;
    margin-top: 16px;
  }

  /* Safety: remove even/odd tricks */
  .project-row:nth-child(even) {
    direction: ltr !important;
  }
}
/* =====================================================
   ABOUT PAGE – SPACING SYSTEM
===================================================== */
.about-intro,
.about-split,
.about-approach,
.about-services,
.about-values,
.about-experience,
.about-trust{
  padding:96px 0;
}

.about-services{
  padding:72px 0;
}

/* =====================================================
   ABOUT – INTRO
===================================================== */
.about-intro{
  text-align:center;
}
.about-intro .eyebrow{
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:12px;
  display:inline-block;
}
.about-intro h2{
  font-size:40px;
  line-height:1.25;
  margin-bottom:20px;
}
.about-intro p{
  max-width:760px;
  margin:0 auto;
  font-size:17px;
  color:var(--muted);
}

/* =====================================================
   ABOUT – SPLIT (WHY + EXPERIENCE)
===================================================== */
.about-split,
.about-experience{
  background:#fff;
}

.about-split-grid{
  max-width:980px;
  margin:0 auto;
  display:grid;
  grid-template-columns:360px 1fr;
  gap:72px;
  align-items:stretch;
  position:relative;
}

/* Vertical divider belongs to GRID */
.about-split-grid::after{
  content:"";
  position:absolute;
  left:360px;
  top:0;
  width:1px;
  height:100%;
  background:var(--border);
}

/* LEFT TITLE */
.split-left{
  display:flex;
  align-items:center; /* true vertical centering */
  justify-content:center;
  padding-right:32px;
}

.split-left h3{
  font-size:28px;
  line-height:1.3;
  text-align:center;
  max-width:300px;
}

/* RIGHT CONTENT */
.split-right{
  max-width:620px;
  padding:12px 0;
}

.split-right p{
  margin-bottom:16px;
  color:var(--muted);
  line-height:1.8;
  text-align:left;
}

/* Sticky only when safe */
@media(min-width:1280px){
  .split-left h3{
    position:sticky;
    top:140px;
  }
}

/* =====================================================
   ABOUT – APPROACH
===================================================== */
.about-approach{
  background:var(--soft);
}
.section-title{
  text-align:center;
  font-size:30px;
  margin-bottom:56px;
}
.approach-list{
  max-width:880px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:40px;
}
.approach-item{
  display:grid;
  grid-template-columns:56px 1fr;
  gap:24px;
}
.approach-item .count{
  font-size:13px;
  font-weight:600;
  color:var(--accent);
}
.approach-item h4{
  font-size:18px;
  margin-bottom:6px;
}
.approach-item p{
  color:var(--muted);
  line-height:1.7;
}

/* =====================================================
   ABOUT – SERVICES
===================================================== */
.about-services{
  text-align:center;
}
.about-services h3{
  font-size:28px;
  margin-bottom:24px;
}
.about-services ul{
  max-width:520px;
  margin:0 auto;
}
.about-services li{
  font-size:16px;
  margin-bottom:12px;
  color:var(--muted);
}

/* =====================================================
   ABOUT – VALUES (TIMELINE)
===================================================== */
.about-values{
  background:#fff;
}
.values-timeline{
  max-width:640px;
  margin:0 auto;
  padding-left:40px;
  border-left:2px solid var(--border);
}
.value-point{
  position:relative;
  margin-bottom:32px;
}
.value-point span{
  position:absolute;
  left:-41px;
  top:0.45em;
  width:12px;
  height:12px;
  background:var(--accent);
  border-radius:50%;
}
.value-point p{
  font-size:16px;
  color:var(--muted);
}

/* =====================================================
   ABOUT – TRUST QUOTE
===================================================== */
.about-trust{
  background:var(--soft);
}
.about-trust blockquote{
  max-width:720px;
  margin:0 auto;
  text-align:center;
  font-size:22px;
  font-style:italic;
  line-height:1.5;
  color:var(--text);
}

/* =====================================================
   ABOUT – MOBILE (SINGLE SOURCE OF TRUTH)
===================================================== */
@media(max-width:768px){

  .about-intro h2{
    font-size:30px;
  }

  .about-split-grid{
    grid-template-columns:1fr;
    gap:32px;
  }

  .about-split-grid::after{
    display:none;
  }

  .split-left{
    padding-right:0;
  }

  .split-left h3{
    position:static;
    text-align:center;
    max-width:none;
  }

  .split-right{
    margin:0 auto;
    max-width:680px;
  }

  .split-right p{
    text-align:center;
  }

  .approach-item{
    grid-template-columns:1fr;
    gap:12px;
  }

  .values-timeline{
    padding-left:24px;
  }

  .about-trust blockquote{
    font-size:18px;
  }
}

/* =====================================================
   ABOUT – MOBILE FIXES (FINAL)
===================================================== */
@media (max-width: 768px) {

  /* ---------------------------------------------
     OUR APPROACH – number + title in single line
  --------------------------------------------- */
  .approach-item{
    display:grid;
    grid-template-columns:auto 1fr;
    gap:12px 16px;
    align-items:start;
  }

  .approach-item .count{
    grid-row:1;
    font-size:13px;
  }

  .approach-item h4{
    grid-row:1;
    margin-bottom:4px;
  }

  .approach-item p{
    grid-column:1 / -1;
  }

  /* ---------------------------------------------
     OUR PRINCIPLES – more space from border
  --------------------------------------------- */
  .values-timeline{
    padding-left:36px;
  }

  .value-point span{
    left:-28px;
  }
}
/* =====================================================
   ABOUT – FOUNDER SECTION
===================================================== */
.about-founder{
  padding:96px 0;
  background:var(--soft);
}

.about-founder .about-split-grid{
  max-width:980px;
  margin:0 auto;
  display:grid;
  grid-template-columns:360px 1fr;
  gap:72px;
  align-items:center;
}

/* Founder Image */
.about-founder img{
  width:100%;
  max-width:320px;
  margin:0 auto;
  display:block;
  border-radius:20px;
  box-shadow:0 16px 40px rgba(0,0,0,.08);
}

/* Founder Content */
.about-founder .split-right h3{
  font-size:28px;
  margin-bottom:16px;
}

.about-founder .split-right p{
  color:var(--muted);
  line-height:1.8;
  margin-bottom:14px;
}

/* =====================================================
   ABOUT – INTERNAL WORKING MODEL (REFINE)
===================================================== */
.about-services{
  background:#fff;
}

.about-services ul{
  margin-top:24px;
}

.about-services li{
  position:relative;
  padding-left:22px;
}

.about-services li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--accent);
  font-weight:600;
}

/* =====================================================
   ABOUT – EXPERIENCE REFINEMENT
===================================================== */
.about-experience{
  background:var(--soft);
}

/* =====================================================
   ABOUT – SECTION BREATHING SPACE
===================================================== */
.about-founder,
.about-services,
.about-experience{
  scroll-margin-top:120px;
}

/* =====================================================
   ABOUT – MOBILE OPTIMIZATION
===================================================== */
@media(max-width:768px){

  /* Founder layout stack */
  .about-founder .about-split-grid{
    grid-template-columns:1fr;
    gap:32px;
    text-align:center;
  }

  .about-founder img{
    max-width:240px;
  }

  .about-founder .split-right h3{
    font-size:24px;
  }

  .about-founder .split-right p{
    text-align:center;
  }

  /* Internal model list spacing */
  .about-services li{
    padding-left:20px;
  }
}

/* =====================================================
   LEGAL PAGE – HERO
===================================================== */
.legal-hero{
  padding:96px 0 72px;
  background:#fff;
  text-align:center;
}
.legal-hero .eyebrow{
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:12px;
  display:inline-block;
}
.legal-hero h2{
  font-size:40px;
  line-height:1.25;
  margin-bottom:16px;
}
.legal-hero p{
  max-width:720px;
  margin:0 auto;
  color:var(--muted);
  font-size:17px;
}

/* =====================================================
   LEGAL – PROCESS STEPS
===================================================== */
.legal-process{
  padding:88px 0;
  background:var(--soft);
}

.legal-process .section-title{
  text-align:center;
  font-size:30px;
  margin-bottom:56px;
}

.legal-steps{
  max-width:980px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:32px;
}

.legal-step{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  padding:32px;
  position:relative;
}

.legal-step .step-no{
  font-size:12px;
  font-weight:600;
  color:var(--accent);
  letter-spacing:1px;
  display:block;
  margin-bottom:12px;
}

.legal-step h4{
  font-size:18px;
  margin-bottom:10px;
}

.legal-step p{
  font-size:15px;
  line-height:1.7;
  color:var(--muted);
}

/* =====================================================
   LEGAL – DOCUMENT CHECKLIST
===================================================== */
.legal-checklist{
  padding:88px 0;
  background:#fff;
  text-align:center;
}

.legal-checklist h3{
  font-size:28px;
  margin-bottom:32px;
}

.checklist{
  max-width:520px;
  margin:0 auto;
  text-align:left;
}

.checklist li{
  position:relative;
  padding-left:28px;
  margin-bottom:14px;
  font-size:16px;
  color:var(--text);
}

.checklist li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:0;
  color:var(--accent);
  font-weight:600;
}

/* =====================================================
   LEGAL – CLARITY CARDS
===================================================== */
.legal-clarity{
  padding:88px 0;
  background:var(--soft);
}

.legal-clarity .container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:32px;
}

.clarity-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  padding:32px;
}

.clarity-card h4{
  font-size:18px;
  margin-bottom:10px;
}

.clarity-card p{
  color:var(--muted);
  line-height:1.7;
}

/* =====================================================
   LEGAL – DISCLAIMER NOTE
===================================================== */
.legal-note{
  padding:56px 0;
  background:#fff;
}

.legal-note p{
  max-width:720px;
  margin:0 auto;
  text-align:center;
  font-size:14px;
  color:var(--muted);
  line-height:1.8;
}

/* =====================================================
   LEGAL – MOBILE REFINEMENT
===================================================== */
@media(max-width:768px){

  .legal-hero h2{
    font-size:30px;
  }

  .legal-process{
    padding:72px 0;
  }

  .legal-checklist{
    padding:72px 0;
  }

  .legal-clarity{
    padding:72px 0;
  }

  .legal-step{
    padding:24px;
  }

  .clarity-card{
    padding:24px;
  }
}

/* =====================================================
   PRODUCTS – HERO
===================================================== */
.products-hero{
  padding:96px 0 72px;
  text-align:center;
  background:#fff;
}
.products-hero .eyebrow{
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:12px;
  display:inline-block;
}
.products-hero h2{
  font-size:40px;
  line-height:1.25;
  margin-bottom:18px;
}
.products-hero p{
  max-width:760px;
  margin:0 auto;
  font-size:17px;
  color:var(--muted);
}

/* =====================================================
   PRODUCTS – TRUST NOTE
===================================================== */
.products-trust{
  padding:48px 0;
  background:var(--soft);
}
.products-trust p{
  max-width:720px;
  margin:0 auto;
  text-align:center;
  font-size:15px;
  color:var(--muted);
  line-height:1.7;
}

/* =====================================================
   PRODUCTS – LIST
===================================================== */
.products-list{
  padding:96px 0;
  background:#fff;
}

/* =====================================================
   PRODUCT CARD
===================================================== */
.product-card{
  max-width:980px;
  margin:0 auto 64px;
  padding:40px;
  border:1px solid var(--border);
  border-radius:28px;
  background:#fff;
}

/* Header */
.product-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:8px;
}
.product-header h3{
  font-size:26px;
}

/* Status tags */
.status{
  font-size:12px;
  padding:6px 14px;
  border-radius:999px;
  font-weight:500;
}
.status.verified{
  background:rgba(107,127,43,.12);
  color:var(--accent);
}
.status.partial{
  background:rgba(234,179,8,.15);
  color:#a16207;
}

/* Location */
.product-location{
  font-size:14px;
  color:var(--muted);
  margin-bottom:18px;
}

/* Meta info */
.product-meta{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:8px 24px;
  margin-bottom:18px;
}
.product-meta p{
  font-size:14px;
  color:var(--muted);
}

/* Description */
.product-description{
  margin-bottom:18px;
  font-size:15px;
  line-height:1.7;
  color:var(--text);
}

/* Highlights */
.product-highlights{
  padding-left:18px;
  margin-bottom:20px;
}
.product-highlights li{
  list-style:disc;
  font-size:14px;
  color:var(--muted);
  margin-bottom:6px;
}

/* Documents */
.product-docs{
  background:var(--soft);
  padding:20px;
  border-radius:16px;
  margin-bottom:20px;
}
.product-docs strong{
  display:block;
  margin-bottom:8px;
}
.product-docs ul{
  padding-left:18px;
}
.product-docs li{
  list-style:disc;
  font-size:14px;
  color:var(--muted);
  margin-bottom:4px;
}

/* Actions */
.product-actions{
  display:flex;
  gap:16px;
  margin-bottom:16px;
}
.product-actions a{
  padding:10px 22px;
  border-radius:999px;
  font-size:14px;
  background:var(--accent);
  color:#fff;
}
.product-actions a:last-child{
  background:none;
  border:1px solid var(--accent);
  color:var(--accent);
}

/* Buyer note */
.product-note{
  font-size:13px;
  color:var(--muted);
  line-height:1.6;
  border-top:1px solid var(--border);
  padding-top:14px;
}

/* =====================================================
   PRODUCTS – FOOT NOTE
===================================================== */
.products-note{
  padding:56px 0;
  background:var(--soft);
}
.products-note p{
  max-width:720px;
  margin:0 auto;
  text-align:center;
  font-size:15px;
  color:var(--muted);
}

/* =====================================================
   PRODUCTS – MOBILE
===================================================== */
@media(max-width:768px){

  .products-hero h2{
    font-size:30px;
  }

  .products-list{
    padding:72px 0;
  }

  .product-card{
    padding:28px;
  }

  .product-header{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .product-actions{
    flex-direction:column;
    gap:12px;
  }

  .product-actions a{
    text-align:center;
  }
}
/* =====================================================
   KNOWLEDGE – HERO
===================================================== */
.knowledge-hero{
  padding:96px 0 72px;
  text-align:center;
  background:#fff;
}
.knowledge-hero .eyebrow{
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:12px;
  display:inline-block;
}
.knowledge-hero h2{
  font-size:40px;
  line-height:1.25;
  margin-bottom:18px;
}
.knowledge-hero p{
  max-width:760px;
  margin:0 auto;
  font-size:17px;
  color:var(--muted);
}

/* =====================================================
   KNOWLEDGE – WHY SECTION
===================================================== */
.knowledge-why{
  padding:72px 0;
  background:var(--soft);
}
.knowledge-why h3{
  font-size:28px;
  margin-bottom:16px;
  text-align:center;
}
.knowledge-why p{
  max-width:720px;
  margin:0 auto 14px;
  text-align:center;
  color:var(--muted);
  line-height:1.8;
}

/* =====================================================
   KNOWLEDGE – CORE TOPICS
===================================================== */
.knowledge-topics{
  padding:96px 0;
  background:#fff;
}
.knowledge-topics h3{
  text-align:center;
  font-size:30px;
  margin-bottom:56px;
}
.topics-grid{
  max-width:1080px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:32px;
}
.topic-card{
  border:1px solid var(--border);
  border-radius:24px;
  padding:32px;
  background:#fff;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.topic-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}
.topic-card h4{
  font-size:18px;
  margin-bottom:10px;
}
.topic-card p{
  font-size:15px;
  line-height:1.7;
  color:var(--muted);
  margin-bottom:14px;
}
.topic-card a{
  font-size:14px;
  color:var(--accent);
  font-weight:500;
}

/* =====================================================
   KNOWLEDGE – DEEP DIVE
===================================================== */
.knowledge-deep{
  padding:88px 0;
  background:var(--soft);
}
.knowledge-deep h3{
  font-size:28px;
  margin-bottom:20px;
  text-align:center;
}
.knowledge-deep p{
  max-width:720px;
  margin:0 auto 14px;
  text-align:center;
  color:var(--muted);
  line-height:1.8;
}

/* =====================================================
   KNOWLEDGE – COMMON MISTAKES
===================================================== */
.knowledge-mistakes{
  padding:88px 0;
  background:#fff;
}
.knowledge-mistakes h3{
  font-size:28px;
  margin-bottom:24px;
  text-align:center;
}
.knowledge-mistakes ul{
  max-width:520px;
  margin:0 auto;
}
.knowledge-mistakes li{
  font-size:15px;
  color:var(--muted);
  margin-bottom:12px;
  padding-left:22px;
  position:relative;
}
.knowledge-mistakes li::before{
  content:"–";
  position:absolute;
  left:0;
  color:var(--accent);
}

/* =====================================================
   KNOWLEDGE – CHECKLIST
===================================================== */
.knowledge-checklist{
  padding:88px 0;
  background:var(--soft);
}
.knowledge-checklist h3{
  font-size:28px;
  margin-bottom:24px;
  text-align:center;
}
.knowledge-checklist ul{
  max-width:520px;
  margin:0 auto;
}
.knowledge-checklist li{
  font-size:15px;
  margin-bottom:12px;
  padding-left:26px;
  position:relative;
}
.knowledge-checklist li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:var(--accent);
  font-weight:600;
}

/* =====================================================
   KNOWLEDGE – MOBILE OPTIMIZATION
===================================================== */
@media(max-width:768px){

  .knowledge-hero h2{
    font-size:30px;
  }

  .knowledge-topics{
    padding:72px 0;
  }

  .knowledge-deep,
  .knowledge-mistakes,
  .knowledge-checklist{
    padding:72px 0;
  }

  .topic-card{
    padding:24px;
  }
}

/* =====================================================
   CONTACT – HERO
===================================================== */
.contact-hero{
  padding:96px 0 72px;
  text-align:center;
  background:#fff;
}
.contact-hero .eyebrow{
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:12px;
  display:inline-block;
}
.contact-hero h2{
  font-size:40px;
  line-height:1.25;
  margin-bottom:16px;
}
.contact-hero p{
  max-width:720px;
  margin:0 auto;
  font-size:17px;
  color:var(--muted);
}

/* =====================================================
   CONTACT – OPTIONS
===================================================== */
.contact-options{
  padding:88px 0;
  background:var(--soft);
}
.contact-options .container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:32px;
}
.contact-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:32px;
}
.contact-card h3{
  font-size:20px;
  margin-bottom:10px;
}
.contact-card p{
  font-size:15px;
  color:var(--muted);
  line-height:1.7;
}

/* =====================================================
   CONTACT – FORM
===================================================== */
.contact-form-section{
  padding:96px 0;
  background:#fff;
  text-align:center;
}
.contact-form-section h3{
  font-size:28px;
  margin-bottom:12px;
}
.contact-form-section p{
  max-width:520px;
  margin:0 auto 32px;
  color:var(--muted);
}

/* Form */
.contact-form{
  max-width:520px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:18px;
  text-align:left;
}
.contact-form label{
  font-size:14px;
  color:var(--text);
  display:flex;
  flex-direction:column;
  gap:6px;
}
.contact-form input,
.contact-form textarea{
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:12px;
  font-size:14px;
  font-family:inherit;
}
.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:var(--accent);
}
.contact-form button{
  margin-top:12px;
  padding:14px;
  border:none;
  border-radius:999px;
  background:var(--accent);
  color:#fff;
  font-size:15px;
  cursor:pointer;
}
.contact-form button:hover{
  opacity:.9;
}

.contact-note{
  margin-top:18px;
  font-size:13px;
  color:var(--muted);
}

/* =====================================================
   CONTACT – MAP
===================================================== */
.contact-map{
  padding:0 0 96px;
}
.contact-map iframe{
  width:100%;
  height:320px;
  border:0;
  border-radius:24px;
}

/* =====================================================
   CONTACT – MOBILE
===================================================== */
@media(max-width:768px){

  .contact-hero h2{
    font-size:30px;
  }

  .contact-options{
    padding:72px 0;
  }

  .contact-form-section{
    padding:72px 0;
  }

  .contact-map iframe{
    height:260px;
    border-radius:16px;
  }
}
