@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:wght@300;400;500;600;700;800;900&display=swap');

/* ── Variables ─────────────────────────────────────────────────── */
:root {
    --cosmic-odyssey:  #0F1939;
    --sapphire-shadow: #374593;
    --sapphire-dust:   #516AC8;
    --ivory-whisper:   #F8F7F5;
    --milk-tooth:      #FAEBD7;
    --caramel-essence: #E3AF64;

    --font: 'Albert Sans', sans-serif;
    --transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 16px rgba(15,25,57,0.06);
    --shadow-md: 0 12px 40px rgba(15,25,57,0.12);
    --shadow-lg: 0 24px 64px rgba(15,25,57,0.18);
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background-color: var(--ivory-whisper);
    color: var(--cosmic-odyssey);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── Layout ────────────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ── Section Headers ───────────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header h2 span { color: var(--sapphire-shadow); }
.section-header.light h2 { color: #fff; }
.section-header.light h2 span { color: var(--caramel-essence); }
.section-header.light p { color: rgba(255,255,255,0.75); }
.section-header p { font-size: 1.05rem; color: rgba(15,25,57,0.65); max-width: 520px; margin: 0 auto; }

.section-tag {
    display: inline-block;
    background: rgba(81,106,200,0.1);
    color: var(--sapphire-shadow);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-tag.gold {
    background: rgba(227,175,100,0.15);
    color: var(--caramel-essence);
}

/* ── Buttons ───────────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--caramel-essence);
    color: var(--cosmic-odyssey);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid var(--caramel-essence);
}

.btn-primary:hover {
    background: transparent;
    color: var(--caramel-essence);
}

.btn-primary.large { padding: 18px 42px; font-size: 16px; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: rgba(255,255,255,0.9);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,0.4);
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.7);
}

.login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--caramel-essence);
    color: var(--cosmic-odyssey);
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid var(--caramel-essence);
}

.login-btn:hover {
    background: transparent;
    color: var(--caramel-essence);
}

/* ── Navigation ────────────────────────────────────────────────── */
.landing-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    transition: var(--transition);
}

.landing-nav.scrolled {
    background: rgba(15, 25, 57, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 14px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.brand-logo img { height: 48px; width: auto; transform: translateY(-2px); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--caramel-essence);
    transition: var(--transition);
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    background: rgba(15,25,57,0.98);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.mobile-nav.open {
    max-height: 360px;
    padding: 16px 0;
}

.mobile-nav a {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    font-weight: 500;
    padding: 14px 32px;
    transition: var(--transition);
}

.mobile-nav a:hover { background: rgba(255,255,255,0.05); color: #fff; }

.mobile-login-btn {
    margin: 12px 32px 4px;
    background: var(--caramel-essence) !important;
    color: var(--cosmic-odyssey) !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-align: center;
}

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0F1939 0%, #374593 45%, #516AC8 75%, #E3AF64 100%);
    position: relative;
    padding: 140px 0 120px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-watermark {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%) rotate(-15deg);
    width: 800px;
    height: 800px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.04;
    filter: blur(2px);
}

.hero-watermark img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-content { color: #fff; position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gold-text { color: var(--caramel-essence); }

.hero p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--caramel-essence);
    line-height: 1;
}

.stat span {
    font-size: 12px;
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* Server card (hero visual) */
.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.server-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 28px;
    width: 100%;
    max-width: 380px;
    color: #fff;
    box-shadow: 0 24px 80px rgba(0,0,0,0.25);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%        { transform: translateY(-12px); }
}

.server-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    opacity: 0.8;
}

.server-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.server-dot.green  { background: #4ade80; }
.server-dot.yellow { background: #fbbf24; }
.server-dot.red    { background: #f87171; }
.server-header span { margin-left: 4px; }

.server-body { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }

.server-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.green-icon { color: #4ade80; font-size: 15px; }

.server-metric {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    opacity: 0.8;
}

.metric-bar {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: #4ade80;
    border-radius: 3px;
    animation: metric-load 2s ease forwards;
}

@keyframes metric-load {
    from { width: 0; }
}

.metric-val { font-weight: 700; color: #4ade80; }

/* Hero wave */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ── Features ──────────────────────────────────────────────────── */
.features-section {
    padding: 110px 0;
    background: var(--ivory-whisper);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: #fff;
    padding: 40px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15,25,57,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--sapphire-shadow), var(--sapphire-dust));
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(81,106,200,0.15);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--sapphire-shadow), var(--sapphire-dust));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #fff;
    font-size: 22px;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--cosmic-odyssey);
}

.feature-card p {
    font-size: 14px;
    color: rgba(15,25,57,0.6);
    line-height: 1.7;
}

/* ── Tech / Windows IIS Section ────────────────────────────────── */
.tech-section {
    padding: 110px 0;
    background: #fff;
    border-top: 1px solid rgba(15,25,57,0.06);
}

.tech-inner {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
}

.tech-content .section-tag { margin-bottom: 16px; }

.tech-content h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--cosmic-odyssey);
}

.tech-content h2 span { color: var(--sapphire-shadow); }

.tech-content p {
    font-size: 15px;
    color: rgba(15,25,57,0.65);
    line-height: 1.8;
    margin-bottom: 14px;
}

.tech-content p strong { color: var(--cosmic-odyssey); font-weight: 700; }

.tech-highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.tech-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(15,25,57,0.7);
    line-height: 1.6;
}

.tech-highlight i {
    color: var(--sapphire-shadow);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.tech-highlight strong { color: var(--cosmic-odyssey); font-weight: 700; }

/* Stack visual card */
.tech-stack-visual {
    background: linear-gradient(160deg, var(--cosmic-odyssey) 0%, var(--sapphire-shadow) 100%);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    color: #fff;
    position: sticky;
    top: 100px;
}

.stack-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
    margin-bottom: 24px;
}

.stack-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

.stack-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px 10px;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    opacity: 0.85;
    transition: var(--transition);
}

.stack-item:hover {
    background: rgba(255,255,255,0.14);
    opacity: 1;
    transform: translateY(-3px);
}

.stack-item i { font-size: 22px; color: var(--caramel-essence); }

.stack-item.highlight-stack {
    grid-column: span 3;
    background: rgba(227,175,100,0.15);
    border-color: rgba(227,175,100,0.4);
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    padding: 14px;
}

.stack-item.highlight-stack i { font-size: 20px; }

.stack-note {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.7;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.stack-note i { color: var(--caramel-essence); margin-top: 2px; flex-shrink: 0; }

/* ── Pricing ───────────────────────────────────────────────────── */
.pricing-section {
    padding: 110px 0 130px;
    position: relative;
    background: var(--cosmic-odyssey);
}

.pricing-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0F1939 0%, #1e2d6e 50%, #374593 100%);
    opacity: 0.95;
}

.pricing-section .container { position: relative; z-index: 2; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.plan-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 32px 24px 28px;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.25);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.plan-card.featured {
    background: #fff;
    color: var(--cosmic-odyssey);
    border: none;
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
}

.plan-card.featured:hover {
    transform: translateY(-20px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.35);
}

.plan-card.custom-plan {
    background: linear-gradient(135deg, rgba(227,175,100,0.12), rgba(227,175,100,0.04));
    border-color: rgba(227,175,100,0.3);
}

.plan-card.custom-plan:hover { border-color: rgba(227,175,100,0.6); }

.plan-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--caramel-essence);
    color: var(--cosmic-odyssey);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
}

.plan-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.1);
    color: var(--caramel-essence);
}

.plan-card.featured .plan-icon {
    background: rgba(15,25,57,0.07);
    color: var(--sapphire-shadow);
}

.plan-name {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    opacity: 0.95;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 28px;
}

.currency {
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0.8;
}

.amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--caramel-essence);
    line-height: 1;
}

.plan-card.featured .amount { color: var(--sapphire-shadow); }

.period {
    font-size: 13px;
    opacity: 0.6;
    font-weight: 400;
}

.plan-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    opacity: 0.9;
}

.plan-card.featured .plan-features li {
    border-bottom-color: rgba(15,25,57,0.06);
    opacity: 1;
}

.plan-features i { color: #4ade80; font-size: 12px; flex-shrink: 0; }
.plan-features li.not-included i { color: #f87171; }
.plan-features li.not-included { opacity: 0.55; }

.plan-good-for {
    font-size: 11.5px;
    opacity: 0.55;
    margin-bottom: 24px;
    line-height: 1.5;
}

.plan-good-for span {
    font-weight: 700;
    opacity: 0.9;
}

.plan-btn {
    display: block;
    text-align: center;
    padding: 13px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.plan-btn:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.4);
}

.plan-btn.featured-btn {
    background: var(--cosmic-odyssey);
    color: var(--caramel-essence);
    border: 2px solid var(--cosmic-odyssey);
}

.plan-btn.featured-btn:hover {
    background: transparent;
    color: var(--caramel-essence);
}

.plan-btn.gold-btn {
    background: var(--caramel-essence);
    color: var(--cosmic-odyssey);
    border-color: var(--caramel-essence);
}

.plan-btn.gold-btn:hover {
    background: transparent;
    color: var(--caramel-essence);
}

.plans-note {
    text-align: center;
    margin-top: 48px;
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.plans-note a {
    color: var(--caramel-essence);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── About Section ─────────────────────────────────────────────── */
.about-section {
    padding: 110px 0;
    background: var(--ivory-whisper);
    position: relative;
    overflow: hidden;
}

.about-watermark {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
    transform: rotate(10deg);
}

.about-watermark img {
    width: 100%;
    height: auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-tag { margin-bottom: 16px; }

.about-content h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-content h2 span { color: var(--sapphire-shadow); }

.about-content p {
    font-size: 15px;
    color: rgba(15,25,57,0.7);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-pillars {
    display: flex;
    gap: 32px;
    margin-top: 36px;
}

.pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--sapphire-shadow);
    text-align: center;
}

.pillar i {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(55,69,147,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--sapphire-shadow);
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-stat-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15,25,57,0.05);
    transition: var(--transition);
}

.about-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.about-stat-card i {
    font-size: 24px;
    color: var(--sapphire-shadow);
    margin-bottom: 16px;
    display: block;
}

.about-stat-card strong {
    font-size: 15px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.about-stat-card p {
    font-size: 13px;
    color: rgba(15,25,57,0.55);
    line-height: 1.5;
}

/* ── Contact / CTA ─────────────────────────────────────────────── */
.contact-section {
    padding: 80px 0 100px;
    background: var(--ivory-whisper);
}

.cta-box {
    background: linear-gradient(135deg, var(--cosmic-odyssey), var(--sapphire-shadow));
    border-radius: var(--radius-lg);
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    max-width: 550px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.office-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 500px;
}

.office-address i {
    color: var(--caramel-essence);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--caramel-essence);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.contact-item:hover { opacity: 0.8; }
.contact-item i { font-size: 15px; }

.cta-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.cta-note {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-align: center;
    max-width: 200px;
}

/* ── Footer ────────────────────────────────────────────────────── */
.landing-footer {
    background: #080e22;
    color: rgba(255,255,255,0.75);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    height: 54px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.6;
    max-width: 260px;
}

.footer-col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
    font-size: 14px;
    opacity: 0.6;
    transition: var(--transition);
}

.footer-col a:hover { opacity: 1; color: var(--caramel-essence); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    font-size: 13px;
    opacity: 0.45;
}

.footer-tagline { font-style: italic; }

/* ── Scroll Reveal ─────────────────────────────────────────────── */
.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: none;
}

.feature-card:nth-child(2).scroll-reveal { transition-delay: 0.1s; }
.feature-card:nth-child(3).scroll-reveal { transition-delay: 0.2s; }
.feature-card:nth-child(5).scroll-reveal { transition-delay: 0.1s; }
.feature-card:nth-child(6).scroll-reveal { transition-delay: 0.2s; }

.plan-card:nth-child(2).scroll-reveal { transition-delay: 0.1s; }
.plan-card:nth-child(3).scroll-reveal { transition-delay: 0.2s; }
.plan-card:nth-child(4).scroll-reveal { transition-delay: 0.3s; }
.plan-card:nth-child(5).scroll-reveal { transition-delay: 0.4s; }

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .plan-card.featured { transform: none; }
    .plan-card.featured:hover { transform: translateY(-8px); }
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 130px 40px 100px;
        text-align: center;
    }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero p { max-width: 100%; }
    .hero-visual { display: none; }
    .hero-stats { justify-content: center; }

    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-inner { grid-template-columns: 1fr; }
    .tech-stack-visual { position: static; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .cta-box { grid-template-columns: 1fr; text-align: center; }
    .contact-info { justify-content: center; }
    .cta-action { width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .mobile-menu-toggle { display: flex; }
    .mobile-nav { display: flex; }
    .hero { padding: 110px 24px 80px; }
    .container { padding: 0 20px; }
    .about-cards { grid-template-columns: 1fr; }
    .about-pillars { flex-direction: column; gap: 20px; align-items: flex-start; }
    .cta-box { padding: 40px 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 540px) {
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
    .hero-btns { flex-direction: column; width: 100%; }
    .btn-primary, .btn-outline { justify-content: center; }
    .hero-stats { flex-wrap: wrap; gap: 16px; }
    .stat-divider { display: none; }
}
