/* =========================================================
   Tanso.in -- Startup vibrant pitch
   Palette: Saffron #ff6b35  Leaf #00a86b  Sky #1e88e5
            White #ffffff   Dark #1a1a2e   Light #fff3e0
   ========================================================= */

:root {
    --saffron: #ff6b35;
    --leaf: #00a86b;
    --sky: #1e88e5;
    --white: #ffffff;
    --dark: #1a1a2e;
    --light: #fff3e0;

    --saffron-soft: rgba(255, 107, 53, 0.12);
    --leaf-soft: rgba(0, 168, 107, 0.12);
    --sky-soft: rgba(30, 136, 229, 0.12);

    --shadow-sm: 0 4px 14px rgba(26, 26, 46, 0.06);
    --shadow-md: 0 10px 30px rgba(26, 26, 46, 0.08);
    --shadow-lg: 0 24px 60px rgba(26, 26, 46, 0.12);

    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    color: var(--saffron);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

a:hover {
    color: var(--leaf);
}

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

.hindi {
    font-family: "Noto Sans Devanagari", "Poppins", sans-serif;
    font-weight: 400;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--saffron), #ff8a5f);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(255, 107, 53, 0.45);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

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

.btn-sm {
    padding: 0.55rem 1.1rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1.05rem 2rem;
    font-size: 1.05rem;
}

/* =====================================================
   Header
   ===================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0.85rem 0;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 0.55rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.site-header.is-scrolled .brand {
    color: var(--dark);
}

.brand-mark {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.brand-text {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
}

.brand-dot {
    color: var(--saffron);
}

.primary-nav {
    display: flex;
    gap: 1.75rem;
}

.primary-nav a {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.25rem 0;
}

.site-header.is-scrolled .primary-nav a {
    color: var(--dark);
}

.primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--saffron);
    transition: width 0.3s ease;
}

.primary-nav a:hover::after {
    width: 100%;
}

.primary-nav a:hover {
    color: var(--saffron);
}

@media (max-width: 720px) {
    .primary-nav {
        display: none;
    }
}

/* =====================================================
   Hero
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8845 35%, #00a86b 100%);
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 35%),
        radial-gradient(circle at 80% 80%, rgba(30, 136, 229, 0.35), transparent 45%);
    pointer-events: none;
    z-index: -1;
}

.hero-rangoli {
    position: absolute;
    top: -80px;
    left: -80px;
    width: 360px;
    height: 360px;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.55) 1.5px, transparent 2px) 0 0/24px 24px,
        radial-gradient(circle at center, transparent 60px, rgba(255, 255, 255, 0.15) 61px, transparent 62px),
        radial-gradient(circle at center, transparent 110px, rgba(255, 255, 255, 0.12) 111px, transparent 112px),
        radial-gradient(circle at center, transparent 160px, rgba(255, 255, 255, 0.08) 161px, transparent 162px);
    opacity: 0.45;
    pointer-events: none;
    animation: rangoli-spin 60s linear infinite;
    z-index: -1;
}

.hero-rangoli--right {
    top: auto;
    left: auto;
    right: -120px;
    bottom: -100px;
    width: 420px;
    height: 420px;
    animation-direction: reverse;
    animation-duration: 80s;
    opacity: 0.35;
}

@keyframes rangoli-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-inner {
    position: relative;
    text-align: center;
    z-index: 2;
}

.eyebrow {
    display: inline-block;
    padding: 0.45rem 1rem;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    font-family: "Noto Sans Devanagari", "Poppins", sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    letter-spacing: 0.02em;
}

.hero-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 1.5rem;
}

.hero-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(28px);
    animation: hero-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    margin-right: 0.4em;
}

.hero-word:nth-child(1) { animation-delay: 0.10s; }
.hero-word:nth-child(2) { animation-delay: 0.25s; }
.hero-word:nth-child(3) { animation-delay: 0.40s; }

.hero-word--accent {
    background: linear-gradient(90deg, #fff3e0, #ffffff 50%, #fff3e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    background-size: 200% 100%;
    animation: hero-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.40s forwards,
               shimmer 4s ease-in-out 1.4s infinite;
}

@keyframes hero-rise {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-sub {
    max-width: 640px;
    margin: 0 auto 2.25rem;
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
    opacity: 0;
    animation: hero-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: hero-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

.hero-trust {
    display: flex;
    gap: 0.65rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: hero-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}

.dot-saffron { background: #ffcf99; }
.dot-leaf    { background: #8be0c1; }
.dot-sky     { background: #9ec8f0; }

.hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    line-height: 0;
    pointer-events: none;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* =====================================================
   Section heads
   ===================================================== */
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.section-head--center {
    margin-bottom: 2rem;
}

.section-tag {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.tag-saffron { background: var(--saffron-soft); color: var(--saffron); }
.tag-leaf    { background: var(--leaf-soft);    color: var(--leaf);    }
.tag-sky     { background: var(--sky-soft);     color: var(--sky);     }

.section-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    color: var(--dark);
}

.accent-saffron { color: var(--saffron); }
.accent-leaf    { color: var(--leaf); }
.accent-sky     { color: var(--sky); }
.accent-leaf-light {
    background: linear-gradient(135deg, #c9ffe1, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.section-sub {
    font-size: 1.05rem;
    color: rgba(26, 26, 46, 0.7);
    margin: 0;
}

/* =====================================================
   Stats
   ===================================================== */
.stats {
    background: var(--light);
    padding: 6rem 0;
    position: relative;
}

.stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle, rgba(26, 26, 46, 0.5) 1px, transparent 1.5px) 0 0/40px 40px;
    opacity: 0.03;
    pointer-events: none;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    position: relative;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--saffron);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-card--saffron { border-top-color: var(--saffron); }
.stat-card--leaf    { border-top-color: var(--leaf); }
.stat-card--sky     { border-top-color: var(--sky); }

.stat-num {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-variant-numeric: tabular-nums;
}

.stat-card--saffron .stat-num { color: var(--saffron); }
.stat-card--leaf .stat-num    { color: var(--leaf); }
.stat-card--sky .stat-num     { color: var(--sky); }

.stat-unit {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.9rem;
    color: rgba(26, 26, 46, 0.65);
    line-height: 1.5;
    margin: 0;
}

/* =====================================================
   Features
   ===================================================== */
.features {
    padding: 6rem 0;
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem 1.75rem;
    border: 1px solid rgba(26, 26, 46, 0.06);
    border-top: 4px solid var(--saffron);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.feature-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, var(--saffron-soft), transparent);
    transition: height 0.35s ease;
    pointer-events: none;
    z-index: 0;
}

.feature-card:hover::after {
    height: 60px;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

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

.feature-card--saffron { border-top-color: var(--saffron); }
.feature-card--leaf    { border-top-color: var(--leaf); }
.feature-card--leaf::after    { background: linear-gradient(180deg, var(--leaf-soft), transparent); }
.feature-card--sky     { border-top-color: var(--sky); }
.feature-card--sky::after     { background: linear-gradient(180deg, var(--sky-soft), transparent); }

.feature-icon {
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 0 0.65rem;
    color: var(--dark);
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 0.95rem;
    color: rgba(26, 26, 46, 0.7);
    line-height: 1.6;
    margin: 0 0 1.25rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.feature-card--saffron .feature-link { color: var(--saffron); }
.feature-card--leaf .feature-link    { color: var(--leaf); }
.feature-card--sky .feature-link     { color: var(--sky); }

.feature-link span {
    transition: transform 0.25s ease;
}

.feature-link:hover span {
    transform: translateX(5px);
}

/* =====================================================
   Testimonials -- speech bubbles
   ===================================================== */
.testimonials {
    padding: 6rem 0;
    background: var(--light);
    position: relative;
}

.testimonials::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle, rgba(26, 26, 46, 0.6) 1px, transparent 1.5px) 0 0/36px 36px;
    opacity: 0.03;
    pointer-events: none;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem 1.75rem;
    position: relative;
}

.speech {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem 1.75rem 1.5rem;
    margin: 0 0 1.5rem;
    position: relative;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--saffron);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.speech:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.speech::after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 32px;
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid var(--white);
    filter: drop-shadow(0 4px 4px rgba(26, 26, 46, 0.06));
}

.speech--saffron { border-top-color: var(--saffron); }
.speech--leaf    { border-top-color: var(--leaf); }
.speech--sky     { border-top-color: var(--sky); }

.speech blockquote {
    margin: 0 0 1.25rem;
}

.speech blockquote p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark);
    margin: 0;
    font-style: italic;
}

.speech blockquote p::before {
    content: "\201C";
    font-family: "Poppins", sans-serif;
    font-size: 2.4rem;
    line-height: 0;
    color: var(--saffron);
    margin-right: 0.15em;
    vertical-align: -0.35em;
    font-weight: 700;
    opacity: 0.5;
}

.speech--leaf blockquote p::before { color: var(--leaf); }
.speech--sky blockquote p::before  { color: var(--sky); }

.speech figcaption {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1.5rem;
    padding-left: 0.5rem;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.avatar-saffron { background: linear-gradient(135deg, var(--saffron), #ff8a5f); }
.avatar-leaf    { background: linear-gradient(135deg, var(--leaf), #34c98c); }
.avatar-sky     { background: linear-gradient(135deg, var(--sky), #4aa3eb); }

.who {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.who strong {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.who span {
    font-size: 0.8rem;
    color: rgba(26, 26, 46, 0.6);
}

/* =====================================================
   Partners
   ===================================================== */
.partners {
    padding: 5rem 0;
    background: var(--white);
}

.partner-grid {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1rem;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 1.25rem 1rem;
    background: var(--light);
    border-radius: var(--radius);
    transition: transform 0.25s ease, box-shadow 0.3s ease, background 0.3s ease;
    text-align: center;
}

.partner-logo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.partner-name {
    font-size: 0.78rem;
    color: rgba(26, 26, 46, 0.55);
    font-weight: 500;
}

/* =====================================================
   CTA band
   ===================================================== */
.cta-band {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, #2c2c4a 50%, var(--leaf) 130%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-rangoli {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 360px;
    height: 360px;
    background:
        radial-gradient(circle, rgba(255, 107, 53, 0.4) 1.5px, transparent 2px) 0 0/24px 24px,
        radial-gradient(circle at center, transparent 70px, rgba(255, 107, 53, 0.18) 71px, transparent 72px),
        radial-gradient(circle at center, transparent 130px, rgba(0, 168, 107, 0.18) 131px, transparent 132px);
    opacity: 0.6;
    animation: rangoli-spin 90s linear infinite;
    pointer-events: none;
}

.cta-inner {
    position: relative;
    text-align: center;
    z-index: 2;
}

.cta-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    color: var(--white);
}

.cta-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 2rem;
    max-width: 580px;
}

.cta-form {
    display: flex;
    gap: 0.6rem;
    max-width: 520px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem;
    border-radius: 999px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-form.is-invalid {
    border-color: #ffb199;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.25);
}

.cta-form input {
    flex: 1;
    background: transparent;
    border: 0;
    outline: 0;
    color: var(--white);
    padding: 0 1rem;
    font-family: inherit;
    font-size: 1rem;
    min-width: 0;
}

.cta-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.cta-note {
    margin: 1rem 0 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.cta-note.is-success { color: #c9ffe1; }
.cta-note.is-error   { color: #ffd5c2; }

@media (max-width: 560px) {
    .cta-form {
        flex-direction: column;
        border-radius: var(--radius-lg);
        padding: 0.75rem;
    }

    .cta-form input {
        padding: 0.85rem 1rem;
        text-align: center;
    }

    .cta-form .btn {
        width: 100%;
    }
}

/* =====================================================
   Footer
   ===================================================== */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 4rem 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

@media (max-width: 720px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-brand .brand-text {
    color: var(--white);
    font-size: 1.4rem;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 560px) {
    .footer-cols {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-col h4 {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 0 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-col a,
.footer-col p {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
    padding: 0.15rem 0;
}

.footer-col a:hover {
    color: var(--saffron);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
    font-size: 0.85rem;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
}

/* =====================================================
   Reveal on scroll
   ===================================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .hero-rangoli,
    .cta-rangoli {
        animation: none;
    }

    .hero-word,
    .hero-sub,
    .hero-cta,
    .hero-trust {
        opacity: 1;
        transform: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
