﻿/* ==========================================================================
   GROWMYBIZNIZ — STYLES
   --------------------------------------------------------------------------
   COLOUR SYSTEM:
     --navy:       #0B1D3A  (dark sections, hero, CTA, footer)
     --navy-light: #142a52  (card backgrounds on dark sections)
     --white:      #FFFFFF   (light content sections)
     --grey:       #F6F8FB   (alternating light sections)
     --blue:       #1A6FFF   (primary accent, CTAs)
     --blue-dark:  #1558D6   (hover states)
     --teal:       #00C9A7   (secondary accent, highlights, badges)
     --teal-dark:  #00B595   (hover states)
   TYPOGRAPHY: Inter (loaded in index.html)
   ========================================================================== */

/* ===================== RESET & BASE ===================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0B1D3A;
  --navy-light: #142a52;
  --navy-lighter: #1d3a6b;
  --white: #FFFFFF;
  --grey: #F6F8FB;
  --grey-border: #e2e8f0;
  --blue: #1A6FFF;
  --blue-dark: #1558D6;
  --blue-light: #e8f0ff;
  --teal: #00C9A7;
  --teal-dark: #00B595;
  --teal-light: #e6faf5;
  --text-dark: #0B1D3A;
  --text-body: #405066;
  --text-muted: #6b7a90;
  --text-light: #e2e8f0;
  --text-light-muted: #a0aec0;
  --shadow-sm: 0 2px 8px rgba(11, 29, 58, 0.06);
  --shadow-md: 0 10px 28px rgba(11, 29, 58, 0.08);
  --shadow-lg: 0 22px 54px rgba(11, 29, 58, 0.12);
  --shadow-blue: 0 8px 24px rgba(26, 111, 255, 0.25);
  --radius-sm: 8px;
  --radius: 8px;
  --radius-lg: 14px;
  --gradient-blue: linear-gradient(135deg, #1A6FFF 0%, #00C9A7 100%);
  --gradient-navy: linear-gradient(160deg, #0B1D3A 0%, #142a52 50%, #0B1D3A 100%);
  --gradient-hero: linear-gradient(135deg, #0B1D3A 0%, #142a52 40%, #0d2550 100%);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transform: translateY(-140%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===================== LAYOUT ===================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
  position: relative;
}

.section-grey {
  background: var(--grey);
}

.section-dark {
  background: var(--gradient-navy);
  color: var(--text-light);
}

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4 {
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.85rem; }
h3 { font-size: 1.35rem; font-weight: 700; }

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.35rem; }
}

@media (min-width: 1200px) {
  h1 { font-size: 3.45rem; }
  h2 { font-size: 2.7rem; }
}

p { color: var(--text-body); }
.section-dark p { color: var(--text-light-muted); }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--blue);
  margin-bottom: 16px;
}

.eyebrow-light {
  color: var(--teal);
}

.gradient-text {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-header-light h2 { color: var(--white); }

.section-lead {
  font-size: 1.15rem;
  margin-top: 20px;
  color: var(--text-body);
  line-height: 1.7;
}

.section-lead-light { color: var(--text-light-muted); }

.section-cta-center {
  text-align: center;
  margin-top: 48px;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font);
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 48px;
  line-height: 1.2;
  white-space: normal;
  text-align: center;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26, 111, 255, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-border);
  transition: all var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
}

.logo-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(11, 29, 58, 0.12);
}

.logo-mark {
  background: var(--gradient-blue);
  color: var(--white);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0;
}

.logo-text { letter-spacing: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 10px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--blue);
  background: var(--blue-light);
}

.nav-cta {
  margin-left: 6px;
  color: var(--white) !important;
  background: var(--blue);
  padding: 10px 16px;
}
.nav-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ===================== HERO ===================== */
.hero {
  padding: 132px 0 88px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    var(--gradient-hero);
  background-size: 44px 44px, 44px 44px, auto;
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(0, 201, 167, 0.12), transparent 42%);
  pointer-events: none;
}

.hero::after {
  display: none;
}

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

.badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.badge-teal {
  background: rgba(0, 201, 167, 0.15);
  color: var(--teal);
  border: 1px solid rgba(0, 201, 167, 0.3);
}

.hero-title {
  color: var(--white);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light-muted);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light-muted);
}

.check {
  color: var(--teal);
  font-weight: 700;
}

/* Hero Dashboard Mockup */
.hero-visual {
  position: relative;
  padding: 32px 36px 36px;
}

.dashboard-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--grey);
  border-bottom: 1px solid var(--grey-border);
}

.dashboard-dots {
  display: flex;
  gap: 6px;
}
.dashboard-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--grey-border);
}
.dashboard-dots span:nth-child(1) { background: #ff5f57; }
.dashboard-dots span:nth-child(2) { background: #ffbd2e; }
.dashboard-dots span:nth-child(3) { background: #28ca42; }

.dashboard-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.dashboard-body {
  padding: 24px;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.metric-row:last-child { margin-bottom: 0; }

.metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.metric-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.metric-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0;
}

.metric-bar {
  height: 6px;
  background: var(--grey);
  border-radius: 3px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  background: var(--gradient-blue);
  border-radius: 3px;
  transition: width 1s ease;
}

.floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatUp 3s ease-in-out infinite;
  pointer-events: none;
}

.floating-badge div {
  display: flex;
  flex-direction: column;
}
.floating-badge strong { font-size: 0.85rem; color: var(--navy); }
.floating-badge span { font-size: 0.72rem; color: var(--text-muted); }
.badge-icon { font-size: 1.4rem; }

.floating-badge-1 {
  top: 0;
  right: 0;
  animation-delay: 0s;
}

.floating-badge-2 {
  bottom: 0;
  left: 0;
  animation-delay: 1.5s;
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===================== TRUST STRIP ===================== */
.trust-strip {
  padding: 64px 0;
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
}

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

.trust-card {
  text-align: center;
  padding: 18px 16px;
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.trust-card h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.trust-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===================== SERVICES GRID ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.service-icon-blue { background: var(--blue-light); }
.service-icon-teal { background: var(--teal-light); }

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ===================== TWO-COLUMN SECTIONS ===================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col-reverse .two-col-content { order: 2; }
.two-col-reverse .two-col-visual { order: 1; }

.two-col-content h2 {
  margin-bottom: 16px;
}

.benefit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 36px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
}

.benefit-check {
  width: 24px;
  height: 24px;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

.two-col-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ===================== FEATURE GRID (WhatsApp / Process) ===================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 16px;
}

.feature-card {
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
  height: 100%;
}

.feature-card:hover {
  background: var(--navy-lighter);
  transform: translateY(-4px);
  border-color: rgba(0, 201, 167, 0.3);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--white);
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-light-muted);
  line-height: 1.6;
}

.automation-note {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  margin-bottom: 24px;
  font-style: italic;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================== GROWTH FLOW ===================== */
.growth-flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.growth-step {
  flex: 1;
  min-width: 140px;
  max-width: 180px;
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.growth-step:hover {
  background: var(--navy-lighter);
  border-color: rgba(0, 201, 167, 0.3);
  transform: translateY(-4px);
}

.growth-step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.growth-step h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
}

.growth-step p {
  font-size: 0.82rem;
  color: var(--text-light-muted);
  line-height: 1.5;
}

.growth-arrow {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: var(--teal);
  font-weight: 700;
}

/* ===================== WHY CHOOSE ===================== */
.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 36px;
  transition: all var(--transition);
  flex: 1 1 300px;
  max-width: calc((100% - 48px) / 3);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===================== ABOUT ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.about-stat {
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 20px 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.about-stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0;
}

.about-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
  line-height: 1.35;
}

.about-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ===================== PROCESS ===================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-card {
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 36px;
  transition: all var(--transition);
  position: relative;
  height: 100%;
}

.process-card:hover {
  background: var(--navy-lighter);
  transform: translateY(-4px);
  border-color: rgba(0, 201, 167, 0.3);
}

.process-number {
  width: 48px;
  height: 48px;
  background: var(--gradient-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.process-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--white);
}

.process-card p {
  font-size: 0.92rem;
  color: var(--text-light-muted);
  line-height: 1.7;
}

/* ===================== FAQ ===================== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.faq-item h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--text-body);
}

/* ===================== CONTACT ===================== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform var(--transition);
}

a.contact-detail:hover {
  transform: translateX(4px);
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-detail-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--text-muted);
  font-weight: 600;
}

.contact-detail-value {
  display: block;
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.contact-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--navy);
}

.form-group {
  margin-bottom: 20px;
}

.form-honey {
  display: none;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: var(--font);
  border: 2px solid var(--grey-border);
  border-radius: var(--radius-sm);
  background: var(--grey);
  color: var(--text-dark);
  transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(26, 111, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.form-success {
  margin-top: 16px;
  padding: 14px 20px;
  background: var(--teal-light);
  border: 1px solid var(--teal);
  border-radius: var(--radius-sm);
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}

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

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

.logo-footer {
  color: var(--white);
  margin-bottom: 16px;
}

.logo-footer .logo-image {
  width: 52px;
  height: 52px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-light-muted);
}

.footer-col h3 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-sub-heading {
  margin-top: 28px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-links li {
  font-size: 0.88rem;
  color: var(--text-light-muted);
  transition: color var(--transition);
  line-height: 1.5;
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-cta {
  margin-top: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===================== FLOATING ACTIONS ===================== */
.floating-whatsapp {
  position: fixed;
  left: max(16px, calc(100% - 100vw + 24px));
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  z-index: 998;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 18px 10px 12px;
  color: var(--white);
  background: linear-gradient(135deg, #12b76a 0%, #00c9a7 52%, #1a6fff 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(11, 29, 58, 0.22), 0 8px 22px rgba(18, 183, 106, 0.22);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.floating-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(11, 29, 58, 0.26), 0 10px 26px rgba(18, 183, 106, 0.28);
  filter: saturate(1.05);
}

.floating-whatsapp-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.floating-whatsapp-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.floating-whatsapp-text {
  white-space: nowrap;
}

/* ===================== BACK TO TOP ===================== */
.back-to-top {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  right: max(16px, calc(100% - 100vw + 24px));
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: var(--shadow-blue);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--blue-dark);
  transform: translateY(-4px);
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 1100px) {
  .navbar,
  .nav-links {
    width: 100vw;
    max-width: 100vw;
  }

  .nav-inner {
    max-width: 100vw;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--grey-border);
    transform: translateY(-200%);
    transition: transform var(--transition);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-link {
    padding: 14px 16px;
    font-size: 1rem;
    border-bottom: 1px solid var(--grey-border);
    white-space: normal;
  }

  .nav-cta {
    margin: 12px 0 0;
    text-align: center;
    padding: 14px;
  }

  .hamburger {
    display: flex;
  }
}

/* Tablet */
@media (max-width: 968px) {
  .section { padding: 72px 0; }

  .hero { padding: 120px 0 72px; }

  .hero-content {
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas,
  .hero-trust {
    justify-content: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual { max-width: 500px; margin: 0 auto; }

  .two-col,
  .two-col-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .two-col-reverse .two-col-content { order: 1; }
  .two-col-reverse .two-col-visual { order: 2; }

  .trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 24px;
  }

  .trust-card {
    flex: 1 1 200px;
    max-width: 230px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card,
  .feature-card,
  .why-card,
  .process-card,
  .faq-item {
    text-align: center;
  }

  .service-card {
    align-items: center;
  }

  .service-icon,
  .feature-icon,
  .why-icon,
  .growth-step-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .process-number {
    margin-left: auto;
    margin-right: auto;
  }

  .two-col-content {
    text-align: center;
  }

  .two-col-content .section-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .two-col-content .btn {
    margin-left: auto;
    margin-right: auto;
  }

  .benefit-list {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .benefit-item {
    text-align: left;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    max-width: calc((100% - 24px) / 2);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info {
    text-align: center;
  }

  .contact-details {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-detail {
    justify-content: center;
    text-align: left;
  }

  .contact-ctas {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .growth-step {
    min-width: 120px;
  }

  .growth-flow {
    flex-direction: column;
    align-items: stretch;
  }

  .growth-step {
    max-width: 100%;
  }

  .growth-arrow {
    transform: rotate(90deg);
    justify-content: center;
    width: 100%;
    padding: 4px 0;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .container { padding: 0 20px; }

  /* Mobile Nav */
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--grey-border);
    transform: translateY(-200%);
    transition: transform var(--transition);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-link {
    padding: 14px 16px;
    font-size: 1rem;
    border-bottom: 1px solid var(--grey-border);
  }

  .nav-cta {
    margin: 12px 0 0;
    text-align: center;
    padding: 14px;
  }

  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 110px 0 56px; }
  .hero-content { text-align: center; }
  .hero-title {
    font-size: 2rem;
    line-height: 1.18;
    overflow-wrap: break-word;
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .hero-trust-item {
    font-size: 0.82rem;
    text-align: center;
    min-width: 0;
  }
  .hero-visual {
    max-width: 360px;
    padding: 24px 18px 28px;
  }
  .btn-lg {
    padding: 16px 22px;
    font-size: 1rem;
  }

  .floating-badge { display: none; }

  .metric-row { grid-template-columns: 1fr; }
  .metric-value { font-size: 1.3rem; }

  /* Trust */
  .trust-grid {
    gap: 32px;
  }

  .trust-card {
    flex-basis: 100%;
    max-width: 340px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Benefits */
  .benefit-list {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

  .benefit-item {
    justify-content: flex-start;
  }

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

  /* Growth flow */
  .growth-flow {
    flex-direction: column;
    align-items: stretch;
  }
  .growth-step {
    max-width: 100%;
  }
  .growth-arrow {
    transform: rotate(90deg);
    justify-content: center;
    padding: 8px 0;
  }

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

  .why-card {
    flex-basis: 100%;
    max-width: 100%;
  }

  /* About stats */
  .about-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-stat {
    text-align: center;
    padding: 22px 18px;
  }

  .about-stat-value { font-size: 2rem; }

  /* Contact */
  .contact-ctas { flex-direction: column; }
  .contact-ctas .btn { width: 100%; }

  .contact-detail {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    padding: 22px 18px;
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    gap: 12px;
  }

  a.contact-detail:hover {
    transform: none;
  }

  .contact-detail-icon {
    margin: 0 auto;
  }

  .contact-detail-label,
  .contact-detail-value {
    text-align: center;
  }

  .contact-form { padding: 28px 24px; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-col,
  .footer-brand {
    text-align: center;
  }

  .logo-footer {
    justify-content: center;
  }

  .back-to-top {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    right: max(16px, calc(100% - 100vw + 16px));
    width: 42px;
    height: 42px;
  }

  .floating-whatsapp {
    left: max(16px, calc(100% - 100vw + 16px));
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    min-height: 48px;
    padding: 8px 15px 8px 9px;
    gap: 9px;
    font-size: 0.88rem;
  }

  .floating-whatsapp-icon {
    width: 32px;
    height: 32px;
  }

  .floating-whatsapp-icon svg {
    width: 23px;
    height: 23px;
  }
}

@media (max-width: 420px) {
  .container { padding: 0 16px; }

  .logo {
    gap: 8px;
    font-size: 1rem;
  }

  .logo-image {
    width: 42px;
    height: 42px;
  }

  .logo-mark {
    padding: 6px 9px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .badge {
    padding: 8px 12px;
    font-size: 0.75rem;
  }

  .btn {
    padding: 14px 18px;
  }

  .hero-visual {
    max-width: 330px;
    padding: 22px 10px 26px;
  }

  .dashboard-header {
    padding: 14px 16px;
  }

  .dashboard-body {
    padding: 20px;
  }
}

/* ===================== SCROLL ANIMATIONS ===================== */
.fade-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== ACCESSIBILITY ===================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

*:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}
