/* ========== FONT FACE ========== */
@font-face {
    font-family: "Old Standard";
    src: url("/media/OldStandard-Bold.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ========== CSS CUSTOM PROPERTIES ========== */
:root {
    --bg-primary: #0a0e14;
    --bg-secondary: #11161e;
    --bg-card: #161c26;
    --bg-card-hover: #1c2430;
    --text-primary: #e8ecf1;
    --text-secondary: #b0b8c4;
    --text-muted: #7a8494;
    --accent: #5b9bd5;
    --accent-glow: #7ab8f0;
    --accent-dark: #3d7ab8;
    --border: #1e2a38;
    --border-light: #263340;
    --nav-bg: rgba(14, 18, 26, 0.78);
    --nav-blur: 18px;
    --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --card-shadow-hover: 0 8px 36px rgba(0, 0, 0, 0.5);
    --glow-color: rgba(90, 155, 215, 0.25);
    --hero-pattern-opacity: 0.07;
    --badge-bg: #1a2740;
    --badge-text: #8ab8e0;
    --step-line: #1e3044;
    --accordion-bg: #11161e;
    --accordion-hover: #181f2b;
    --toggle-bg: #2a3648;
    --toggle-dot: #5b9bd5;
    --pricing-highlight: #141d2b;
    --security-card-bg: #0f161f;
    --gradient-hero-start: #0a101c;
    --gradient-hero-mid: #0d1523;
    --gradient-hero-end: #111b2b;
}

body.light-mode {
    --bg-primary: #f6f8fa;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f3f7;
    --text-primary: #1a1f2b;
    --text-secondary: #3d4555;
    --text-muted: #6b7385;
    --accent: #3d7ab8;
    --accent-glow: #5b9bd5;
    --accent-dark: #2c5d8f;
    --border: #dde3ec;
    --border-light: #e8ecf2;
    --nav-bg: rgba(255, 255, 255, 0.72);
    --nav-blur: 20px;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    --card-shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.12);
    --glow-color: rgba(60, 120, 180, 0.18);
    --hero-pattern-opacity: 0.04;
    --badge-bg: #e3ecf6;
    --badge-text: #2c5d8f;
    --step-line: #dde3ec;
    --accordion-bg: #f8fafc;
    --accordion-hover: #eef2f7;
    --toggle-bg: #c8d4e2;
    --toggle-dot: #3d7ab8;
    --pricing-highlight: #f0f4f9;
    --security-card-bg: #f8fafc;
    --gradient-hero-start: #e8edf4;
    --gradient-hero-mid: #edf2f8;
    --gradient-hero-end: #f2f5fa;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.65;
    transition:
        background-color 0.4s ease,
        color 0.4s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family:
        "Old Standard",
        "Inter",
        system-ui,
        -apple-system,
        sans-serif;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.2;
    text-transform: uppercase;
}
.font-gloucest {
    font-family:
        "Old Standard",
        "Inter",
        system-ui,
        -apple-system,
        sans-serif;
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.25s ease;
}
a:hover {
    color: var(--accent-glow);
}

ul {
    list-style: none;
}

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

.section {
    padding: 4.5rem 0;
}
.section-label {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 0.6rem;
    font-family: "Inter", system-ui, sans-serif;
}
.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    /* max-width: 620px; */
    margin-bottom: 2.5rem;
    line-height: 1.6;
    justify-self: center;
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(var(--nav-blur));
    -webkit-backdrop-filter: blur(var(--nav-blur));
    border-bottom: 1px solid var(--border);
    transition: all 0.35s ease;
    padding: 0.6rem 0;
}
.nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}
body.light-mode .nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.01rem;
    font-family: "Gloucest", "Inter", system-ui, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.nav-logo img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}
.nav-logo span {
    color: var(--accent);
}
.nav-links a.active {
    color: var(--accent);
    background: var(--bg-card);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    font-weight: 500;
}
.nav-links a {
    color: var(--text-secondary);
    padding: 0.4rem 0.7rem;
    border-radius: 6px;
    transition: all 0.22s ease;
    white-space: nowrap;
    font-size: 0.83rem;
    text-transform: uppercase;
}
.nav-links a:hover,
.nav-links a:focus {
    color: var(--text-primary);
    background: var(--bg-card);
}
.nav-links a.nav-cta-link {
    background: var(--accent);
    color: #fff;
    padding: 0.45rem 0.9rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}
.nav-links a.nav-cta-link:hover {
    background: var(--accent-glow);
    color: #fff;
}
.nav-blog-link {
    font-size: 0.78rem !important;
    opacity: 0.85;
}

/* Theme Toggle */
.theme-toggle {
    background: var(--toggle-bg);
    border: none;
    width: 42px;
    height: 26px;
    border-radius: 13px;
    cursor: pointer;
    position: relative;
    transition: background 0.35s ease;
    flex-shrink: 0;
    margin-left: 0.2rem;
}
.theme-toggle::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--toggle-dot);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
body.light-mode .theme-toggle::after {
    transform: translateX(16px);
}
.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.theme-toggle .icon-sun {
    left: 5px;
    opacity: 0;
}
.theme-toggle .icon-moon {
    right: 5px;
    opacity: 1;
}
body.light-mode .theme-toggle .icon-sun {
    opacity: 1;
}
body.light-mode .theme-toggle .icon-moon {
    opacity: 0;
}

/* Mobile nav hamburger */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    flex-shrink: 0;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 1.25rem 4rem;
    overflow: hidden;
    background:
        radial-gradient(
            ellipse at 30% 20%,
            rgba(70, 130, 190, 0.12) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse at 70% 60%,
            rgba(50, 100, 160, 0.08) 0%,
            transparent 55%
        ),
        linear-gradient(
            160deg,
            var(--gradient-hero-start) 0%,
            var(--gradient-hero-mid) 40%,
            var(--gradient-hero-end) 100%
        );
    transition: background 0.5s ease;
}
.hero-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: url("/media/HermesLogoSmall.webp");
    background-repeat: repeat;
    background-size: 280px 280px;
    opacity: var(--hero-pattern-opacity);
    animation: heroPatternPulse 6s ease-in-out infinite;
    transition: opacity 0.5s ease;
}
@keyframes heroPatternPulse {
    0%,
    100% {
        opacity: var(--hero-pattern-opacity);
    }
    35% {
        opacity: calc(var(--hero-pattern-opacity) * 1.7);
    }
    65% {
        opacity: calc(var(--hero-pattern-opacity) * 1.25);
    }
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 750px;
    background-color: #0000004d;
    padding: 1.5rem;
    /* border-style: double; */
    border-radius: 10px;
}
.hero-badge {
    display: inline-block;
    background: var(--badge-bg);
    color: var(--badge-text);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-light);
    text-transform: uppercase;
    animation: heroFadeUp 0.7s ease both;
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    animation: heroFadeUp 0.7s ease 0.15s both;
}
.hero h1 .accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    line-height: 1.55;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    animation: heroFadeUp 0.7s ease 0.3s both;
}
.hero-credentials {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    animation: heroFadeUp 0.7s ease 0.45s both;
}
.hero-credentials span {
    color: var(--accent);
}
.hero-ctas {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: heroFadeUp 0.7s ease 0.6s both;
}

/* Staggered hero entrance */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.btn {
    display: inline-block;
    padding: 0.75rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.02em;
    font-family: "Inter", system-ui, sans-serif;
    text-align: center;
    white-space: nowrap;
}
.btn-primary {
    background: var(--accent);
    color: #fff;
    border: none;
    box-shadow: 0 4px 18px var(--glow-color);
}
.btn-primary:hover {
    background: var(--accent-glow);
    box-shadow: 0 6px 26px var(--glow-color);
    color: #fff;
    transform: translateY(-1px);
}
.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}
.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--bg-card);
}
.btn-large {
    /* padding: 0.9rem 2rem; */
    font-size: 0.8rem;
}

/* ========== BENEFITS ========== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.8rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
    text-align: center;
}
.benefit-card:hover {
    box-shadow: var(--card-shadow-hover);
    border-color: var(--border-light);
    transform: translateY(-3px);
    background: var(--bg-card-hover);
}
.benefit-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    display: block;
}
.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ========== HOW IT WORKS ========== */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 2.5rem;
    border-left: 2px solid var(--step-line);
    margin-left: 1rem;
}
.step-item {
    position: relative;
    padding: 1.3rem 0 1.3rem 2rem;
    transition: all 0.3s ease;
}
.step-item::before {
    content: "";
    position: absolute;
    left: -2.55rem;
    top: 1.15rem;
    width: 58px;
    height: 58px;
    background-image: url("/media/HermesLogoSmall.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 2px solid var(--border-light);
    box-shadow: 0 0 14px var(--glow-color);
    animation: stepGlow 4s ease-in-out infinite;
    z-index: 1;
    transition: all 0.3s ease;
}
.step-item:hover::before {
    box-shadow: 0 0 24px var(--glow-color);
    border-color: var(--accent);
    transform: scale(1.08);
}
@keyframes stepGlow {
    0%,
    100% {
        box-shadow: 0 0 10px var(--glow-color);
    }
    50% {
        box-shadow: 0 0 22px var(--glow-color);
    }
}
.step-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
    font-family: "Inter", system-ui, sans-serif;
}
.step-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}
.step-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 500px;
}

/* ========== PRICING ========== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem 1.6rem;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}
.pricing-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-3px);
    background: var(--bg-card-hover);
}
.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 6px 30px var(--glow-color);
    background: var(--pricing-highlight);
}
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 14px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
    text-align: center;
    text-transform: uppercase;
}
.pricing-best-for {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1.2rem;
}
.pricing-costs {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}
.pricing-costs strong {
    color: var(--text-primary);
}
.pricing-fee {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    text-align: center;
    margin: 0.8rem 0;
    font-family: "Gloucest", "Inter", system-ui, sans-serif;
}
.pricing-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

/* ========== ABOUT ========== */
.about-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    align-items: center;
}
.about-portrait {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 3px solid var(--border-light);
    box-shadow: 0 0 28px var(--glow-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    margin: 0 auto;
}
/*.about-portrait-placeholder {
                font-size: 4rem;
                color: var(--text-muted);
                opacity: 0.5;
            }*/
.about-text h2 {
    margin-bottom: 0.8rem;
}
.about-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
}
.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}
.about-highlight-tag {
    background: var(--badge-bg);
    color: var(--badge-text);
    padding: 0.35rem 0.8rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border: 1px solid var(--border-light);
}

/* ========== SECURITY ========== */
#security {
    position: relative;
    overflow: hidden;
}
#security .hero-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: url("/media/HermesLogoSmall.webp");
    background-repeat: repeat;
    background-size: 180px 180px;
    opacity: var(--hero-pattern-opacity);
    animation: heroPatternPulse 6s ease-in-out infinite;
    transition: opacity 0.5s ease;
}
#security .container {
    position: relative;
    z-index: 1;
}
.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}
.security-card {
    background: var(--security-card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.4rem;
    text-align: center;
    transition: all 0.3s ease;
}
.security-card:hover {
    border-color: var(--border-light);
    box-shadow: var(--card-shadow);
}
.security-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: block;
}
.security-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}
.security-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ========== FAQ ========== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    max-width: 720px;
    margin: 0 auto;
}
.faq-item {
    background: var(--accordion-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 0.98rem;
    font-weight: 600;
    padding: 1.1rem 1.3rem;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: "Inter", system-ui, sans-serif;
    letter-spacing: 0.01em;
    transition: background 0.25s ease;
}
.faq-question:hover {
    background: var(--accordion-hover);
}
.faq-icon {
    font-size: 1.2rem;
    color: var(--accent);
    transition: transform 0.35s ease;
    flex-shrink: 0;
    font-weight: 700;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        padding 0.4s ease;
    padding: 0 1.3rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.3rem 1.1rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    text-align: center;
}
.testimonial-card:hover {
    box-shadow: var(--card-shadow-hover);
    background: var(--bg-card-hover);
}
.testimonial-quote {
    font-family: "Gloucest", "Inter", system-ui, serif;
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-style: italic;
    letter-spacing: 0.02em;
}
.testimonial-author {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
}
.testimonial-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ========== FINAL CTA ========== */
.final-cta {
    text-align: center;
    background:
        radial-gradient(
            ellipse at center,
            rgba(91, 155, 213, 0.08) 0%,
            transparent 65%
        ),
        var(--bg-primary);
    padding: 5rem 1.25rem;
    border-top: 1px solid var(--border);
    transition: background 0.5s ease;
}
.final-cta h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 1rem;
}
.final-cta p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    line-height: 1.6;
}
body.light-mode .final-cta {
    background:
        radial-gradient(
            ellipse at center,
            rgba(61, 122, 184, 0.08) 0%,
            transparent 65%
        ),
        var(--bg-primary);
}

/* ========== LIMITATIONS NOTE ========== */
.limitations-note {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem 1.8rem;
    margin-top: 1.5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--card-shadow);
}
.limitations-note h4 {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}
.limitations-note ul {
    list-style: disc;
    padding-left: 1.4rem;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
}
.limitations-note ul li {
    margin-bottom: 0.25rem;
}

/* ========== FOOTER ========== */
.footer {
    padding: 3rem 1.25rem 2rem;
    border-top: 2px solid transparent;
    border-image: linear-gradient(
            90deg,
            transparent,
            var(--accent),
            transparent
        )
        1;
    color: var(--text-muted);
    font-size: 0.82rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.footer-col h4 {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.footer-col p {
    line-height: 1.6;
    margin-bottom: 0.5rem;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 0.5rem;
}
.footer-col a {
    color: var(--text-secondary);
    position: relative;
    text-decoration: none;
    transition: color 0.25s ease;
}
.footer-col a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}
.footer-col a:hover {
    color: var(--accent);
}
.footer-col a:hover::after {
    width: 100%;
}
.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.78rem;
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0.2rem;
        padding-top: 0.6rem;
        align-items: stretch;
        text-align: center;
    }
    .nav-links.show {
        display: flex;
    }
    .nav-links a {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    .nav-hamburger {
        display: block;
    }
    .nav-inner {
        flex-wrap: wrap;
    }
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-portrait {
        margin: 0 auto 1rem;
    }
    .about-highlights {
        justify-content: center;
    }
    .steps-list {
        margin-left: 0;
        padding-left: 2rem;
    }
    .step-item {
        padding-left: 1.5rem;
    }
    .step-item::before {
        left: -2.2rem;
        width: 30px;
        height: 30px;
    }
    .hero {
        min-height: auto;
        padding: 4rem 1rem 2.5rem;
    }
    .hero h1 {
        font-size: 1.7rem;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .security-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .nav-logo {
        font-size: 0.7rem;
    }
}
@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 280px;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 3rem 0;
    }
}
