/* =========================================================
   Tebibyte Infotech - Global Styles
   Palette derived from brand logo (deep indigo -> magenta -> orange)
   ========================================================= */

:root {
    --c-indigo:   #1a0b3d;
    --c-deep:     #2d0a4e;
    --c-purple:   #4a148c;
    --c-magenta:  #8e24aa;
    --c-pink:     #d81b60;
    --c-orange:   #ff6f00;
    --c-amber:    #ffa726;
    --c-gold:     #ffd54f;
    --c-cream:    #fff8e7;
    --c-white:    #ffffff;
    --c-ink:      #0c0420;
    --c-muted:    #6b5b8a;
    --c-card:     #ffffff;
    --c-bg:       #faf7ff;

    --grad-primary:  linear-gradient(135deg, #1a0b3d 0%, #4a148c 35%, #8e24aa 65%, #ff6f00 100%);
    --grad-accent:   linear-gradient(135deg, #8e24aa 0%, #ff6f00 100%);
    --grad-soft:     linear-gradient(135deg, #f3e5f5 0%, #fff3e0 100%);
    --grad-dark:     linear-gradient(160deg, #0c0420 0%, #1a0b3d 50%, #2d0a4e 100%);

    --shadow-sm:  0 2px 8px rgba(26,11,61,.08);
    --shadow-md:  0 8px 24px rgba(26,11,61,.12);
    --shadow-lg:  0 20px 60px rgba(26,11,61,.18);
    --shadow-glow:0 0 40px rgba(142,36,170,.35);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --t-fast: .2s ease;
    --t-med:  .35s cubic-bezier(.4,0,.2,1);
    --t-slow: .6s cubic-bezier(.4,0,.2,1);

    --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--c-ink);
    background: var(--c-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-purple); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-orange); }

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--c-ink);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); margin-bottom: .75rem; }
h4 { font-size: 1.15rem; margin-bottom: .5rem; }

p { margin-bottom: 1rem; color: #3d2b5e; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow { max-width: 880px; }

/* ===================== Navbar ===================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(142,36,170,.1);
    transition: all var(--t-med);
}
.navbar.scrolled {
    box-shadow: var(--shadow-sm);
    background: rgba(255,255,255,.95);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--c-ink);
}
.nav-brand img { height: 40px; width: 40px; object-fit: contain; }
.nav-brand span {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
    align-items: center;
}
.nav-links a {
    color: var(--c-ink);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: .95rem;
    position: relative;
    transition: all var(--t-fast);
}
.nav-links a:hover { color: var(--c-magenta); background: rgba(142,36,170,.06); }
.nav-links a.active {
    color: var(--c-white);
    background: var(--grad-accent);
}
.nav-cta {
    padding: 10px 22px !important;
    background: var(--grad-accent);
    color: white !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(255,111,0,.35);
    transition: transform var(--t-fast), box-shadow var(--t-fast) !important;
}
.nav-cta:hover { transform: translateY(-2px); background: var(--grad-accent) !important; color: white !important; box-shadow: 0 6px 20px rgba(255,111,0,.5); }

.nav-toggle {
    display: none;
    background: none; border: none;
    cursor: pointer;
    width: 40px; height: 40px;
    flex-direction: column; justify-content: center;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--c-ink);
    border-radius: 2px;
    transition: all var(--t-fast);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== Buttons ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--t-fast);
    font-family: inherit;
    text-decoration: none;
}
.btn-primary {
    background: var(--grad-accent);
    color: white;
    box-shadow: 0 6px 20px rgba(255,111,0,.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,111,0,.5);
    color: white;
}
.btn-outline {
    background: transparent;
    color: var(--c-purple);
    border: 2px solid var(--c-purple);
}
.btn-outline:hover {
    background: var(--c-purple);
    color: white;
    transform: translateY(-2px);
}
.btn-ghost {
    background: rgba(255,255,255,.1);
    color: white;
    border: 1px solid rgba(255,255,255,.3);
    backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); color: white; transform: translateY(-2px); }

/* ===================== Hero ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--grad-dark);
    color: white;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(142,36,170,.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,111,0,.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(216,27,96,.2) 0%, transparent 60%);
    animation: auraShift 20s ease-in-out infinite;
}
@keyframes auraShift {
    0%,100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.15) rotate(5deg); opacity: .85; }
}
.hero-content { position: relative; z-index: 2; }
.hero h1 { color: white; margin-bottom: 1.5rem; }
.hero h1 .gradient-text {
    background: linear-gradient(135deg, #ffd54f 0%, #ff6f00 50%, #d81b60 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.hero-sub {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    color: rgba(255,255,255,.85);
    max-width: 640px;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 24px;
    max-width: 720px;
}
.stat .num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd54f, #ff6f00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat .label {
    font-size: .9rem;
    color: rgba(255,255,255,.7);
    margin-top: 4px;
}

/* Floating orbs decoration */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: .7;
}
.orb-1 { width: 400px; height: 400px; top: -150px; right: -100px; background: #8e24aa; animation: float 15s ease-in-out infinite; }
.orb-2 { width: 300px; height: 300px; bottom: -100px; left: -80px; background: #ff6f00; animation: float 18s ease-in-out infinite reverse; }
@keyframes float {
    0%,100% { transform: translate(0,0); }
    50% { transform: translate(40px,-30px); }
}

/* ===================== Sections ===================== */
section { padding: 96px 0; position: relative; }
.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 64px;
}
.section-eyebrow {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(142,36,170,.1);
    color: var(--c-magenta);
    border-radius: 100px;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-header p {
    font-size: 1.1rem;
    color: #4a3868;
    margin-top: 12px;
}

/* ===================== Cards Grid ===================== */
.grid {
    display: grid;
    gap: 28px;
}
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); }

.card {
    background: var(--c-card);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    transition: all var(--t-med);
    border: 1px solid rgba(142,36,170,.08);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--grad-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-med);
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(142,36,170,.25);
}
.card:hover::before { transform: scaleX(1); }

.card-icon {
    width: 64px; height: 64px;
    border-radius: var(--radius-md);
    background: var(--grad-accent);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(142,36,170,.3);
}
.card h3 { margin-bottom: 10px; }
.card p { color: #4a3868; margin-bottom: 0; }
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-weight: 600;
    color: var(--c-magenta);
}
.card-link:hover { color: var(--c-orange); gap: 10px; }

/* ===================== Product Cards ===================== */
.product-card {
    background: var(--c-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--t-med);
    border: 1px solid rgba(142,36,170,.08);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.product-header {
    padding: 40px 32px 28px;
    color: white;
    position: relative;
    overflow: hidden;
}
.product-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.18), transparent 60%);
}
.product-header h3 {
    color: white;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}
.product-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,.2);
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.product-body {
    padding: 28px 32px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-body p { flex: 1; }
.product-features {
    list-style: none;
    margin: 16px 0 24px;
}
.product-features li {
    padding: 6px 0;
    color: #4a3868;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .95rem;
}
.product-features li::before {
    content: '';
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--grad-accent);
    flex-shrink: 0;
    background-image:
        linear-gradient(135deg, #8e24aa, #ff6f00),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M6.5 10.5l-3-3 1.4-1.4L6.5 7.7l4.6-4.6 1.4 1.4z'/%3E%3C/svg%3E");
}
.product-link {
    color: var(--c-magenta);
    font-weight: 600;
    font-size: .95rem;
}

/* Per-product header gradients */
.h-aarogya  { background: linear-gradient(135deg, #00897b, #00acc1); }
.h-veda     { background: linear-gradient(135deg, #4a148c, #8e24aa); }
.h-tathaastu{ background: linear-gradient(135deg, #ff6f00, #d81b60); }
.h-api      { background: linear-gradient(135deg, #1a0b3d, #4a148c); }
.h-traffic  { background: linear-gradient(135deg, #d81b60, #ff6f00); }
.h-ai       { background: linear-gradient(135deg, #2d0a4e, #00897b); }

/* ===================== CTA Band ===================== */
.cta-band {
    background: var(--grad-dark);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(142,36,170,.5) 0%, transparent 40%),
        radial-gradient(circle at 85% 50%, rgba(255,111,0,.4) 0%, transparent 40%);
}
.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-inner h2 { color: white; margin-bottom: .5rem; }
.cta-inner p { color: rgba(255,255,255,.85); margin: 0; }

/* ===================== About / Feature rows ===================== */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-visual {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    background: var(--grad-accent);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}
.feature-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.3), transparent 50%);
}
.feature-visual .emoji {
    font-size: 6rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,.2));
}

/* ===================== Values / Stats ===================== */
.values {
    background: var(--grad-soft);
    border-radius: var(--radius-xl);
    padding: 64px 48px;
    margin: 48px 0;
}
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}
.value-item { text-align: center; }
.value-item .icon {
    width: 72px; height: 72px;
    margin: 0 auto 16px;
    border-radius: var(--radius-md);
    background: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px;
    box-shadow: var(--shadow-md);
}
.value-item h4 { font-size: 1.15rem; }

/* ===================== Timeline ===================== */
.timeline {
    position: relative;
    padding-left: 40px;
    margin: 32px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 12px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--c-magenta), var(--c-orange));
}
.timeline-item {
    position: relative;
    padding-bottom: 36px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px; top: 6px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--grad-accent);
    box-shadow: 0 0 0 4px white, 0 0 0 5px rgba(142,36,170,.3);
}
.timeline-item h4 { color: var(--c-purple); }
.timeline-item .date {
    display: inline-block;
    font-size: .85rem;
    color: var(--c-orange);
    font-weight: 600;
    margin-bottom: 4px;
}

/* ===================== Contact ===================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}
.contact-info {
    background: var(--grad-dark);
    color: white;
    padding: 48px 40px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}
.contact-info::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(255,111,0,.3), transparent 50%);
}
.contact-info > * { position: relative; z-index: 1; }
.contact-info h2 { color: white; }
.contact-info p { color: rgba(255,255,255,.85); }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.contact-item:last-child { border-bottom: none; }
.contact-item .icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,.12);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}
.contact-item h4 { color: white; font-size: 1rem; margin-bottom: 4px; }
.contact-item p { color: rgba(255,255,255,.85); margin: 0; font-size: .95rem; }

.contact-form {
    background: var(--c-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(142,36,170,.08);
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: .9rem;
    color: var(--c-ink);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8e0f0;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
    background: white;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--c-magenta);
    box-shadow: 0 0 0 4px rgba(142,36,170,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note {
    font-size: .85rem;
    color: var(--c-muted);
    margin-top: 8px;
}

/* ===================== Footer ===================== */
.footer {
    background: var(--grad-dark);
    color: rgba(255,255,255,.8);
    padding: 72px 0 24px;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--grad-accent);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
}
.footer-brand img { height: 40px; width: 40px; }
.footer h5 {
    color: white;
    font-size: 1rem;
    margin-bottom: 18px;
    font-family: var(--font-display);
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a {
    color: rgba(255,255,255,.7);
    font-size: .92rem;
    transition: color var(--t-fast);
}
.footer a:hover { color: var(--c-amber); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: .88rem;
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--t-fast);
    font-size: 16px;
}
.footer-social a:hover {
    background: var(--grad-accent);
    transform: translateY(-3px);
    color: white;
}

/* ===================== Page Header ===================== */
.page-header {
    padding: 160px 0 80px;
    background: var(--grad-dark);
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(142,36,170,.5) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255,111,0,.4) 0%, transparent 50%);
}
.page-header > * { position: relative; z-index: 1; }
.page-header h1 { color: white; }
.page-header .lead {
    font-size: 1.15rem;
    color: rgba(255,255,255,.85);
    max-width: 680px;
    margin: 16px auto 0;
}
.breadcrumb {
    margin-top: 16px;
    font-size: .9rem;
    color: rgba(255,255,255,.7);
}
.breadcrumb a { color: var(--c-amber); }

/* ===================== Legal / Prose ===================== */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin-top: 48px; color: var(--c-purple); }
.prose h3 { margin-top: 32px; color: var(--c-ink); }
.prose p { color: #3d2b5e; }
.prose ul, .prose ol { margin: 16px 0 16px 24px; color: #3d2b5e; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--c-ink); }
.prose .updated {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(142,36,170,.08);
    color: var(--c-purple);
    border-radius: 100px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

/* ===================== Reveal animation ===================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== Utility ===================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.bg-soft { background: var(--grad-soft); }

/* ===================== Responsive ===================== */
@media (max-width: 960px) {
    .feature-row { grid-template-columns: 1fr; gap: 32px; }
    .feature-row.reverse { direction: ltr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
    .nav-links {
        position: fixed;
        top: 68px; right: 0;
        width: 85%; max-width: 320px;
        height: calc(100vh - 68px);
        background: white;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 24px;
        box-shadow: -20px 0 40px rgba(0,0,0,.1);
        transform: translateX(100%);
        transition: transform var(--t-med);
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links a { padding: 12px 18px; font-size: 1rem; }
    .nav-toggle { display: flex; }

    .hero { padding: 110px 0 60px; min-height: auto; }
    section { padding: 64px 0; }
    .values { padding: 40px 24px; }
    .contact-info, .contact-form { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .cta-inner { text-align: center; justify-content: center; }
    .page-header { padding: 130px 0 60px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}
