:root {
    --aqua: #087ea4;
    --aqua-2: #0aa6c7;
    --aqua-dark: #073b55;
    --ink: #17252d;
    --muted: #61747d;
    --surface: #ffffff;
    --surface-soft: #eef9fc;
    --line: #dceaf0;
    --success: #168a55;
    --warning: #f59e0b;
    --danger: #c0392b;
    --shadow: 0 18px 50px rgba(7, 59, 85, 0.11);
    --radius: 22px;
    --radius-sm: 14px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: Inter, "Noto Sans Sinhala", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(220,234,240,.9);
}
.header-inner { min-height: 76px; display: flex; align-items: center; gap: 24px; }
.brand { flex: 0 0 auto; }
.brand img { width: 176px; }
.main-nav { display: flex; align-items: center; gap: 21px; margin-left: auto; font-size: 14px; font-weight: 700; color: #34515e; }
.main-nav a { padding: 9px 0; position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: 3px; width: 0; height: 2px; background: var(--aqua-2); transition: width .2s ease; }
.main-nav a:hover::after { width: 100%; }
.header-call { background: var(--aqua-dark); color: white; padding: 11px 16px; border-radius: 999px; font-weight: 800; font-size: 13px; white-space: nowrap; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; background: white; padding: 10px; margin-left: auto; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--aqua-dark); margin: 4px 0; }

.hero {
    position: relative;
    overflow: hidden;
    padding: 70px 0 55px;
    background:
        radial-gradient(circle at 90% 12%, rgba(10,166,199,.18), transparent 30%),
        linear-gradient(140deg, #f8fdff 0%, #edfafd 62%, #fff 100%);
}
.hero::before { content: ""; position: absolute; inset: auto -120px -180px auto; width: 420px; height: 420px; border: 60px solid rgba(8,126,164,.05); border-radius: 50%; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 42px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--aqua); font-size: 12px; letter-spacing: .12em; font-weight: 900; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--aqua-2); }
h1, h2, h3 { line-height: 1.18; margin-top: 0; }
h1 { font-size: clamp(38px, 6vw, 68px); margin: 16px 0 20px; letter-spacing: -.035em; color: var(--aqua-dark); }
h2 { font-size: clamp(29px, 4vw, 44px); letter-spacing: -.025em; color: var(--aqua-dark); }
h3 { font-size: 21px; color: var(--aqua-dark); }
.hero-copy > p { font-size: 18px; color: #4d6873; max-width: 650px; margin: 0 0 26px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
.hero-pills span { background: white; border: 1px solid var(--line); box-shadow: 0 6px 18px rgba(7,59,85,.06); border-radius: 999px; padding: 8px 12px; font-size: 13px; font-weight: 750; }
.price-box { display: flex; align-items: flex-end; gap: 18px; margin: 28px 0; }
.price-box small { display: block; color: var(--muted); font-weight: 800; letter-spacing: .08em; }
.price-box strong { display: block; color: var(--aqua-dark); font-size: clamp(38px, 5vw, 58px); line-height: 1; }
.price-box del { color: #85959c; font-weight: 700; margin-bottom: 7px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-flex; justify-content: center; align-items: center; gap: 9px; min-height: 50px; padding: 12px 19px; border-radius: 13px; border: 1px solid transparent; font-weight: 850; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--aqua); color: white; box-shadow: 0 12px 28px rgba(8,126,164,.24); }
.btn-primary:hover { background: #056e91; }
.btn-dark { background: var(--aqua-dark); color: #fff; }
.btn-outline { border-color: #b8d5df; background: rgba(255,255,255,.7); color: var(--aqua-dark); }
.btn-block { width: 100%; }
.hero-media { position: relative; min-height: 480px; display: grid; place-items: center; }
.hero-product-card { position: relative; width: min(100%, 500px); background: rgba(255,255,255,.84); border: 1px solid rgba(255,255,255,.95); border-radius: 36px; box-shadow: var(--shadow); padding: 30px; }
.hero-product-card img { width: 100%; max-height: 440px; object-fit: contain; }
.floating-badge { position: absolute; padding: 12px 15px; background: white; border-radius: 15px; box-shadow: 0 12px 30px rgba(7,59,85,.13); font-size: 13px; font-weight: 800; }
.floating-badge.top { top: 22px; left: -10px; }
.floating-badge.bottom { right: -8px; bottom: 28px; }

.trust-strip { background: var(--aqua-dark); color: white; }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.trust-item { padding: 18px 14px; display: flex; align-items: center; justify-content: center; gap: 9px; text-align: center; font-size: 13px; font-weight: 800; border-right: 1px solid rgba(255,255,255,.13); }
.trust-item:last-child { border-right: 0; }
.trust-dot { width: 9px; height: 9px; border-radius: 50%; background: #5eead4; box-shadow: 0 0 0 5px rgba(94,234,212,.1); }

.section { padding: 82px 0; }
.section-soft { background: var(--surface-soft); }
.section-dark { background: var(--aqua-dark); color: white; }
.section-dark h2, .section-dark h3 { color: white; }
.section-head { max-width: 760px; margin-bottom: 38px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head p { color: var(--muted); font-size: 17px; }
.section-dark .section-head p { color: rgba(255,255,255,.72); }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: 0 10px 32px rgba(7,59,85,.055); }
.card p { color: var(--muted); }
.icon-card .icon { width: 48px; height: 48px; border-radius: 14px; background: var(--surface-soft); color: var(--aqua); display: grid; place-items: center; font-size: 22px; margin-bottom: 18px; }
.number-card { position: relative; overflow: hidden; }
.number-card .number { color: var(--aqua-2); font-weight: 950; font-size: 42px; line-height: 1; opacity: .22; position: absolute; top: 18px; right: 20px; }

.check-list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 31px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: #dcfce7; color: var(--success); font-weight: 950; font-size: 13px; }
.check-list.compact { gap: 8px; margin: 16px 0; }

.media-frame { background: white; border-radius: 28px; border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow); }
.media-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.media-caption { padding: 16px 18px; color: var(--muted); font-size: 13px; }

.offer-card { background: linear-gradient(140deg, #073b55, #087ea4); color: white; border-radius: 30px; padding: 38px; box-shadow: 0 24px 60px rgba(7,59,85,.22); }
.offer-card h2, .offer-card h3 { color: white; }
.offer-price { font-size: clamp(45px, 7vw, 78px); font-weight: 950; line-height: 1; margin: 18px 0 24px; }
.offer-card .check-list li::before { background: rgba(255,255,255,.16); color: white; }
.offer-card p { color: rgba(255,255,255,.76); }

.process { counter-reset: step; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.process .card { counter-increment: step; position: relative; padding-top: 64px; }
.process .card::before { content: counter(step); position: absolute; left: 25px; top: 20px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--aqua); color: white; font-weight: 900; }

.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-auto-rows: 230px; gap: 14px; }
.gallery-item { border-radius: 20px; overflow: hidden; position: relative; background: #dceff5; }
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item span { position: absolute; left: 12px; bottom: 12px; background: rgba(7,59,85,.86); color: white; border-radius: 999px; padding: 7px 11px; font-size: 12px; font-weight: 800; }

.faq-list { display: grid; gap: 12px; }
details { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 0 20px; }
summary { cursor: pointer; list-style: none; padding: 18px 35px 18px 0; font-weight: 850; color: var(--aqua-dark); position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 0; top: 14px; font-size: 24px; color: var(--aqua); }
details[open] summary::after { content: "−"; }
details p { color: var(--muted); margin-top: 0; }

.lead-card { width: min(calc(100% - 32px), var(--container)); margin: 70px auto; display: grid; grid-template-columns: .85fr 1.15fr; overflow: hidden; border-radius: 30px; background: var(--aqua-dark); box-shadow: 0 28px 70px rgba(7,59,85,.22); }
.lead-card-copy { padding: 45px; color: white; background: radial-gradient(circle at 20% 0%, rgba(10,166,199,.35), transparent 40%); }
.lead-card-copy h2 { color: white; margin: 14px 0; }
.lead-card-copy p { color: rgba(255,255,255,.72); }
.lead-card-copy .eyebrow { color: #7dd3fc; }
.lead-card-copy .check-list li::before { background: rgba(255,255,255,.13); color: white; }
.lead-form { background: white; padding: 38px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.lead-form > label, .lead-form fieldset, .lead-form .btn, .lead-form .form-note, .lead-form .form-status { grid-column: span 2; }
.lead-form > label:nth-of-type(1), .lead-form > label:nth-of-type(2), .lead-form > label:nth-of-type(3), .lead-form > label:nth-of-type(4) { grid-column: span 1; }
.lead-form label > span, .lead-form legend { display: block; margin-bottom: 7px; color: #35535f; font-size: 13px; font-weight: 800; }
.lead-form input[type="text"], .lead-form input[type="tel"], .lead-form select, .lead-form textarea {
    width: 100%; min-height: 50px; border: 1px solid #cfe0e7; border-radius: 12px; padding: 11px 13px; background: #fbfdfe; outline: none;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--aqua-2); box-shadow: 0 0 0 4px rgba(10,166,199,.10); }
.lead-form fieldset { border: 0; padding: 0; margin: 0; }
.choice-row { display: flex; gap: 10px; flex-wrap: wrap; }
.choice-row label { border: 1px solid #cfe0e7; border-radius: 999px; padding: 8px 12px; cursor: pointer; font-size: 13px; font-weight: 750; }
.form-note { color: var(--muted); font-size: 12px; margin: 0; }
.form-status { min-height: 0; font-size: 13px; font-weight: 750; }
.form-status.error { color: var(--danger); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.page-hero { padding: 70px 0 45px; background: linear-gradient(145deg, #f4fcff, #e9f8fc); border-bottom: 1px solid var(--line); }
.page-hero .breadcrumbs { color: var(--muted); font-size: 13px; font-weight: 750; margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(36px, 5vw, 58px); max-width: 850px; }
.page-hero p { max-width: 760px; font-size: 18px; color: #52707b; }

.spec-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 18px; border: 1px solid var(--line); background: white; }
.spec-table th, .spec-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.spec-table th { width: 40%; color: var(--aqua-dark); background: #f7fbfc; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }

.plan-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.plan-card { border: 1px solid var(--line); border-radius: 22px; background: white; padding: 22px; position: relative; }
.plan-card.featured { border: 2px solid var(--aqua); box-shadow: 0 16px 40px rgba(8,126,164,.14); }
.plan-card .tag { display: inline-block; background: var(--surface-soft); color: var(--aqua); border-radius: 999px; padding: 5px 9px; font-size: 11px; font-weight: 900; }
.plan-card strong { display: block; color: var(--aqua-dark); font-size: 28px; margin-top: 12px; }
.plan-card .total { border-top: 1px solid var(--line); padding-top: 13px; margin-top: 15px; color: var(--muted); font-size: 13px; }

.alert { padding: 14px 16px; border-radius: 13px; margin-bottom: 18px; font-weight: 750; font-size: 14px; }
.alert-error { background: #fff1f0; color: #9d2c21; border: 1px solid #ffd4cf; }
.alert-success { background: #ecfdf3; color: #11633e; border: 1px solid #b9f2d1; }

.thank-you { min-height: 70vh; display: grid; place-items: center; padding: 70px 0; background: var(--surface-soft); }
.thank-card { width: min(calc(100% - 32px), 720px); background: white; border-radius: 30px; padding: 50px; text-align: center; box-shadow: var(--shadow); }
.success-mark { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 20px; border-radius: 50%; background: #dcfce7; color: var(--success); font-size: 34px; font-weight: 950; }

.site-footer { background: #052f45; color: rgba(255,255,255,.74); padding: 58px 0 96px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 34px; }
.footer-grid h3 { color: white; font-size: 16px; }
.footer-grid a, .footer-grid span { display: block; margin: 8px 0; font-size: 14px; }
.footer-grid a:hover { color: white; }
.footer-grid p { max-width: 360px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 35px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; font-size: 12px; }
.mobile-cta-bar { display: none; }

/* Landing pages */
.lp-body .site-header, .lp-body .site-footer { display: none; }
.lp-topbar { background: var(--aqua-dark); color: white; padding: 12px 0; font-size: 13px; font-weight: 800; }
.lp-topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 15px; }
.lp-hero { padding: 42px 0; background: linear-gradient(150deg, #effbfe, #fff); }
.lp-hero-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 32px; align-items: center; }
.lp-logo { width: 165px; margin-bottom: 24px; }
.lp-mini-proof { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 25px; }
.lp-mini-proof span { background: white; border: 1px solid var(--line); border-radius: 13px; padding: 10px; text-align: center; font-size: 12px; font-weight: 800; }
.lp-form-wrap { background: white; border: 1px solid var(--line); border-radius: 25px; padding: 24px; box-shadow: var(--shadow); }
.lp-form-wrap .lead-form { display: block; padding: 0; }
.lp-form-wrap .lead-form > * { margin-bottom: 13px; }
.lp-form-wrap .choice-row { margin-top: 5px; }
.lp-form-wrap h2 { font-size: 26px; }
.lp-footer { background: #052f45; color: rgba(255,255,255,.74); padding: 22px 0 90px; text-align: center; font-size: 12px; }

/* Admin */
.admin-body { background: #f3f7f9; }
.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 250px 1fr; }
.admin-sidebar { background: #052f45; color: white; padding: 25px 18px; }
.admin-sidebar img { width: 168px; margin-bottom: 28px; }
.admin-sidebar nav { display: grid; gap: 8px; }
.admin-sidebar a { color: rgba(255,255,255,.74); padding: 11px 13px; border-radius: 10px; font-weight: 750; font-size: 14px; }
.admin-sidebar a:hover, .admin-sidebar a.active { color: white; background: rgba(255,255,255,.1); }
.admin-main { padding: 30px; min-width: 0; }
.admin-top { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-bottom: 25px; }
.admin-top h1 { font-size: 32px; margin: 0; }
.metric-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.metric { background: white; border-radius: 18px; border: 1px solid var(--line); padding: 20px; }
.metric span { color: var(--muted); font-size: 13px; font-weight: 750; }
.metric strong { display: block; font-size: 32px; color: var(--aqua-dark); margin-top: 7px; }
.admin-card { background: white; border: 1px solid var(--line); border-radius: 20px; padding: 24px; margin-top: 20px; overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 900px; }
.admin-table th, .admin-table td { padding: 12px 10px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: 13px; }
.admin-table th { color: #49616b; background: #f8fbfc; }
.status-badge { display: inline-flex; border-radius: 999px; padding: 4px 9px; background: #eef6f8; color: var(--aqua-dark); font-size: 11px; font-weight: 850; }
.settings-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.settings-grid label { display: block; }
.settings-grid label span { display: block; font-size: 13px; font-weight: 800; margin-bottom: 6px; }
.settings-grid input, .settings-grid textarea, .settings-grid select { width: 100%; border: 1px solid #cfe0e7; border-radius: 10px; padding: 10px 12px; }
.login-page { min-height: 100vh; display: grid; place-items: center; padding: 30px; background: linear-gradient(145deg,#eaf9fc,#fff); }
.login-card { width: min(100%, 440px); background: white; border: 1px solid var(--line); border-radius: 25px; padding: 34px; box-shadow: var(--shadow); }
.login-card img { width: 180px; margin: 0 auto 22px; }
.login-card label { display: block; margin-bottom: 14px; }
.login-card label span { display: block; font-size: 13px; font-weight: 800; margin-bottom: 6px; }
.login-card input { width: 100%; min-height: 48px; border: 1px solid #cfe0e7; border-radius: 11px; padding: 10px 12px; }

@media (max-width: 1000px) {
    .main-nav { position: fixed; inset: 77px 16px auto; display: none; flex-direction: column; align-items: stretch; gap: 0; background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); padding: 10px; }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 12px; }
    .header-call { display: none; }
    .menu-toggle { display: block; }
    .hero-grid, .grid-2, .lp-hero-grid { grid-template-columns: 1fr; }
    .hero-media { min-height: 410px; }
    .trust-grid { grid-template-columns: repeat(3,1fr); }
    .grid-4 { grid-template-columns: repeat(2,1fr); }
    .plan-grid { grid-template-columns: repeat(2,1fr); }
    .lead-card { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2,1fr); }
    .admin-shell { grid-template-columns: 1fr; }
    .admin-sidebar { position: static; }
    .admin-sidebar nav { grid-template-columns: repeat(4,1fr); }
    .metric-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 700px) {
    .container { width: min(calc(100% - 24px), var(--container)); }
    .site-header .container { width: min(calc(100% - 20px), var(--container)); }
    .header-inner { min-height: 68px; }
    .brand img { width: 154px; }
    .hero { padding: 42px 0 36px; }
    .hero-grid { gap: 24px; }
    h1 { font-size: 39px; }
    h2 { font-size: 31px; }
    .hero-copy > p { font-size: 16px; }
    .price-box { align-items: flex-start; flex-direction: column; gap: 8px; }
    .hero-media { min-height: 340px; }
    .hero-product-card { padding: 18px; border-radius: 25px; }
    .floating-badge { font-size: 11px; padding: 9px 11px; }
    .floating-badge.top { left: -2px; top: 8px; }
    .floating-badge.bottom { right: -2px; bottom: 10px; }
    .trust-grid { grid-template-columns: repeat(2,1fr); }
    .trust-item { padding: 14px 8px; font-size: 11px; }
    .section { padding: 58px 0; }
    .grid-3, .grid-4, .process, .plan-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
    .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
    .offer-card { padding: 27px; }
    .lead-card { width: min(calc(100% - 24px), var(--container)); margin: 48px auto; border-radius: 23px; }
    .lead-card-copy, .lead-form { padding: 26px 20px; }
    .lead-form { grid-template-columns: 1fr; }
    .lead-form > label, .lead-form > label:nth-of-type(1), .lead-form > label:nth-of-type(2), .lead-form > label:nth-of-type(3), .lead-form > label:nth-of-type(4), .lead-form fieldset, .lead-form .btn, .lead-form .form-note, .lead-form .form-status { grid-column: span 1; }
    .choice-row { gap: 6px; }
    .choice-row label { padding: 7px 9px; font-size: 12px; }
    .page-hero { padding: 48px 0 32px; }
    .page-hero p { font-size: 16px; }
    .spec-table th, .spec-table td { display: block; width: 100%; }
    .spec-table th { border-bottom: 0; padding-bottom: 4px; }
    .spec-table td { padding-top: 4px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
    .site-footer { padding-bottom: 100px; }
    .mobile-cta-bar { display: grid; grid-template-columns: repeat(3,1fr); position: fixed; z-index: 80; left: 8px; right: 8px; bottom: 8px; border-radius: 16px; overflow: hidden; background: white; box-shadow: 0 14px 42px rgba(7,59,85,.25); border: 1px solid var(--line); }
    .mobile-cta-bar a { min-height: 52px; display: grid; place-items: center; font-size: 12px; font-weight: 900; color: var(--aqua-dark); }
    .mobile-cta-bar .primary { background: var(--success); color: white; }
    .lp-mini-proof { grid-template-columns: 1fr; }
    .lp-topbar .container { flex-direction: column; text-align: center; }
    .lp-hero { padding: 28px 0; }
    .admin-main { padding: 18px; }
    .admin-sidebar nav { grid-template-columns: repeat(2,1fr); }
    .metric-grid, .settings-grid { grid-template-columns: 1fr; }
    .admin-top { align-items: flex-start; flex-direction: column; }
    .thank-card { padding: 34px 22px; }
}
