/* ============================================================
   SURBIT — Stylesheet
   Color principal: #33CB98
   Fuente: Inter (Google Fonts)
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green:        #33CB98;
  --green-dark:   #28A87E;
  --green-light:  #E8FBF4;
  --navy:         #0F0F23;
  --navy-mid:     #1A1A38;
  --text:         #1A1A2E;
  --text-mid:     #4B5563;
  --text-light:   #9CA3AF;
  --white:        #FFFFFF;
  --bg-alt:       #F7FFFE;
  --border:       #E5E7EB;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius:    14px;
  --radius-sm: 8px;
  --shadow:    0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; }

/* ── UTILITIES ───────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(51,203,152,0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

/* Tag / badge */
.tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.tag-dark {
  background: rgba(51,203,152,0.15);
  color: var(--green);
}

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .tag { margin-bottom: 16px; }
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  line-height: 1.15;
}
.section-header p {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,0.6); }

/* Check list */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.5;
}
.check-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='9' fill='%2333CB98'/%3E%3Cpath d='M5 9l3 3 5-6' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}
.check-list.light li { color: rgba(255,255,255,0.7); }


/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15,15,35,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo img {
  height: 78px;
  width: auto;
  clip-path: inset(0 0 7% 0);
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile nav dropdown */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 99;
  padding: 16px 28px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--green); }
.mobile-nav a:last-child { border-bottom: none; }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy);
  padding: 150px 0 96px;
  position: relative;
  overflow: hidden;
}

/* Radial glow decorations */
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(51,203,152,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(51,203,152,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow { margin-bottom: 20px; }

.hero h1 {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--green);
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero right — product mini-cards */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 22px;
  transition: all var(--transition);
  cursor: default;
}
.hero-card:hover {
  background: rgba(51,203,152,0.08);
  border-color: rgba(51,203,152,0.25);
  transform: translateY(-3px);
}
.hero-card-ico {
  width: 38px; height: 38px;
  background: rgba(51,203,152,0.14);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.hero-card-ico svg {
  width: 18px; height: 18px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-card h3 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.hero-card p {
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  line-height: 1.45;
}


/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
  background: var(--green);
  padding: 44px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-item {
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,0.28);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}


/* ============================================================
   PRODUCTS
   ============================================================ */
.products { padding: 96px 0; background: var(--white); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 38px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.product-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.product-card:hover {
  border-color: rgba(51,203,152,0.4);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.product-card:hover::after { transform: scaleX(1); }

/* Featured card (Delysoft) */
.product-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}
.product-card.featured::after { transform: scaleX(1); }

.product-label {
  display: inline-block;
  padding: 3px 10px;
  background: var(--green);
  color: var(--white);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.product-ico {
  width: 54px; height: 54px;
  background: var(--green-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.product-card.featured .product-ico { background: rgba(51,203,152,0.14); }
.product-ico svg {
  width: 26px; height: 26px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-card h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
  color: var(--text);
}
.product-card.featured h3 { color: var(--white); }

.product-card > p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 22px;
  flex: 1;
}
.product-card.featured > p { color: rgba(255,255,255,0.6); }

.product-card .check-list { margin-bottom: 28px; }

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  transition: gap var(--transition);
}
.product-cta:hover { gap: 10px; }
.product-cta svg {
  width: 16px; height: 16px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* "Próximamente" band */
.coming-soon-band {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(51,203,152,0.1);
  border: 1px solid rgba(51,203,152,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-top: 16px;
}
.coming-soon-band svg {
  width: 16px; height: 16px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.coming-soon-band span {
  font-size: 13px;
  color: var(--green-dark);
  font-weight: 600;
}


/* ============================================================
   WHY SURBIT
   ============================================================ */
.why {
  padding: 96px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  top: 50%; right: -100px;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(51,203,152,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.why-item {
  padding: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.why-item:hover {
  background: rgba(51,203,152,0.06);
  border-color: rgba(51,203,152,0.18);
  transform: translateY(-3px);
}

.why-ico {
  width: 50px; height: 50px;
  background: rgba(51,203,152,0.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.why-ico svg {
  width: 22px; height: 22px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-item h3 {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-item p {
  color: rgba(255,255,255,0.52);
  font-size: 14px;
  line-height: 1.75;
}


/* ============================================================
   CLIENTS
   ============================================================ */
.clients {
  padding: 96px 0;
  background: var(--bg-alt);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  min-height: 90px;
}
.client-logo:hover {
  border-color: rgba(51,203,152,0.4);
  box-shadow: var(--shadow);
}
.client-logo img {
  max-height: 52px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(40%) opacity(0.85);
  transition: filter var(--transition);
}
.client-logo:hover img { filter: grayscale(0%) opacity(1); }


/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 96px 0; background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* Left: info */
.contact-info > h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.contact-info > p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 38px;
}

.contact-items { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }

.contact-item { display: flex; gap: 14px; align-items: flex-start; }

.ci-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.ci-icon svg {
  width: 20px; height: 20px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ci-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.ci-text span,
.ci-text a {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}
.ci-text a:hover { color: var(--green); }

.meeting-card {
  background: rgba(51,203,152,0.06);
  border: 1px solid rgba(51,203,152,0.2);
  border-radius: var(--radius);
  padding: 18px 20px;
  max-width: 440px;
}

.meeting-card p {
  margin: 0 0 16px;
  color: var(--text);
  line-height: 1.65;
  font-size: 14px;
}

.meeting-card small {
  display: block;
  margin-top: 12px;
  color: var(--text-light);
  font-size: 12px;
}

/* Hours box */
.hours-box {
  background: var(--green-light);
  border: 1px solid rgba(51,203,152,0.2);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.hours-box h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr td {
  font-size: 13px;
  color: var(--text-mid);
  padding: 5px 0;
}
.hours-table tr td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--text);
}

/* Right: form */
.contact-form {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(51,203,152,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 6px; }


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo img {
  height: 46px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.footer-brand > p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 260px;
}

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  color: rgba(255,255,255,0.55);
}
.social-link:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}
.social-link svg { width: 17px; height: 17px; fill: currentColor; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--green); }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }


/* ============================================================
   INNER PAGE: HERO (product pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(51,203,152,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow { margin-bottom: 16px; }

.page-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 18px;
}
.page-hero h1 em { font-style: normal; color: var(--green); }

.page-hero .sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 32px;
}

.page-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Screenshot / mockup placeholder */
.page-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero-img img { width: 100%; height: auto; display: block; }

.page-hero-img .img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 48px;
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 14px;
}
.page-hero-img .img-placeholder svg {
  width: 48px; height: 48px;
  stroke: rgba(51,203,152,0.4);
  fill: none;
  stroke-width: 1.5;
}


/* ============================================================
   FEATURES SECTION (product pages)
   ============================================================ */
.features { padding: 88px 0; background: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: rgba(51,203,152,0.35);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.feature-ico {
  width: 48px; height: 48px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-ico svg {
  width: 22px; height: 22px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}


/* ============================================================
   CTA BANNER (product pages)
   ============================================================ */
.cta-banner {
  background: var(--green);
  padding: 72px 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}
.cta-banner .btn-outline-white {
  border-color: rgba(255,255,255,0.5);
}
.cta-banner .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .clients-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links       { display: none; }
  .nav-right .btn  { display: none; }
  .hamburger       { display: flex; }

  /* Hero */
  .hero { padding: 110px 0 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-cards { display: none; }
  .hero h1 { font-size: 36px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-item { border-right: none; padding-bottom: 0; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.28); }

  /* Products */
  .products-grid { grid-template-columns: 1fr; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Clients */
  .clients-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Page hero */
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-img { display: none; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 480px) {
  .hero h1 { font-size: 30px; letter-spacing: -0.5px; }
  .hero-ctas { flex-direction: column; }
  .page-hero-ctas { flex-direction: column; }
  .cta-banner .cta-btns { flex-direction: column; align-items: center; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 24px; }
  .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
}
