/* ==========================================================================
   SRV Arogya Healthcare â€” Design System
   Healthcare technology & medical-device solutions
   ========================================================================== */

:root {
  /* Palette â€” Peach & Cream */
  --brand-700: #5f4033;
  --brand-600: #7a4c38;
  --brand-500: #a05c45;
  --teal-600: #b0654f;
  --teal-500: #c07a63;
  --teal-400: #d2927b;
  --teal-100: #eebfae;
  --teal-50: #eedfae;
  --accent: #b0654f;
  --accent-dark: #8a4f3a;
  --accent-light: #eebfae;
  --gold: #c9a84c;
  --gold-light: #f6efdc;

  /* Neutrals */
  --bg: #fffdfa;
  --bg-alt: #fbf1e6;
  --surface: #ffffff;
  --border: #ead9c6;
  --text: #3d2e24;
  --text-muted: #7d6b5c;
  --text-light: #a8998a;

  /* Effects */
  --shadow-sm: 0 1px 3px rgba(95, 64, 51, 0.08);
  --shadow-md: 0 6px 24px rgba(95, 64, 51, 0.1);
  --shadow-lg: 0 14px 44px rgba(95, 64, 51, 0.14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.35, 1);

  /* Typography */
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-heading: 'Poppins', 'Segoe UI', sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--text); line-height: 1.25; margin: 0 0 0.75rem; font-weight: 600; }
p { margin: 0 0 1rem; }
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }
input, textarea, select { font-family: var(--font-body); }

.container { width: min(1200px, 92%); margin: 0 auto; }
.section { padding: 5.5rem 0; }
.section-sm { padding: 3rem 0; }
.bg-alt { background: var(--bg-alt); }
.text-center { text-align: center; }
.mt-16 { margin-top: 1rem; } .mt-24 { margin-top: 1.5rem; } .mt-32 { margin-top: 2rem; } .mt-48 { margin-top: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-720 { max-width: 720px; }
.gradient-text {
  background: linear-gradient(100deg, var(--accent) 0%, var(--brand-500) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Typography helpers ---------- */
.section-label {
  display: inline-block; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-light);
  padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1.1rem;
}
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 0.9rem; }
.section-subtitle { color: var(--text-muted); font-size: 1.02rem; line-height: 1.75; max-width: 760px; }
.lead { font-size: 1.08rem; color: var(--text-muted); line-height: 1.8; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 1.7rem; border-radius: 50px;
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.01em;
  border: 2px solid transparent; transition: var(--transition);
  text-align: center; justify-content: center;
}
.btn i { font-size: 0.9em; }
.btn-primary { background: linear-gradient(100deg, var(--accent), var(--brand-500)); color: #fff; box-shadow: 0 8px 22px rgba(176, 101, 79, 0.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(176, 101, 79, 0.36); color: #fff; }
.btn-outline { background: transparent; border-color: var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,0.45); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--accent-dark); border-color: #fff; }
.btn-white { background: #fff; color: var(--accent-dark); box-shadow: 0 8px 22px rgba(0,0,0,0.12); }
.btn-white:hover { transform: translateY(-2px); color: var(--accent); }
.btn-sm { padding: 0.55rem 1.15rem; font-size: 0.85rem; }

/* ---------- Tag / chip ---------- */
.tag { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.03em; padding: 0.3rem 0.8rem; border-radius: 50px; background: var(--accent-light); color: var(--accent-dark); }
.tag-emerald { background: var(--accent-light); color: var(--accent); }
.tag-amber { background: var(--gold-light); color: #8a6d1f; }
.tag-soft { background: #f1e8dd; color: var(--text-muted); }

/* ---------- Navbar ---------- */
.topbar {
  background: var(--brand-700); color: #ecdccb;
  font-size: 0.8rem; padding: 0.45rem 0;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.topbar a { color: #ecdccb; }
.topbar a:hover { color: #fff; }
.topbar-info { display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 0.45rem; }
.topbar-info i { color: var(--teal-400); }
.topbar-social { display: flex; gap: 0.9rem; }
.topbar-social a { width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.08); }
.topbar-social a:hover { background: var(--accent); }

.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 74px; }
.nav-logo { display: flex; align-items: center; gap: 0.7rem; }
.logo-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--brand-600));
  color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(176, 101, 79, 0.3);
}
.nav-logo span { font-family: var(--font-heading); font-weight: 600; color: var(--text); font-size: 1.05rem; line-height: 1.15; }
.nav-logo span small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { color: var(--text); font-size: 0.93rem; font-weight: 500; position: relative; padding: 0.25rem 0; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px; width: 100%; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: var(--transition); border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.nav-cta { color: #fff; background: linear-gradient(100deg, var(--accent), var(--brand-500)); padding: 0.6rem 1.3rem; border-radius: 50px; box-shadow: 0 6px 16px rgba(176,101,79,0.28); }
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover { transform: translateY(-2px); color: #fff; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.hamburger span { width: 26px; height: 2.5px; background: var(--text); border-radius: 3px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, #fdf8ef 0%, #ffffff 55%, var(--teal-50) 100%);
  padding: 5.5rem 0 6rem;
}
.hero-shape-1, .hero-shape-2 { position: absolute; border-radius: 50%; filter: blur(2px); z-index: 0; pointer-events: none; }
.hero-shape-1 { top: -22%; right: -12%; width: 620px; height: 620px; background: radial-gradient(circle, rgba(176,101,79,0.1) 0%, transparent 70%); animation: float 16s ease-in-out infinite; }
.hero-shape-2 { bottom: -20%; left: -10%; width: 520px; height: 520px; background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%); animation: float 22s ease-in-out infinite reverse; }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.45rem 1.1rem; background: #fff; border: 1px solid var(--border); border-radius: 50px; font-size: 0.78rem; font-weight: 600; color: var(--accent-dark); box-shadow: var(--shadow-sm); margin-bottom: 1.4rem; }
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-400); animation: pulse-dot 2s ease-in-out infinite; }
.hero h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); margin-bottom: 1.3rem; font-weight: 700; }
.hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 540px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 2rem; position: relative; overflow: hidden;
}
.hero-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--accent), var(--gold)); }
.hero-card h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.hero-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.hero-card-item { display: flex; gap: 0.9rem; align-items: flex-start; padding: 0.8rem 0; border-bottom: 1px dashed var(--border); }
.hero-card-item:last-child { border-bottom: none; }
.hero-card-item i { width: 40px; height: 40px; flex: 0 0 40px; border-radius: 10px; background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.hero-card-item strong { display: block; font-size: 0.92rem; }
.hero-card-item span { font-size: 0.82rem; color: var(--text-muted); }
.hero-float-chip { position: absolute; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 0.8rem 1.1rem; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 0.7rem; }
.hero-float-chip i { color: var(--accent); font-size: 1.1rem; }
.hero-float-chip strong { font-size: 0.85rem; display: block; }
.hero-float-chip span { font-size: 0.75rem; color: var(--text-muted); }
.chip-1 { top: -18px; left: -30px; animation: float 6s ease-in-out infinite; }
.chip-2 { bottom: -18px; right: -20px; animation: float 7s ease-in-out infinite reverse; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulse-dot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }

/* ---------- Stats ---------- */
.stats-strip { background: var(--brand-700); color: #fff; position: relative; overflow: hidden; }
.stats-strip::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 15% 20%, rgba(210,146,123,0.18), transparent 45%), radial-gradient(circle at 85% 80%, rgba(201,168,76,0.12), transparent 40%); }
.stats-strip .container { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-block { padding: 2.8rem 2rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.12); }
.stat-block:last-child { border-right: none; }
.stat-number { font-family: var(--font-heading); font-size: clamp(2rem, 3.4vw, 2.9rem); font-weight: 700; color: var(--teal-400); line-height: 1; margin-bottom: 0.4rem; }
.stat-number .accent { color: var(--gold); }
.stat-label { font-size: 0.84rem; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--surface); border-bottom: 1px solid var(--border); padding: 1.6rem 0; }
.trust-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 1.6rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 0.84rem; font-weight: 500; }
.trust-item i { color: var(--accent); font-size: 1.1rem; }
.trust-item strong { color: var(--text); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 2rem; transition: var(--transition); position: relative; overflow: hidden;
}
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--gold)); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(176,101,79,0.4); }
.card:hover::before { transform: scaleX(1); }
.card-icon { width: 54px; height: 54px; border-radius: 14px; background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1.35rem; margin-bottom: 1.1rem; transition: var(--transition); }
.card:hover .card-icon { background: linear-gradient(135deg, var(--accent), var(--brand-500)); color: #fff; transform: scale(1.05); }
.card h3 { font-size: 1.1rem; margin-bottom: 0.45rem; }
.card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.9rem; }
.card ul { margin-top: 0.4rem; }
.card ul li { font-size: 0.86rem; color: var(--text-muted); padding: 0.28rem 0; display: flex; gap: 0.55rem; align-items: flex-start; }
.card ul li i { color: var(--accent); font-size: 0.75rem; margin-top: 0.32rem; }
.card-link { font-weight: 600; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 6px; }
.card-link i { font-size: 0.75rem; transition: var(--transition); }
.card-link:hover i { transform: translateX(4px); }

/* Feature block */
.feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.feature-block + .feature-block { margin-top: 4.5rem; }
.feature-block.reverse .feature-media { order: 2; }
.feature-media { position: relative; }
.feature-media .visual-card { background: var(--brand-700); border-radius: var(--radius-lg); color: #fff; padding: 3rem 2.2rem; position: relative; overflow: hidden; min-height: 320px; display: flex; flex-direction: column; justify-content: flex-end; }
.feature-media .visual-card::before { content: ''; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(210,146,123,0.35), transparent 70%); }
.feature-media .visual-card::after { content: '\f0c9'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top: 2rem; left: 2rem; font-size: 2.6rem; color: rgba(255,255,255,0.12); }
.visual-card .vc-icon { width: 62px; height: 62px; border-radius: 16px; background: rgba(255,255,255,0.12); color: var(--teal-400); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.4rem; }
.visual-card h3 { color: #fff; font-size: 1.35rem; }
.visual-card p { color: rgba(255,255,255,0.78); font-size: 0.92rem; margin-bottom: 0; }
.feature-content .section-label { margin-bottom: 1rem; }
.feature-content h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); margin-bottom: 1rem; }
.feature-content .lead { margin-bottom: 1.2rem; }
.check-list li { display: flex; gap: 0.7rem; padding: 0.42rem 0; font-size: 0.95rem; color: var(--text); }
.check-list li i { color: var(--accent); margin-top: 0.3rem; font-size: 0.85rem; }

/* ---------- Values / icon rows ---------- */
.value-item { text-align: center; padding: 1.5rem 1rem; }
.value-icon { width: 70px; height: 70px; margin: 0 auto 1.1rem; border-radius: 50%; background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }
.value-item h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.value-item p { font-size: 0.86rem; color: var(--text-muted); }

/* ---------- Process / timeline ---------- */
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 22px; top: 8px; bottom: 8px; width: 3px; background: linear-gradient(180deg, var(--teal-400), var(--gold)); border-radius: 3px; }
.timeline-item { position: relative; padding: 0 0 2.2rem 4.4rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { position: absolute; left: 8px; top: 2px; width: 32px; height: 32px; border-radius: 50%; background: #fff; border: 3px solid var(--accent); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--accent); font-weight: 700; font-family: var(--font-heading); box-shadow: var(--shadow-sm); }
.timeline-item h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.timeline-item p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
.step { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 2rem 1.5rem 1.5rem; transition: var(--transition); }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.step::before { counter-increment: step; content: '0' counter(step); position: absolute; top: 1.1rem; right: 1.3rem; font-family: var(--font-heading); font-size: 1.9rem; font-weight: 700; color: var(--accent-light); }
.step .step-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; margin-bottom: 1rem; }
.step h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.step p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ---------- Product cards ---------- */
.product-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-media { height: 170px; background: linear-gradient(135deg, var(--teal-50), #fff); display: flex; align-items: center; justify-content: center; color: rgba(176,101,79,0.18); font-size: 3.4rem; position: relative; }
.product-media .tag { position: absolute; top: 14px; left: 14px; }
.product-body { padding: 1.6rem; display: flex; flex-direction: column; flex-grow: 1; }
.product-body h3 { font-size: 1.08rem; margin-bottom: 0.5rem; }
.product-body p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.1rem; flex-grow: 1; }
.product-body .tag-wrap { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1.2rem; }

/* ---------- Spec table ---------- */
.spec-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; background: var(--surface); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.spec-table th, .spec-table td { padding: 0.85rem 1.2rem; text-align: left; border-bottom: 1px solid var(--border); }
.spec-table th { background: var(--brand-700); color: #fff; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.04em; }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table td:first-child { font-weight: 600; color: var(--text); width: 34%; }
.spec-table td:last-child { color: var(--text-muted); }

/* ---------- Testimonials ---------- */
.testimonial-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 2rem; transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; }
.testimonial-text { color: var(--text-muted); line-height: 1.8; font-size: 0.95rem; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--brand-500)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 600; font-size: 0.9rem; }
.testimonial-name { font-weight: 600; color: var(--text); font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 1rem; overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: rgba(176,101,79,0.45); box-shadow: var(--shadow-md); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.6rem; cursor: pointer; font-weight: 600; color: var(--text); font-size: 0.98rem; }
.faq-q i { color: var(--accent); transition: var(--transition); flex: 0 0 auto; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 1.6rem 1.4rem; color: var(--text-muted); font-size: 0.92rem; }

/* ---------- Forms ---------- */
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 2.4rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.form-group label span { color: var(--text-light); font-weight: 400; }
.form-control { width: 100%; padding: 0.8rem 1rem; border: 1.5px solid var(--border); border-radius: 10px; font-size: 0.92rem; color: var(--text); background: #fff; transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(176,101,79,0.12); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.6rem; }

/* ---------- Contact info ---------- */
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.8rem; transition: var(--transition); display: flex; gap: 1.1rem; align-items: flex-start; }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-card i { width: 50px; height: 50px; flex: 0 0 50px; border-radius: 12px; background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.info-card h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.info-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.info-card a { font-size: 0.88rem; }

.map-wrap { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); min-height: 320px; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; color: var(--text-light); }

/* ---------- CTA banner ---------- */
.cta-banner { background: linear-gradient(120deg, var(--brand-700) 0%, var(--brand-500) 100%); border-radius: var(--radius-lg); padding: 4rem 3.5rem; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-banner::before { content: '\f0f3'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top: -40px; right: -30px; font-size: 14rem; color: rgba(255,255,255,0.06); }
.cta-banner::after { content: '+'; position: absolute; bottom: -60px; left: 40px; font-family: var(--font-heading); font-size: 12rem; color: rgba(255,255,255,0.05); }
.cta-banner h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-bottom: 0.9rem; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto 2rem; position: relative; z-index: 1; }
.cta-banner .hero-actions { justify-content: center; position: relative; z-index: 1; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: linear-gradient(120deg, #fdf8ef 0%, #ffffff 60%, var(--teal-50) 100%); border-bottom: 1px solid var(--border); padding: 4.5rem 0 4rem; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -60%; right: -8%; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(176,101,79,0.1), transparent 70%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 0.9rem; }
.page-hero p { color: var(--text-muted); max-width: 680px; font-size: 1.03rem; }
.breadcrumb { display: flex; gap: 0.6rem; align-items: center; font-size: 0.82rem; color: var(--text-light); margin-bottom: 1.4rem; }
.breadcrumb a { color: var(--accent); }
.breadcrumb i { font-size: 0.6rem; }

/* ---------- Partner logos ---------- */
.logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.logo-tile { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 2rem 1.5rem; text-align: center; transition: var(--transition); display: flex; flex-direction: column; align-items: center; gap: 0.7rem; min-height: 130px; justify-content: center; }
.logo-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(176,101,79,0.4); }
.logo-tile i { font-size: 2.4rem; color: var(--text-light); }
.logo-tile span { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.logo-tile em { font-style: normal; font-size: 0.72rem; color: var(--text-light); }

/* ---------- Resource / blog cards ---------- */
.resource-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); }
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.resource-img { height: 170px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; font-size: 2.6rem; color: rgba(176,101,79,0.18); position: relative; overflow: hidden; }
.resource-img .tag { position: absolute; top: 14px; left: 14px; }
.resource-body { padding: 1.6rem; }
.resource-date { font-size: 0.78rem; color: var(--text-light); margin-bottom: 0.5rem; display: block; }
.resource-body h3 { font-size: 1.02rem; margin-bottom: 0.5rem; }
.resource-body p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1rem; }

/* ---------- Callout / highlight ---------- */
.callout { background: var(--accent-light); border: 1px solid rgba(176,101,79,0.25); border-left: 5px solid var(--accent); border-radius: var(--radius-sm); padding: 1.4rem 1.6rem; margin: 1.4rem 0; }
.callout p { margin: 0; font-size: 0.92rem; color: var(--accent-dark); }
.callout p strong { display: block; margin-bottom: 0.2rem; }

/* ---------- Footer ---------- */
.footer { background: var(--brand-700); color: #ecd9c8; padding: 4.5rem 0 0; position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; bottom: -180px; right: -100px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(210,146,123,0.14), transparent 70%); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; position: relative; z-index: 1; }
.footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 1.1rem; letter-spacing: 0.02em; }
.footer .nav-logo span { color: #fff; }
.footer-brand p { font-size: 0.86rem; color: #d8c4b2; margin: 1.1rem 0 1.3rem; max-width: 320px; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { color: #d8c4b2; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 7px; }
.footer-links a i { font-size: 0.6rem; color: var(--teal-400); }
.footer-links a:hover { color: #fff; padding-left: 3px; }
.footer-contact li { display: flex; gap: 0.7rem; font-size: 0.88rem; margin-bottom: 0.8rem; color: #d8c4b2; }
.footer-contact li i { color: var(--teal-400); margin-top: 0.25rem; }
.footer-contact a { color: #d8c4b2; }
.footer-contact a:hover { color: #fff; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08); display: inline-flex; align-items: center; justify-content: center; color: #f0e2d5; font-size: 0.9rem; }
.footer-social a:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.4rem 0; margin-top: 3rem; position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.8rem; color: #c9b5a2; }
.footer-bottom a { color: #c9b5a2; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom .legal-links { display: flex; gap: 1.2rem; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; bottom: 26px; right: 26px; z-index: 999; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; box-shadow: 0 8px 24px rgba(37,211,102,0.4); transition: var(--transition); }
.wa-float:hover { transform: translateY(-4px) scale(1.05); color: #fff; box-shadow: 0 12px 30px rgba(37,211,102,0.5); }

/* ---------- Scroll reveal ---------- */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---------- Back to top ---------- */
.to-top { position: fixed; bottom: 26px; left: 26px; z-index: 999; width: 44px; height: 44px; border-radius: 12px; background: var(--accent-dark); color: #fff; border: none; display: flex; align-items: center; justify-content: center; font-size: 1rem; opacity: 0; visibility: hidden; transition: var(--transition); box-shadow: var(--shadow-md); }
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--accent); color: #fff; }

/* ---------- Legal page styles ---------- */
.prose { max-width: 820px; }
.prose h2 { font-size: 1.35rem; margin-top: 2.2rem; margin-bottom: 0.7rem; }
.prose h3 { font-size: 1.08rem; margin-top: 1.6rem; }
.prose p, .prose li { color: var(--text-muted); font-size: 0.95rem; }
.prose ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; }
.prose ul li { margin-bottom: 0.4rem; }
.prose strong { color: var(--text); }
.prose a { text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .stats-strip .container { grid-template-columns: repeat(2, 1fr); }
  .stat-block:nth-child(2) { border-right: none; }
  .stat-block:nth-child(1), .stat-block:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-block.reverse .feature-media { order: 0; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .topbar-info span.hide-sm { display: none; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 74px; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 1.5rem 1.5rem 3rem; overflow-y: auto;
    transform: translateX(100%); transition: transform 0.35s ease; z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 0.9rem 0.4rem; font-size: 1rem; }
  .nav-links a::after { display: none; }
  .nav-links a.nav-cta { display: inline-block; margin-top: 1.2rem; }
  .hero { padding: 3.5rem 0 4.5rem; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 3rem 1.5rem; border-radius: var(--radius-md); }
  .chip-1 { left: 10px; }
  .chip-2 { right: 10px; }
}

@media (max-width: 480px) {
  .stats-strip .container { grid-template-columns: 1fr; }
  .stat-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat-block:last-child { border-bottom: none; }
  .steps { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .topbar .container { justify-content: center; }
}
