/* SyncMeds website — soft pastel system matching the app */

:root {
    --primary: #007AFF;
    --primary-dark: #0051D5;
    --purple: #AF52DE;
    --green: #34C759;
    --orange: #FF9500;
    --red: #FF3B30;
    --bg: #FFFFFF;
    --bg-alt: #F2F2F7;
    --bg-dark: #1C1C1E;
    --text: #1C1C1E;
    --text-secondary: #555555; /* was #6E6E73 — bumped to 7:1 contrast for low vision */
    --border: rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.12);
    --radius: 18px;
    --radius-lg: 28px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

/* Focus states for keyboard / switch-access users */
*:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Skip-to-content link (hidden until focused) */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--primary);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    z-index: 1000;
    transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Links */
a { color: var(--primary); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.75; }
.link { color: var(--primary); font-weight: 600; }

/* Navigation */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
}
.nav-brand img { border-radius: 22.37%; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 15px;
    font-weight: 500;
}
.nav-links a { color: var(--text-secondary); }
.nav-links a:hover { color: var(--text); }
.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
}
.nav-cta:hover { background: var(--primary-dark); opacity: 1; }

/* Hero */
.hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 40px 100px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 30%, rgba(255,255,255,0.15) 55%, rgba(255,255,255,0) 80%),
        url('images/hero-background.png') 30% center / cover no-repeat;
    border-radius: 0 0 40px 40px;
}
.hero h1 {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #007AFF, #AF52DE);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-sub {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 560px;
    line-height: 1.4;
}
.hero-cta {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.btn-android {
    background: #34A853;
}
.btn-android:hover {
    background: #2d9249;
}
.hero-note {
    font-size: 16px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.inline-icon { vertical-align: middle; display: inline-block; }

/* Phone mockup — interactive demo */
.hero-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.phone-mockup {
    width: 340px;
    height: 720px;
    background: linear-gradient(135deg, #2c2c2e, #1c1c1e);
    border-radius: 52px;
    padding: 14px;
    box-shadow: var(--shadow-lg), 0 0 0 2px rgba(255,255,255,0.05);
    position: relative;
}
.phone-screen {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}
.phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 118px;
    height: 34px;
    background: #000;
    border-radius: 20px;
    z-index: 3;
}
.phone-status-bar {
    padding: 18px 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    flex-shrink: 0;
    z-index: 4;
    position: relative;
}
.phone-status-right {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.phone-status-right svg { display: block; }
.phone-content {
    flex: 1;
    padding: 40px 24px 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

/* Screen base */
.phone-screen-view {
    flex: 1;
    display: flex;
    flex-direction: column;
    animation: phoneFadeIn 0.35s ease-out;
}
@keyframes phoneFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Today screen */
.phone-header {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}
.phone-stat-strip {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}
.phone-stat {
    flex: 1;
    padding: 12px;
    background: #F2F2F7;
    border-radius: 14px;
    text-align: center;
}
.phone-stat-num {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary);
}
.phone-stat-lbl {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 600;
}
.phone-dose-card {
    background: #F7F7FA;
    border: 1.5px solid transparent;
    border-radius: 18px;
    padding: 12px 14px;
    margin-bottom: 8px;
    transition: all 0.3s;
}
.phone-dose-card.taken {
    background: rgba(52, 199, 89, 0.1);
    border-color: rgba(52, 199, 89, 0.3);
    opacity: 0.7;
}
.phone-dose-card.next {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.18), rgba(175, 82, 222, 0.14));
    border-color: var(--primary);
    box-shadow: 0 8px 22px rgba(0, 122, 255, 0.2);
}
.phone-dose-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.phone-dose-emoji,
.phone-dose-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    flex-shrink: 0;
    overflow: hidden;
}
.phone-dose-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}
.phone-dose-info { flex: 1; min-width: 0; }
.phone-dose-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.phone-dose-sub {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
}
.phone-dose-time {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.phone-dose-card.taken .phone-dose-time { color: var(--green); }
.phone-take-btn {
    margin-top: 2px;
    padding: 10px;
    background: var(--green);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(52, 199, 89, 0.35);
    transition: transform 0.1s;
}
.phone-take-btn:active { transform: scale(0.97); }
.phone-taken-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 2px;
    padding: 8px;
    background: rgba(52, 199, 89, 0.18);
    color: var(--green);
    border-radius: 12px;
    font-weight: 800;
    font-size: 12px;
}

/* All done celebration */
.phone-celebrate {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
}
.phone-celebrate-icon {
    animation: pop 0.6s ease-out;
    filter: drop-shadow(0 8px 24px rgba(52, 199, 89, 0.35));
}
@keyframes pop {
    0% { transform: scale(0.5); opacity: 0; }
    60% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); }
}
.phone-celebrate-title {
    font-size: 30px;
    font-weight: 900;
    color: var(--green);
    letter-spacing: -0.02em;
}
.phone-celebrate-sub {
    font-size: 16px;
    color: var(--text-secondary);
    padding: 0 24px;
}

/* Tab bar */
.phone-tabbar {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 8px 4px 20px;
    background: rgba(250, 250, 252, 0.98);
    backdrop-filter: blur(10px);
    border-top: 0.5px solid rgba(0,0,0,0.1);
    flex-shrink: 0;
}
.phone-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 10px;
    color: #8E8E93;
    font-weight: 500;
    padding: 6px 12px;
    min-width: 60px;
}
.phone-tab-icon {
    width: 26px;
    height: 26px;
}
.phone-tab-active { color: var(--primary); }

/* Toast (ephemeral "Marked taken!" confirmation) */
.phone-toast {
    position: absolute;
    bottom: 84px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(28, 28, 30, 0.92);
    color: white;
    padding: 12px 18px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: toastSlide 2s ease-out forwards;
    pointer-events: none;
    z-index: 10;
}
@keyframes toastSlide {
    0% { transform: translateX(-50%) translateY(20px); opacity: 0; }
    15% { transform: translateX(-50%) translateY(0); opacity: 1; }
    85% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(-8px); opacity: 0; }
}

/* Reset button under phone */
.demo-try {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 100px;
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.2);
    border: 1.5px solid rgba(0, 122, 255, 0.15);
    margin: 0 auto;
    animation: pointUp 1.5s ease-in-out infinite;
    white-space: nowrap;
}
@keyframes pointUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 100px;
    font-size: 17px;
    font-weight: 700;
    transition: transform 0.15s, box-shadow 0.15s;
    border: none;
    cursor: pointer;
}
.btn:hover { transform: translateY(-2px); opacity: 1; }
.btn-primary {
    background: var(--primary);
    color: white;
}
.btn-primary:hover { box-shadow: 0 12px 28px rgba(0, 122, 255, 0.35); }

/* Sticky mobile download bar — appears after scrolling past the hero */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    padding: 12px 20px;
    z-index: 200;
    text-align: center;
}
.sticky-cta .btn { width: 100%; justify-content: center; }
@media (max-width: 900px) {
    .sticky-cta.visible { display: block; }
}
.btn-ghost {
    background: rgba(0, 122, 255, 0.1);
    color: var(--primary);
}
.btn-ghost:hover { background: rgba(0, 122, 255, 0.15); }
.btn-block { width: 100%; justify-content: center; }
.btn-large { padding: 20px 40px; font-size: 19px; }

/* Sections */
.section {
    padding: 100px 0;
}
.section-alt {
    background: var(--bg-alt);
}
.section-dark {
    background: linear-gradient(135deg, #1C1C1E, #2C2C2E);
    color: white;
}
.section-title {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.1;
}
.section-sub {
    font-size: 21px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
    line-height: 1.4;
}

/* Feature grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.feature-card {
    background: #FFFFFF;
    border: 1px solid #E5E5EA;
    padding: 32px;
    border-radius: var(--radius-lg);
    transition: transform 0.25s, box-shadow 0.25s;
    text-align: center;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.feature-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.feature-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.feature-card p {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.6;
}

/* Who-it's-for */
.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.who-card {
    text-align: center;
    padding: 40px 24px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s;
}
.who-card:hover { transform: translateY(-6px); }
.who-icon { width: 96px; height: 96px; margin-bottom: 20px; }
.who-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
}
.who-card p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 880px;
    margin: 0 auto;
}
.price-card {
    background: var(--bg-alt);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    position: relative;
}
.price-card-featured {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.08), rgba(175, 82, 222, 0.08));
    border: 2px solid var(--primary);
}
.price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.price-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}
.price {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.price span {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary);
}
.price-features {
    list-style: none;
    margin-bottom: 28px;
}
.price-features li {
    padding: 10px 0;
    font-size: 17px;
    color: var(--text);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.price-features li:last-child { border-bottom: none; }
.price-note {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
}

/* Privacy hero */
.privacy-hero {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.privacy-hero h2 {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 20px;
}
.privacy-hero p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.55;
}
.privacy-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}
.badge {
    display: inline-block;
    padding: 10px 18px;
    background: white;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

/* FAQ */
.faq {
    max-width: 760px;
    margin: 0 auto;
}
.faq details {
    background: var(--bg-alt);
    border-radius: 16px;
    margin-bottom: 12px;
    padding: 20px 24px;
    transition: background 0.2s;
}
.faq details[open] {
    background: white;
    box-shadow: var(--shadow-sm);
}
.faq summary {
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
}
.faq summary::after {
    content: "+";
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary::-webkit-details-marker { display: none; }
.faq details p {
    margin-top: 14px;
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.6;
}

/* Download section */
.download-container {
    text-align: center;
}
.download-container img {
    border-radius: 22.37%;
    margin-bottom: 24px;
    box-shadow: 0 20px 60px rgba(0, 122, 255, 0.3);
}
.download-container h2 {
    font-size: 52px;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    line-height: 1.1;
}
.download-container p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
}
.download-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.download-sub {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-top: 18px !important;
}

/* Footer */
.footer {
    background: #F5F5F7;
    padding: 60px 0 30px;
    font-size: 14px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-brand > div:first-child,
.footer-brand span {
    font-weight: 800;
    font-size: 19px;
    color: var(--text);
}
.footer-brand img { border-radius: 22.37%; }
.footer-tag {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 4px;
}
.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}
.footer-col a {
    display: block;
    color: var(--text);
    padding: 4px 0;
    font-weight: 500;
}
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 60px 24px 80px;
    }
    .hero h1 { font-size: 52px; }
    .hero-sub { font-size: 19px; }
    .hero-visual { order: -1; }
    .phone-mockup { width: 260px; height: 520px; }
    .section { padding: 70px 0; }
    .section-title { font-size: 36px; }
    .section-sub { font-size: 18px; margin-bottom: 44px; }
    .privacy-hero h2 { font-size: 32px; }
    .download-container h2 { font-size: 40px; }
    .nav { padding: 14px 20px; }
    .nav-links { gap: 18px; font-size: 14px; }
    .nav-links a:not(.nav-cta) { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .hero h1 { font-size: 42px; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .btn { justify-content: center; }
    .section-title { font-size: 30px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Privacy & Terms pages */
.legal-page {
    padding: 60px 24px 100px;
    max-width: 760px;
    margin: 0 auto;
}
.legal-page h1 {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.legal-page .legal-meta {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 40px;
}
.legal-page h2 {
    font-size: 24px;
    font-weight: 800;
    margin-top: 40px;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.legal-page h3 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 8px;
}
.legal-page p, .legal-page ul, .legal-page ol {
    margin-bottom: 16px;
    color: var(--text);
    line-height: 1.7;
}
.legal-page ul, .legal-page ol { padding-left: 24px; }
.legal-page li { margin-bottom: 6px; }
.legal-page strong { font-weight: 700; }

/* Demo label */
.demo-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 14px;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.testimonial {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 30px 28px;
    border: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}
.testimonial-quote {
    flex: 1;
    position: relative;
    padding-left: 4px;
}
.testimonial-quote::before {
    content: "\201C";
    font-size: 60px;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -8px;
    line-height: 1;
}
.testimonial-quote p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
}
.testimonial-cite {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.testimonial-avatar {
    border-radius: 12px;
    flex-shrink: 0;
}
.testimonial-cite strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
}
.testimonial-cite span {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Save PDF button */
.save-pdf-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-dark);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: transform 0.2s, box-shadow 0.2s;
}
.save-pdf-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
@media print {
    .save-pdf-btn, .sticky-cta, .nav { display: none !important; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .phone-hero-icon { animation: none; }
}
