:root {
  --green: #1f9b41;
  --green-dark: #15702f;
  --green-darker: #0e2916;
  --gold: #f2c200;
  --ink: #16211b;
  --cream: #faf9f5;
  --tan: #f4f0e7;
  --muted: #5c6a60;
  --border: rgba(22, 33, 27, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--green); text-decoration: none; transition: color .18s ease, background .18s ease, border-color .18s ease; }
h1, h2, h3 { font-family: 'Archivo', sans-serif; margin: 0; color: var(--ink); }
p { margin: 0; }
img { max-width: 100%; display: block; }
::selection { background: var(--green); color: #fff; }

.section { max-width: 1220px; margin: 0 auto; padding: 92px 24px; }

.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 12.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--green); }
.eyebrow--light { color: #bfe9c9; }
.eyebrow--center { justify-content: center; }
.eyebrow-bar { width: 28px; height: 3px; background: var(--green); flex-shrink: 0; }
.eyebrow-bar--gold { background: var(--gold); }

.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 28px; border-radius: 6px; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 15px; white-space: nowrap; }
.btn-lg { padding: 17px 30px; font-size: 16px; }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); color: #fff; }
.btn-outline { color: #fff; border: 1px solid rgba(255,255,255,.3); }
.btn-outline:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-white { background: #fff; color: var(--green-dark); }
.btn-white:hover { background: var(--gold); color: var(--ink); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--green); color: #fff; }

.ph-label { font-family: ui-monospace, monospace; font-size: 11px; color: var(--muted); background: #fff; padding: 6px 10px; border-radius: 6px; }

/* Topbar */
.topbar { background: var(--green-dark); color: #dbeee0; }
.topbar-inner { max-width: 1220px; margin: 0 auto; padding: 9px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 13px; }
.topbar-address { opacity: .9; }
.topbar-links { display: flex; align-items: center; gap: 18px; }
.topbar-links a { color: #dbeee0; }
.topbar-links a:hover { color: var(--gold); }
.topbar-phone { color: #fff !important; font-weight: 700; }
.topbar-sep { opacity: .4; }

/* Header */
.header { position: sticky; top: 0; z-index: 50; background: rgba(250,249,245,.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.header-inner { max-width: 1220px; margin: 0 auto; padding: 15px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand-icon { height: 42px; width: auto; flex-shrink: 0; }
.brand-text { line-height: 1; }
.brand-name { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 19px; letter-spacing: .01em; color: var(--ink); }
.brand-sub { font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase; color: #7c8a80; margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a:not(.btn) { color: #38473d; font-weight: 600; font-size: 14.5px; }
.nav a:not(.btn):hover { color: var(--green-dark); }

.nav-item { position: relative; }
.nav-item .nav-link { display: inline-flex; align-items: center; gap: 6px; }
.caret { font-size: 16px; line-height: 1; transition: transform .18s ease; }
.has-dropdown:hover .caret, .has-dropdown:focus-within .caret { transform: rotate(180deg); }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -14px;
  /* no margin-top here: the box must start flush against the trigger,
     otherwise the empty gap breaks :hover before the cursor reaches the panel */
  padding-top: 14px;
  z-index: 60;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }
.dropdown-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 16px 32px rgba(22,33,27,.14);
  min-width: 220px;
  padding: 8px;
}
.dropdown-panel a { display: block; padding: 10px 14px; border-radius: 6px; font-size: 14px !important; font-weight: 600; color: #38473d; }
.dropdown-panel a:hover { background: var(--tan); color: var(--green-dark); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; padding: 6px 24px 18px; flex-direction: column; gap: 2px; border-top: 1px solid rgba(22,33,27,.06); }
.mobile-nav.is-open { display: flex; }
.mobile-nav a:not(.mobile-cta) { padding: 12px 4px; color: #38473d; font-weight: 600; border-bottom: 1px solid rgba(22,33,27,.06); }
.mobile-cta { margin-top: 10px; justify-content: center; }
.mobile-submenu { display: flex; flex-direction: column; }
.mobile-submenu a { padding: 10px 4px 10px 20px !important; font-weight: 500 !important; font-size: 13.5px; color: #5c6a60 !important; border-bottom: 1px solid rgba(22,33,27,.06); }

/* Hero */
.hero { position: relative; min-height: 82vh; display: flex; align-items: flex-end; background: #0e1a12; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,26,18,.45) 0%, rgba(14,26,18,.5) 40%, rgba(14,26,18,.93) 100%); }
.hero-inner { position: relative; max-width: 1220px; width: 100%; margin: 0 auto; padding: 0 24px 76px; }
.hero-title { font-weight: 600; color: #fff; font-size: clamp(38px, 6.4vw, 88px); line-height: .96; letter-spacing: -.015em; max-width: 900px; text-wrap: balance; }
.hero-text { font-size: 19px; line-height: 1.55; color: #c9d6cd; max-width: 560px; margin: 26px 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }

/* Section heads */
.section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 44px; }
.section-head-main { max-width: 640px; }
.section-head-simple { margin-bottom: 44px; }
.section-title { font-weight: 600; font-size: clamp(30px, 4vw, 46px); line-height: 1.02; letter-spacing: -.01em; }
.section-lede { font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 330px; }

/* Services */
/* flex (not grid) so an incomplete last row centers instead of orphaning left */
.services-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.services-grid .service-card { flex: 0 1 calc((100% - 40px) / 3); }
.service-card { display: block; color: inherit; }
.service-card:hover { color: var(--green-dark); }
.service-thumb { aspect-ratio: 4/5; border-radius: 8px; overflow: hidden; background: repeating-linear-gradient(125deg, #e6ebe4, #e6ebe4 13px, #dbe2d9 13px, #dbe2d9 26px); border: 1px solid var(--border); position: relative; }
.service-thumb img { width: 100%; height: 100%; object-fit: cover; }
.service-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-top: 16px; }
.service-row h3 { font-weight: 700; font-size: 23px; }
.service-cta { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14px; color: var(--green); white-space: nowrap; }
.service-desc { font-size: 15px; line-height: 1.55; color: var(--muted); margin-top: 8px; }

/* Feature banner */
.feature-banner { background: var(--green-dark); margin-top: 76px; }
.feature-banner-inner { max-width: 1220px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; }
.feature-banner-text { padding: 80px 56px 80px 24px; color: #fff; }
.feature-banner-title { font-weight: 600; color: #fff; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.02; margin-bottom: 20px; }
.feature-banner-text p { font-size: 16.5px; line-height: 1.65; color: #d8ecdd; margin-bottom: 16px; }
.feature-banner-text .btn { margin-top: 16px; }
.feature-banner-photo { min-height: 420px; background-size: cover; background-position: center; }

/* CTA banner */
.cta-banner { border: 1px solid var(--border); border-radius: 10px; background: var(--tan); padding: 40px 44px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.cta-banner h3 { font-weight: 600; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.05; margin-bottom: 8px; }
.cta-banner p { font-size: 16px; color: var(--muted); max-width: 520px; }

/* Portfolio gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.gallery-item { border-radius: 8px; overflow: hidden; background: repeating-linear-gradient(125deg, #e6ebe4, #e6ebe4 12px, #dbe2d9 12px, #dbe2d9 24px); border: 1px solid rgba(22,33,27,.07); position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* Steps */
.steps-section { background: var(--ink); }
.steps-inner { max-width: 1220px; margin: 0 auto; padding: 84px 24px; }
.steps-head { margin-bottom: 48px; }
.steps-title { font-weight: 600; color: #fff; font-size: clamp(28px, 3.6vw, 42px); line-height: 1; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step { padding: 26px 24px 26px 0; border-top: 1px solid rgba(255,255,255,.16); }
.step-num { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 40px; color: var(--green); line-height: 1; margin-bottom: 16px; }
.step h3 { font-weight: 700; font-size: 19px; color: #fff; margin-bottom: 8px; }
.step p { font-size: 14.5px; line-height: 1.55; color: #a9b8ae; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.stars { color: #c9a227; font-size: 13px; letter-spacing: 2px; }
.testimonial p { font-size: 16px; line-height: 1.6; color: #37453d; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid rgba(22,33,27,.08); }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: #eaf5ec; color: var(--green); display: flex; align-items: center; justify-content: center; font-family: 'Archivo', sans-serif; font-weight: 800; }
.author-name { font-weight: 700; font-size: 15px; line-height: 1.2; }
.author-role { font-size: 13px; color: #7c8a80; }

/* About */
.about { background: var(--tan); }
.about-inner { max-width: 720px; margin: 0 auto; padding: 88px 24px; text-align: center; }
.about-inner .eyebrow { justify-content: center; }
.about-title { font-weight: 600; font-size: clamp(26px, 3.4vw, 40px); line-height: 1.02; margin-bottom: 22px; }
.about p { font-size: 16.5px; line-height: 1.65; color: #4d5b51; margin-bottom: 16px; text-align: left; }
.about .btn { margin-top: 14px; }

/* Areas */
.areas-head { text-align: center; max-width: 660px; margin: 0 auto 36px; }
.areas-head .section-lede { max-width: none; }
.areas-head .section-title { margin-bottom: 12px; }
.areas-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-chip { background: #fff; border: 1px solid rgba(22,33,27,.12); border-radius: 999px; padding: 10px 20px; font-weight: 600; font-size: 14.5px; color: #37453d; }

/* FAQ */
.faq-section { background: var(--tan); }
.faq-inner { max-width: 840px; margin: 0 auto; padding: 88px 24px; }
.faq-head { text-align: center; margin-bottom: 44px; }
.faq-item { border-top: 1px solid rgba(22,33,27,.14); }
.faq-question { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 4px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 18px; color: var(--ink); }
.faq-icon { color: var(--green); font-size: 24px; transition: transform .2s ease; line-height: 1; flex-shrink: 0; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 4px 22px; font-size: 16px; line-height: 1.65; color: var(--muted); display: none; }
.faq-question[aria-expanded="true"] + .faq-answer { display: block; }

/* Contact */
.contact { background: var(--green-dark); color: #fff; }
.contact-inner { max-width: 1220px; margin: 0 auto; padding: 88px 24px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.contact-title { font-weight: 600; color: #fff; font-size: clamp(30px, 4vw, 50px); line-height: 1; margin-bottom: 20px; }
.contact-text p { font-size: 18px; line-height: 1.6; color: #d8ecdd; margin-bottom: 32px; max-width: 460px; }
.contact-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 12px; padding: 30px; display: flex; flex-direction: column; gap: 22px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { width: 42px; height: 42px; border-radius: 9px; background: rgba(255,255,255,.14); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-label { font-size: 13px; color: #bfe9c9; margin-bottom: 2px; }
.contact-value { font-size: 15px; font-weight: 600; color: #fff; word-break: break-all; }
.contact-value--link { font-size: 17px; color: #fff; word-break: normal; }
.contact-value--link:hover { color: var(--gold); }
.contact-social { display: flex; gap: 12px; padding-top: 4px; }
.contact-social a { flex: 1; text-align: center; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 8px; padding: 12px; font-weight: 700; font-size: 14px; color: #fff; }
.contact-social a:hover { background: rgba(255,255,255,.2); color: #fff; }

/* Footer */
.footer { background: var(--green-darker); color: #8fa896; }
.footer-inner { max-width: 1220px; margin: 0 auto; padding: 38px 24px; display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-icon { height: 34px; width: auto; flex-shrink: 0; background: #fff; border-radius: 8px; padding: 3px 6px; }
.footer-name { font-family: 'Archivo', sans-serif; font-weight: 800; color: #fff; font-size: 16px; }
.footer-copy { font-size: 14px; }
.footer-credit { color: #8fa896; font-size: 13px; }
.footer-credit:hover { color: var(--gold); }

/* Product pages */
.breadcrumb { max-width: 1220px; margin: 0 auto; padding: 20px 24px 0; font-size: 13px; color: #7c8a80; }
.breadcrumb a { color: #7c8a80; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb-sep { margin: 0 8px; opacity: .5; }
.breadcrumb-current { color: var(--ink); font-weight: 600; }

.photo-ph { display: flex; align-items: flex-end; padding: 14px; background: repeating-linear-gradient(125deg, #e6ebe4, #e6ebe4 13px, #dbe2d9 13px, #dbe2d9 26px); }

.product-hero { max-width: 1220px; margin: 0 auto; padding: 34px 24px 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.product-hero-text h1 { font-weight: 600; font-size: clamp(36px, 4.6vw, 58px); line-height: 1.02; letter-spacing: -.01em; margin-bottom: 22px; }
.product-hero-text p { font-size: 19px; line-height: 1.6; color: #4d5b51; max-width: 520px; margin-bottom: 32px; }
.product-hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.btn-secondary { color: var(--ink); padding: 16px 26px; border-radius: 6px; border: 1px solid rgba(22,33,27,.2); background: #fff; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 16px; }
.btn-secondary:hover { border-color: var(--green); color: var(--green); }
.product-photo { aspect-ratio: 5/6; border-radius: 10px; overflow: hidden; border: 1px solid rgba(22,33,27,.09); position: relative; }
.product-photo img { width: 100%; height: 100%; object-fit: cover; }

.intro-quote { max-width: 900px; margin: 0 auto; padding: 60px 24px 20px; }
.intro-quote p { font-family: 'Archivo', sans-serif; font-weight: 500; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.4; color: #28362c; }

.benefits-section { max-width: 1220px; margin: 0 auto; padding: 56px 24px; }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.benefit { padding: 26px 24px 26px 0; border-top: 1px solid rgba(22,33,27,.16); }
.benefit-num { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 34px; color: var(--green); line-height: 1; margin-bottom: 16px; }
.benefit h3 { font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.benefit p { font-size: 14.5px; line-height: 1.55; color: var(--muted); }

.models-section { background: var(--tan); }
.models-inner { max-width: 1220px; margin: 0 auto; padding: 80px 24px; }
.models-head { max-width: 640px; margin-bottom: 44px; }
.models-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.model-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.model-photo { aspect-ratio: 4/3; background: repeating-linear-gradient(125deg, #e6ebe4, #e6ebe4 12px, #dbe2d9 12px, #dbe2d9 24px); position: relative; }
.model-photo img { width: 100%; height: 100%; object-fit: cover; }
.model-body { padding: 22px; }
.model-body h3 { font-weight: 700; font-size: 19px; margin-bottom: 8px; }
.model-body p { font-size: 14.5px; line-height: 1.55; color: var(--muted); }

.apps-section { max-width: 1220px; margin: 0 auto; padding: 80px 24px 40px; }
.apps-head { max-width: 640px; margin-bottom: 30px; }
.apps-tags { display: flex; flex-wrap: wrap; gap: 10px; }

.product-gallery-section { max-width: 1220px; margin: 0 auto; padding: 40px 24px 80px; }

.video-section { background: var(--tan); }
.video-inner { max-width: 1220px; margin: 0 auto; padding: 80px 24px; display: flex; flex-direction: column; align-items: center; }
.video-head { max-width: 640px; text-align: center; margin-bottom: 36px; }
.product-video { width: 100%; max-width: 420px; border-radius: 12px; box-shadow: 0 20px 40px rgba(22,33,27,.15); display: block; background: #000; }

.split-cta { background: var(--green-dark); color: #fff; }
.split-cta-inner { max-width: 1220px; margin: 0 auto; padding: 72px 24px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.split-cta h2 { font-weight: 600; color: #fff; font-size: clamp(28px, 3.6vw, 42px); line-height: 1.05; margin-bottom: 12px; }
.split-cta p { font-size: 17px; color: #d8ecdd; max-width: 520px; }

.others-section { max-width: 1220px; margin: 0 auto; padding: 80px 24px; }
.others-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.other-card { display: block; color: inherit; }
.other-card:hover { color: var(--green-dark); }
.other-photo { aspect-ratio: 16/10; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); position: relative; }
.other-photo img { width: 100%; height: 100%; object-fit: cover; }
.other-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 14px; }
.other-row h3 { font-weight: 700; font-size: 20px; }
.other-cta { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14px; color: var(--green); white-space: nowrap; }

/* WhatsApp float */
.whatsapp-float { position: fixed; bottom: 26px; right: 26px; z-index: 60; width: 60px; height: 60px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(37,211,102,.5); color: #fff; }
.whatsapp-float:hover { background: #1fbe5b; color: #fff; }

/* Responsive */
@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
  .services-grid .service-card { flex-basis: calc((100% - 20px) / 2); }
  .feature-banner-inner { grid-template-columns: 1fr; }
  .feature-banner-text { padding: 56px 24px; }
  .feature-banner-photo { min-height: 260px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 0 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .product-hero { grid-template-columns: 1fr; }
  .product-photo { max-width: 460px; margin: 0 auto; order: -1; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 0 24px; }
  .models-grid { grid-template-columns: 1fr; }
  .others-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .topbar-address { display: none; }
  .services-grid .service-card { flex-basis: 100%; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .steps-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .split-cta-inner { flex-direction: column; align-items: flex-start; }
}
