/* ============================================
   KUHLEANS - कुशल
   Ancient Wellness, Modern Nutrition
   Brand Colors from Strategy:
   Forest Green: #2D5016 | Sage Green: #6B8E23
   Terracotta: #C1694F | Golden: #D4AF37
   Warm Cream: #FDFBF7 | Near Black: #1A1A1A
   ============================================ */

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

:root {
    --forest-green: #2D5016;
    --sage-green: #6B8E23;
    --terracotta: #C1694F;
    --golden: #D4AF37;
    --warm-cream: #FDFBF7;
    --near-black: #1A1A1A;
    --light-sage: #f0f4e8;
    --terracotta-light: #f7eeea;
    --golden-light: #fdf8e8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--warm-cream);
    color: var(--near-black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--forest-green);
}

.devanagari {
    font-family: 'Noto Serif Devanagari', 'Devanagari', serif;
}

/* ---- NAVIGATION ---- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45, 80, 22, 0.1);
    transition: box-shadow 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 2px 20px rgba(45, 80, 22, 0.12);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 40px;
    width: 40px;
    object-fit: cover;
    border-radius: 50%;
    border: 1.5px solid rgba(45, 80, 22, 0.15);
}

.nav-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--forest-green);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--near-black);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sage-green);
    transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--forest-green);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--forest-green);
    transition: 0.3s;
}

/* ---- HERO SECTIONS ---- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px 80px;
    background: linear-gradient(165deg, var(--warm-cream) 0%, var(--light-sage) 50%, var(--warm-cream) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(107,142,35,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(193,105,79,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.hero-logo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 40px;
    border: 2px solid rgba(45, 80, 22, 0.12);
    box-shadow: 0 4px 20px rgba(45,80,22,0.14);
}

.hero-greeting {
    font-size: 3.2rem;
    color: var(--forest-green);
    font-weight: 300;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.hero-greeting .devanagari {
    font-size: 2.4rem;
    color: var(--sage-green);
    display: block;
    margin-top: 4px;
    opacity: 0.8;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #5a5a5a;
    max-width: 560px;
    margin: 24px auto 0;
    line-height: 1.8;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.badge-green {
    background: var(--light-sage);
    color: var(--forest-green);
    border: 1px solid rgba(45,80,22,0.15);
}

.badge-terra {
    background: var(--terracotta-light);
    color: var(--terracotta);
    border: 1px solid rgba(193,105,79,0.15);
}

.badge-gold {
    background: var(--golden-light);
    color: #8a7020;
    border: 1px solid rgba(212,175,55,0.2);
}

.hero-cta {
    margin-top: 48px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: var(--forest-green);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #244010;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(45,80,22,0.3);
}

.btn-outline {
    display: inline-block;
    padding: 13px 32px;
    background: transparent;
    color: var(--forest-green);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid var(--forest-green);
    transition: all 0.3s;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--forest-green);
    color: #fff;
}

/* ---- SECTION COMMON ---- */
section {
    padding: 100px 24px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.section-header .devanagari {
    font-size: 1.1rem;
    color: var(--sage-green);
    opacity: 0.7;
    display: block;
    margin-bottom: 16px;
}

.section-header p {
    color: #6b6b6b;
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--sage-green), var(--terracotta));
    margin: 20px auto;
    border-radius: 2px;
}

/* ---- PRODUCTS GRID ---- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    border: 1px solid rgba(45,80,22,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.product-card:nth-child(1)::before { background: var(--forest-green); }
.product-card:nth-child(2)::before { background: var(--sage-green); }
.product-card:nth-child(3)::before { background: var(--terracotta); }
.product-card:nth-child(4)::before { background: var(--golden); }

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(45,80,22,0.12);
}

.product-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.product-card h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.product-card .product-sanskrit {
    font-size: 0.78rem;
    color: var(--sage-green);
    opacity: 0.8;
    margin-bottom: 14px;
    font-style: italic;
}

.product-card p {
    font-size: 0.9rem;
    color: #6b6b6b;
    line-height: 1.7;
}

.product-price {
    margin-top: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--forest-green);
}

.product-price span {
    font-size: 0.78rem;
    color: #999;
    font-weight: 400;
    margin-left: 6px;
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
    background: var(--light-sage);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--forest-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.88rem;
    color: #6b6b6b;
}

/* ---- VALUES ---- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.values-text h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.values-text p {
    color: #6b6b6b;
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pillar-tag {
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    background: var(--light-sage);
    color: var(--forest-green);
    border: 1px solid rgba(45,80,22,0.12);
}

.values-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.value-box {
    background: #fff;
    border-radius: 16px;
    padding: 28px 22px;
    border: 1px solid rgba(45,80,22,0.08);
    text-align: center;
}

.value-box .value-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.value-box h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.value-box p {
    font-size: 0.8rem;
    color: #6b6b6b;
}

/* ---- CTA SECTION ---- */
.cta-section {
    background: linear-gradient(135deg, var(--forest-green) 0%, #3d6b1e 100%);
    text-align: center;
    padding: 100px 24px;
}

.cta-section h2 {
    color: #fff;
    font-size: 2.4rem;
    margin-bottom: 8px;
}

.cta-section .devanagari {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    max-width: 520px;
    margin: 0 auto 36px;
    font-size: 1.05rem;
}

.btn-white {
    display: inline-block;
    padding: 14px 36px;
    background: #fff;
    color: var(--forest-green);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.3s;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

/* ---- FOOTER ---- */
footer {
    background: var(--near-black);
    color: rgba(255,255,255,0.6);
    padding: 60px 24px 28px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1) opacity(0.8);
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: var(--sage-green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--sage-green);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    background: linear-gradient(165deg, var(--warm-cream), var(--light-sage));
}

.about-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 8px;
}

.about-hero .devanagari {
    color: var(--sage-green);
    font-size: 1.1rem;
    opacity: 0.7;
    display: block;
    margin-bottom: 16px;
}

.about-hero p {
    color: #6b6b6b;
    max-width: 580px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Brand Story */
.brand-story {
    background: #fff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-visual {
    text-align: center;
}

.story-visual img {
    width: 240px;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(45,80,22,0.15));
}

.story-meanings {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
    justify-content: center;
}

.meaning-tag {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--light-sage);
    color: var(--forest-green);
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.story-text .devanagari {
    color: var(--sage-green);
    font-size: 1rem;
    margin-bottom: 20px;
    display: block;
}

.story-text p {
    color: #6b6b6b;
    line-height: 1.9;
    margin-bottom: 16px;
}

/* Mission & Vision */
.mission-vision {
    background: var(--light-sage);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mv-card {
    background: #fff;
    border-radius: 20px;
    padding: 44px 36px;
    border: 1px solid rgba(45,80,22,0.08);
}

.mv-card .mv-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
}

.mv-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.mv-card p {
    color: #6b6b6b;
    line-height: 1.8;
}

/* Problem Stats */
.problem-stats {
    background: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.stat-card {
    text-align: center;
    padding: 36px 20px;
    border-radius: 16px;
    background: var(--warm-cream);
    border: 1px solid rgba(45,80,22,0.08);
}

.stat-card .stat-number {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--forest-green);
    line-height: 1.1;
}

.stat-card .stat-label {
    font-size: 0.85rem;
    color: #6b6b6b;
    margin-top: 8px;
}

/* Approach */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.approach-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid rgba(45,80,22,0.08);
}

.approach-card .approach-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.approach-card:nth-child(1) .approach-num { background: var(--light-sage); color: var(--forest-green); }
.approach-card:nth-child(2) .approach-num { background: var(--terracotta-light); color: var(--terracotta); }
.approach-card:nth-child(3) .approach-num { background: var(--golden-light); color: #8a7020; }
.approach-card:nth-child(4) .approach-num { background: #eef0f5; color: #4a6fa5; }

.approach-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.approach-card p {
    font-size: 0.88rem;
    color: #6b6b6b;
    line-height: 1.7;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 20px;
    border: 1px solid rgba(45,80,22,0.1);
}

.comparison-table th {
    padding: 18px 24px;
    text-align: left;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.comparison-table th:first-child { background: var(--light-sage); color: var(--forest-green); }
.comparison-table th:nth-child(2) { background: var(--forest-green); color: #fff; }
.comparison-table th:nth-child(3) { background: #eee; color: #666; }

.comparison-table td {
    padding: 14px 24px;
    font-size: 0.88rem;
    border-top: 1px solid rgba(45,80,22,0.07);
}

.comparison-table tr:nth-child(even) td:first-child { background: rgba(45,80,22,0.03); }

.comparison-table td:nth-child(2) { color: var(--forest-green); font-weight: 500; }
.comparison-table td:nth-child(3) { color: #999; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
    min-height: 42vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    background: linear-gradient(165deg, var(--warm-cream), var(--terracotta-light));
}

.contact-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 8px;
}

.contact-hero .devanagari {
    color: var(--terracotta);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 16px;
    opacity: 0.7;
}

.contact-hero p {
    color: #6b6b6b;
    max-width: 520px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Info Cards */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid rgba(45,80,22,0.08);
    text-align: center;
}

.contact-info-card .info-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.contact-info-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 0.85rem;
    color: #6b6b6b;
    line-height: 1.7;
}

/* Form */
.form-container {
    max-width: 680px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    padding: 52px 48px;
    border: 1px solid rgba(45,80,22,0.08);
    box-shadow: 0 4px 24px rgba(45,80,22,0.06);
}

.form-container h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.form-container > p {
    text-align: center;
    color: #6b6b6b;
    font-size: 0.9rem;
    margin-bottom: 36px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--near-black);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group label .required {
    color: var(--terracotta);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 18px;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    font-size: 0.92rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--warm-cream);
    color: var(--near-black);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage-green);
    box-shadow: 0 0 0 3px rgba(107,142,35,0.12);
    background: #fff;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--terracotta);
}

.form-group .error-msg {
    font-size: 0.78rem;
    color: var(--terracotta);
    margin-top: 5px;
    display: none;
}

.form-group .error-msg.visible {
    display: block;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.char-counter {
    text-align: right;
    font-size: 0.75rem;
    color: #999;
    margin-top: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* reCAPTCHA */
.captcha-container {
    margin: 28px 0;
    display: flex;
    justify-content: center;
}

.captcha-error {
    text-align: center;
    font-size: 0.78rem;
    color: var(--terracotta);
    margin-top: 8px;
    display: none;
}

.captcha-error.visible { display: block; }

.form-submit {
    text-align: center;
    margin-top: 28px;
}

.form-submit .btn-primary {
    width: 100%;
    max-width: 260px;
    padding: 15px 36px;
    font-size: 0.95rem;
}

/* FAQ */
.faq-section {
    background: var(--light-sage);
}

.faq-grid {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(45,80,22,0.08);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--forest-green);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: background 0.2s;
}

.faq-question:hover { background: rgba(45,80,22,0.03); }

.faq-question .faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
    color: var(--sage-green);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.88rem;
    color: #6b6b6b;
    line-height: 1.8;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thankyou-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
    background: linear-gradient(165deg, var(--warm-cream), var(--light-sage));
}

.thankyou-page img {
    width: 140px;
    margin-bottom: 36px;
    filter: drop-shadow(0 4px 12px rgba(45,80,22,0.15));
}

.thankyou-page h1 {
    font-size: 2.4rem;
    margin-bottom: 8px;
}

.thankyou-page .devanagari {
    color: var(--sage-green);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 20px;
}

.thankyou-page p {
    color: #6b6b6b;
    max-width: 480px;
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.8;
}

.thankyou-page .back-link {
    margin-top: 20px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--warm-cream);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(45,80,22,0.1);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }

    .nav-links.open { display: flex; }

    .nav-toggle { display: flex; }

    .hero-greeting { font-size: 2.2rem; }

    .hero-logo { width: 140px; }

    .products-grid, .steps-grid { grid-template-columns: 1fr 1fr; }

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

    .story-grid, .mv-grid, .form-row { grid-template-columns: 1fr; }

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

    .form-container { padding: 36px 24px; }

    section { padding: 70px 20px; }
}

@media (max-width: 480px) {
    .products-grid, .steps-grid, .stats-grid { grid-template-columns: 1fr; }

    .hero-greeting { font-size: 1.8rem; }

    .section-header h2, .about-hero h1, .contact-hero h1 { font-size: 2rem; }

    .values-visual { grid-template-columns: 1fr; }

    .comparison-table { font-size: 0.78rem; }
    .comparison-table th, .comparison-table td { padding: 10px 12px; }
}
