/* ============================
   ManagerOS Modern Theme
   High-tech, futuristic design
   ============================ */

/* Variables */
:root {
    --bg-primary: #050a18;
    --bg-secondary: #0a1128;
    --bg-card: rgba(15, 25, 50, 0.6);
    --text-primary: #e8edf5;
    --text-muted: #8899b8;
    --accent-blue: #3b82f6;
    --accent-cyan: #06b6d4;
    --accent-green: #10b981;
    --accent-gold: #f59e0b;
    --accent-purple: #8b5cf6;
    --glow-blue: rgba(59, 130, 246, 0.3);
    --glow-cyan: rgba(6, 182, 212, 0.2);
    --gradient-main: linear-gradient(135deg, #3b82f6, #06b6d4, #8b5cf6);
    --gradient-hero: linear-gradient(135deg, #3b82f6 0%, #06b6d4 50%, #8b5cf6 100%);
    --border-subtle: rgba(59, 130, 246, 0.12);
    --font-main: "Inter", -apple-system, "Segoe UI", sans-serif;
    --font-mono: "JetBrains Mono", monospace;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* animated background */
#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    background: var(--bg-primary);
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(59,130,246,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 0%, rgba(139,92,246,0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 100%, rgba(6,182,212,0.06) 0%, transparent 50%);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ===== GLOBAL SELECTION ===== */
::selection {
    background: rgba(139,92,246,0.3);
    color: #fff;
}

/* ===== SMOOTH SCROLL ===== */
html {
    scroll-behavior: smooth;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* stagger children */
.modules-grid .reveal:nth-child(2) { transition-delay: 0.05s; }
.modules-grid .reveal:nth-child(3) { transition-delay: 0.1s; }
.modules-grid .reveal:nth-child(4) { transition-delay: 0.15s; }
.modules-grid .reveal:nth-child(5) { transition-delay: 0.2s; }
.modules-grid .reveal:nth-child(6) { transition-delay: 0.25s; }
.modules-grid .reveal:nth-child(7) { transition-delay: 0.3s; }
.modules-grid .reveal:nth-child(8) { transition-delay: 0.35s; }
.modules-grid .reveal:nth-child(9) { transition-delay: 0.4s; }

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== SECTION LABEL ===== */
.section-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
    background: rgba(6, 182, 212, 0.08);
    animation: label-pulse 3s ease-in-out infinite;
}
@keyframes label-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(6,182,212,0.1); }
    50% { box-shadow: 0 0 15px 3px rgba(6,182,212,0.08); }
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.05rem;
}

/* ===== GLOW CARD ===== */
.glow-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s, box-shadow 0.35s;
}
.glow-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(59,130,246,0.15), transparent, rgba(139,92,246,0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.35s;
}
.glow-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.12), 0 0 30px rgba(59, 130, 246, 0.06);
}
.glow-card:hover::before { opacity: 1; }

/* Card icon wrap */
.card-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(6,182,212,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.3rem;
    color: var(--accent-blue);
    border: 1px solid rgba(59, 130, 246, 0.15);
}

/* ===== HEADER ===== */
header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 6%;
    background: rgba(5, 10, 24, 0.6);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: background 0.3s, border-color 0.3s, padding 0.3s;
}
header.site-header.scrolled {
    background: rgba(5, 10, 24, 0.92);
    border-bottom-color: var(--border-subtle);
    padding: 10px 6%;
}

.logo {
    font-family: var(--font-main);
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}
.logo span { color: var(--accent-blue); }

.primary-nav a {
    margin-left: 28px;
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
    position: relative;
}
.primary-nav a:not(.btn-cta):hover { color: #fff; }
.primary-nav a:not(.btn-cta)::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s;
    border-radius: 1px;
}
.primary-nav a:not(.btn-cta):hover::after { width: 100%; }

/* CTA Button */
.btn-cta {
    background: var(--gradient-main);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
}

/* Nav toggle (mobile) */
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    background: rgba(30,41,59,0.6);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}
.nav-toggle:hover { background: rgba(59,130,246,0.35); }
.nav-toggle-icon-close { display: none; }
.site-header.nav-open .nav-toggle-icon-open { display: none; }
.site-header.nav-open .nav-toggle-icon-close { display: block; }

/* ===== TRUST BANNER (Marquee) ===== */
.trust-banner {
    overflow: hidden;
    white-space: nowrap;
    background: linear-gradient(90deg, rgba(59,130,246,0.08), rgba(6,182,212,0.06), rgba(139,92,246,0.08));
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 14px 0;
    position: relative;
    z-index: 2;
}
.trust-banner-glow {
    background: linear-gradient(90deg, rgba(59,130,246,0.12), rgba(6,182,212,0.1), rgba(139,92,246,0.12));
}

.trust-track {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    animation: marquee 35s linear infinite;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--text-muted);
    text-transform: uppercase;
}
.trust-track-reverse {
    animation: marquee-reverse 40s linear infinite;
}

.trust-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-blue);
    box-shadow: 0 0 8px var(--glow-blue);
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marquee-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ===== HERO ===== */
.hero {
    padding: 140px 6% 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.hero-content {
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: var(--accent-green);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 30px;
    animation: pulse-badge 3s ease-in-out infinite;
}
@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.15); }
    50% { box-shadow: 0 0 20px 5px rgba(16,185,129,0.12); }
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
}
.hero-line { display: block; }

.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

.hero-description {
    font-size: 0.95rem;
    color: rgba(136, 153, 184, 0.8);
    max-width: 680px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.hero-description strong {
    color: var(--accent-purple);
    font-weight: 700;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* Glow button */
.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gradient-main);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
    overflow: hidden;
}
.btn-glow::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(59,130,246,0.4), 0 0 60px rgba(59,130,246,0.15);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    transition: border-color 0.3s, background 0.3s, transform 0.25s;
}
.btn-outline:hover {
    border-color: var(--accent-blue);
    background: rgba(59,130,246,0.08);
    transform: translateY(-2px);
}

/* Hero stats row */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.hero-stat {
    text-align: center;
}
.hero-stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    font-family: var(--font-mono);
}
.hero-stat-suffix {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-blue);
}
.hero-stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

/* ===== CAROUSEL ===== */
.hero-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    z-index: 2;
}
.hero-carousel .main-image {
    width: 100%;
    max-height: 560px;
    object-fit: contain;
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(59,130,246,0.1);
    transition: opacity 0.2s;
    pointer-events: none;
    -webkit-user-drag: none;
}
.carousel-glow {
    position: absolute;
    width: 80%;
    height: 60%;
    top: 20%;
    left: 10%;
    background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, transparent 60%);
    filter: blur(60px);
    z-index: -1;
    animation: carousel-pulse 4s ease-in-out infinite alternate;
}
@keyframes carousel-pulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}
.carousel-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(5,10,24,0.75);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s;
    z-index: 3;
}
.carousel-arrow:hover {
    background: rgba(59,130,246,0.9);
    box-shadow: 0 0 25px rgba(59,130,246,0.4);
    transform: translateY(-50%) scale(1.1);
}
.carousel-arrow.left { left: -8px; }
.carousel-arrow.right { right: -8px; }
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}
.dot.active {
    background: var(--accent-blue);
    transform: scale(1.4);
    box-shadow: 0 0 12px var(--glow-blue);
}
.screenshot-info {
    margin-top: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 24px;
    border-radius: 14px;
    background: rgba(10,17,40,0.85);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(12px);
    text-align: left;
}
.screenshot-info h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    color: #fff;
}
.screenshot-info p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ===== OS SUPPORT ===== */
.os-support {
    padding: 70px 6%;
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(5,10,24,0.5);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.os-support h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
}

.os-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    align-items: flex-start;
}
.os-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s;
}
.os-item:not(.coming-soon):hover { transform: translateY(-6px); }

.os-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--text-primary);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.os-item:not(.coming-soon):hover .os-icon-wrap {
    border-color: var(--accent-blue);
    box-shadow: 0 0 25px var(--glow-blue);
    color: var(--accent-blue);
}
.os-item span {
    font-weight: 600;
    font-size: 1rem;
}
.badge-soon {
    background: var(--accent-gold);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}
.coming-soon { opacity: 0.55; }

/* ===== SECURITY ===== */
.security {
    padding: 100px 6%;
    text-align: center;
    position: relative;
    z-index: 1;
}
.security h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 14px;
    color: #fff;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.security-card {
    padding: 28px 24px;
    text-align: left;
}
.security-card h3 {
    margin: 0 0 14px;
    font-size: 1.15rem;
    color: #fff;
}
.security-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text-muted);
}
.security-card ul li {
    margin-bottom: 8px;
    font-size: 0.92rem;
    padding-left: 16px;
    position: relative;
}
.security-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-blue);
}

.security-cta-row {
    text-align: center;
    margin-top: 40px;
}

/* Security Advisor GIF */
.security-demo {
    max-width: 900px;
    margin: 50px auto 0;
    text-align: center;
}
.security-gif {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(59,130,246,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(59,130,246,0.08);
}
.security-gif-caption {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.security-gif-caption i {
    color: var(--accent-blue);
}

/* ===== DEPLOYMENT ===== */
.deployment {
    padding: 100px 6%;
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(5,10,24,0.4);
}
.deployment h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 14px;
    color: #fff;
}

.deployment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 50px;
}
.deployment-card {
    padding: 32px 28px;
    text-align: left;
}
.deployment-card h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
    color: #fff;
    text-align: center;
}
.deploy-type {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.deployment-card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.deployment-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.deployment-card ul li {
    margin-bottom: 10px;
    font-size: 0.92rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}
.deployment-card ul li i {
    color: var(--accent-blue);
    font-size: 0.85rem;
}

.card-blue { border-color: rgba(59,130,246,0.25); }
.card-gold {
    border-color: rgba(245,158,11,0.25);
}
.card-gold .card-icon-wrap {
    background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(245,158,11,0.05));
    color: var(--accent-gold);
    border-color: rgba(245,158,11,0.2);
}
.card-gold ul li i { color: var(--accent-gold); }
.card-green {
    border-color: rgba(16,185,129,0.35);
    box-shadow: 0 0 30px rgba(16,185,129,0.08);
}

/* Storage */
.storage-options {
    max-width: 1000px;
    margin: 0 auto;
}
.storage-options h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: #fff;
}
.storage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.storage-card {
    padding: 24px 20px;
    position: relative;
    text-align: left;
}
.storage-card h4 {
    font-size: 1rem;
    margin-bottom: 14px;
    color: #fff;
}
.storage-card ul {
    list-style: none;
    padding: 0;
    color: var(--text-muted);
    font-size: 0.88rem;
}
.storage-card ul li {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.storage-card ul li i {
    color: var(--accent-blue);
    font-size: 0.85rem;
}
.storage-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
}
.tag-blue { background: var(--accent-blue); color: #fff; }
.tag-gold { background: var(--accent-gold); color: #000; }
.tag-green { background: var(--accent-green); color: #fff; }

/* ===== MODULES & CONNECTORS ===== */
.modules, .connectors {
    padding: 100px 6%;
    text-align: center;
    position: relative;
    z-index: 1;
}
.modules h2, .connectors h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 14px;
    color: #fff;
}
.connectors {
    background: rgba(5,10,24,0.4);
}

.modules-grid, .connectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
}
.module-box {
    padding: 24px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s, box-shadow 0.35s;
}
.module-box .card-icon-wrap {
    transition: transform 0.35s;
}
.module-box:hover .card-icon-wrap {
    transform: scale(1.15) rotate(5deg);
}
.module-box h4 {
    font-size: 0.95rem;
    color: #fff;
    margin: 0;
}
.module-coming-soon {
    border-style: dashed;
    border-color: rgba(255,255,255,0.1);
    opacity: 0.7;
}

/* ===== PRICING ===== */
.pricing {
    padding: 100px 6%;
    text-align: center;
    position: relative;
    z-index: 1;
}
.pricing h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 14px;
    color: #fff;
}
.pricing-note {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}
.price-card {
    padding: 36px 28px;
    text-align: left;
    display: flex;
    flex-direction: column;
    position: relative;
}
.price-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: #fff;
    text-align: center;
}
.price-card .price {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
    color: #fff;
    font-family: var(--font-mono);
}
.price-card .price span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-main);
    font-weight: 500;
}
.price-card .target {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}
.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.price-card ul li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-left: 18px;
    position: relative;
}
.price-card ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-size: 0.7rem;
    top: 3px;
}
.card-gold .price-card ul li::before,
.card-gold ul li::before { color: var(--accent-gold); }
.card-green ul li::before { color: var(--accent-green); }

.price-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.88rem;
    color: var(--text-muted);
    text-align: center;
}

.badge-popular {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--accent-green);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-card.popular {
    box-shadow: 0 0 40px rgba(16,185,129,0.1), 0 20px 50px rgba(0,0,0,0.3);
    position: relative;
}
.price-card.popular::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(16,185,129,0.4), transparent 40%, rgba(6,182,212,0.3));
    z-index: -1;
    animation: popular-glow 4s ease-in-out infinite alternate;
}
@keyframes popular-glow {
    0% { opacity: 0.4; }
    100% { opacity: 0.8; }
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 6%;
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(5,10,24,0.4);
}
.about h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 50px;
    color: #fff;
}
.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.about-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}
.about-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}
.about-stats {
    flex: 1;
    min-width: 280px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.stat-box {
    padding: 28px 18px;
    text-align: center;
}
.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-blue);
    font-family: var(--font-mono);
}
.stat-suffix {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-cyan);
}
.stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}
.stat-wide { grid-column: span 2; }

/* ===== CONTACT ===== */
.contact {
    padding: 100px 6%;
    text-align: center;
    position: relative;
    z-index: 1;
}
.contact h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 14px;
    color: #fff;
}
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}
.contact-info {
    flex: 1;
    min-width: 280px;
    text-align: left;
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}
.info-item h4 {
    margin: 0 0 4px;
    color: #fff;
    font-size: 1.05rem;
}
.info-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.contact-form {
    flex: 1;
    min-width: 280px;
    padding: 36px 32px;
    text-align: left;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    color: var(--text-primary);
    margin-bottom: 6px;
    font-size: 0.88rem;
    font-weight: 600;
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-control:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(59,130,246,0.15);
}
textarea.form-control {
    resize: vertical;
    min-height: 110px;
}
.btn-submit {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    margin-top: 8px;
}

/* ===== GEDEON AI SECTION ===== */
.gideon-section {
    padding: 120px 6%;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.gideon-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.15;
}
.gideon-bg-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(139,92,246,0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(6,182,212,0.12) 0%, transparent 40%),
        rgba(5,10,24,0.75);
}

.gideon-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: -1;
}
.gideon-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(139,92,246,0.15);
    top: -100px;
    right: -100px;
    animation: orb-float 8s ease-in-out infinite alternate;
}
.gideon-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(6,182,212,0.12);
    bottom: -80px;
    left: -80px;
    animation: orb-float 10s ease-in-out infinite alternate-reverse;
}
@keyframes orb-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -20px) scale(1.1); }
}

.gideon-label {
    color: var(--accent-purple);
    border-color: rgba(139,92,246,0.35);
    background: rgba(139,92,246,0.1);
    position: relative;
    z-index: 2;
}

.gideon-heading {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.gideon-gradient-text {
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
}
@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.gideon-tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.gideon-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.gideon-text {
    flex: 1;
    min-width: 340px;
    text-align: left;
}
.gideon-intro {
    font-size: 1.08rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
}
.gideon-intro strong {
    color: #fff;
}

.gideon-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 36px;
}
.gideon-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}
.gideon-feature:hover {
    transform: translateX(6px);
}
.gideon-feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(6,182,212,0.1));
    border: 1px solid rgba(139,92,246,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent-purple);
    transition: transform 0.3s, box-shadow 0.3s;
}
.gideon-feature:hover .gideon-feature-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(139,92,246,0.2);
}
.gideon-feature h4 {
    margin: 0 0 4px;
    font-size: 1rem;
    color: #fff;
}
.gideon-feature p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.gideon-cta-row {
    margin-top: 10px;
}
.btn-gideon {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
}
.btn-gideon:hover {
    box-shadow: 0 10px 35px rgba(139,92,246,0.4), 0 0 60px rgba(139,92,246,0.15);
}

/* Gideon Terminal */
.gideon-terminal-wrap {
    flex: 1;
    min-width: 340px;
    position: sticky;
    top: 100px;
}
.gideon-terminal {
    border-radius: 16px;
    overflow: hidden;
    background: #0c0e1a;
    border: 1px solid rgba(139,92,246,0.25);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.5),
        0 0 40px rgba(139,92,246,0.08),
        0 0 80px rgba(139,92,246,0.04);
    animation: terminal-glow 6s ease-in-out infinite alternate;
}
@keyframes terminal-glow {
    0% { box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 40px rgba(139,92,246,0.08); }
    100% { box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(139,92,246,0.15), 0 0 120px rgba(6,182,212,0.06); }
}

.terminal-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: rgba(20,22,35,0.95);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.terminal-dots {
    display: flex;
    gap: 7px;
}
.tdot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.tdot.red { background: #ff5f57; }
.tdot.yellow { background: #febc2e; }
.tdot.green { background: #28c840; }
.terminal-title {
    flex: 1;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}
.terminal-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-green);
    letter-spacing: 1px;
}
.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-green);
    animation: status-blink 2s ease-in-out infinite;
}
@keyframes status-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.terminal-body {
    padding: 20px 18px;
    min-height: 380px;
    max-height: 480px;
    overflow-y: auto;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    line-height: 1.7;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: rgba(139,92,246,0.3) transparent;
}
.terminal-body::-webkit-scrollbar {
    width: 5px;
}
.terminal-body::-webkit-scrollbar-thumb {
    background: rgba(139,92,246,0.3);
    border-radius: 3px;
}

.terminal-line {
    margin-bottom: 4px;
    animation: line-in 0.3s ease-out;
    word-break: break-word;
}
@keyframes line-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.tag {
    font-weight: 700;
}
.tag-alert { color: #f87171; }
.tag-gideon { color: #a78bfa; }
.tag-action { color: #06b6d4; }
.tag-success { color: #34d399; }
.tag-user { color: #60a5fa; }

.terminal-line.user-line {
    background: rgba(96, 165, 250, 0.06);
    border-left: 2px solid rgba(96, 165, 250, 0.3);
    padding: 4px 10px;
    margin: 6px 0;
    border-radius: 0 6px 6px 0;
}

.line-content {
    color: rgba(255,255,255,0.8);
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: var(--accent-purple);
    animation: cursor-blink 1s step-end infinite;
    vertical-align: text-bottom;
    margin-left: 2px;
}
@keyframes cursor-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Gideon nav link highlight */
.nav-gideon {
    color: var(--accent-purple) !important;
    font-weight: 700 !important;
}

/* Gideon hero CTA */
.btn-gideon-cta {
    border-color: rgba(139,92,246,0.4) !important;
}
.btn-gideon-cta:hover {
    border-color: var(--accent-purple) !important;
    background: rgba(139,92,246,0.1) !important;
}

/* Gideon trust banner */
.trust-banner-gideon {
    background: linear-gradient(90deg, rgba(139,92,246,0.1), rgba(6,182,212,0.08), rgba(139,92,246,0.1));
}
.gideon-dot {
    background: var(--accent-purple) !important;
    box-shadow: 0 0 8px rgba(139,92,246,0.4) !important;
}

/* Gideon module highlight */
.module-gideon {
    border-color: rgba(139,92,246,0.4) !important;
    background: rgba(139,92,246,0.08) !important;
    position: relative;
}
.module-gideon:hover {
    border-color: var(--accent-purple) !important;
    box-shadow: 0 20px 50px rgba(139,92,246,0.15), 0 0 30px rgba(139,92,246,0.08) !important;
}
.gideon-icon-wrap {
    background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(6,182,212,0.12)) !important;
    color: var(--accent-purple) !important;
    border-color: rgba(139,92,246,0.25) !important;
}
.gideon-module-badge {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    color: #fff;
}

/* ===== GEDEON STATS ROW ===== */
.gideon-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 60px 6%;
    background:
        linear-gradient(135deg, rgba(139,92,246,0.06), rgba(6,182,212,0.04)),
        rgba(5,10,24,0.7);
    border-top: 1px solid rgba(139,92,246,0.15);
    border-bottom: 1px solid rgba(139,92,246,0.15);
    position: relative;
    z-index: 1;
}
.gideon-stat-item {
    text-align: center;
    min-width: 160px;
}
.gideon-stat-big {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-mono);
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.gideon-stat-pct {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gideon-stat-desc {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.gideon-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(139,92,246,0.2);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 6%;
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(5,10,24,0.4);
    overflow: hidden;
}
.testimonials h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 14px;
    color: #fff;
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonial-card {
    min-width: 100%;
    padding: 40px 36px;
    text-align: left;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    backdrop-filter: blur(12px);
}
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: #f59e0b;
    font-size: 1rem;
}
.testimonial-quote {
    font-size: 1.15rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid rgba(139,92,246,0.4);
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(6,182,212,0.15));
    border: 1px solid rgba(139,92,246,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
    font-size: 1.1rem;
}
.testimonial-author h4 {
    margin: 0;
    font-size: 1rem;
    color: #fff;
}
.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== FLOATING CTA BAR ===== */
.floating-cta {
    position: fixed;
    bottom: -80px;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 14px 6%;
    background: rgba(5,10,24,0.92);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(139,92,246,0.25);
    transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.floating-cta.visible {
    bottom: 0;
}
.floating-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.floating-cta-text {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.floating-cta-text i {
    color: var(--accent-purple);
    font-size: 1.2rem;
}
.btn-floating {
    padding: 10px 24px;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* ===== FOOTER ===== */
footer {
    background: rgba(5,10,24,0.8);
    border-top: 1px solid var(--border-subtle);
    padding: 40px 6%;
    text-align: center;
    position: relative;
    z-index: 1;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-toggle { display: inline-flex; }

    header.site-header {
        flex-wrap: wrap;
        padding: 14px 5%;
    }
    header.site-header .primary-nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        flex: 1 1 100%;
        order: 3;
        width: 100%;
    }
    header.site-header.nav-open .primary-nav {
        display: flex;
        max-height: 70vh;
        overflow-y: auto;
        padding: 10px 0 16px;
        margin-top: 12px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    header.site-header .primary-nav a {
        margin-left: 0;
        padding: 14px 4px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        font-size: 1rem;
    }
    header.site-header .primary-nav a.btn-cta {
        margin-left: 0;
        margin-top: 10px;
        justify-content: center;
        text-align: center;
        border-bottom: none;
        padding: 14px 18px;
    }
}

@media (max-width: 768px) {
    .hero { padding: 120px 5% 40px; }
    .hero h1 { font-size: clamp(2rem, 7vw, 2.8rem); }

    .hero-stats { gap: 16px; }
    .hero-stat-number { font-size: 1.4rem; }
    .hero-stat-divider { display: none; }

    .deployment-grid,
    .pricing-grid { grid-template-columns: 1fr; }

    .modules-grid, .connectors-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }


    .carousel-arrow { width: 40px; height: 40px; font-size: 14px; }
    .carousel-arrow.left { left: 4px; }
    .carousel-arrow.right { right: 4px; }

    .os-grid { gap: 28px 20px; }

    .about-stats {
        grid-template-columns: 1fr;
    }
    .stat-wide { grid-column: span 1; }

    .contact-form { padding: 24px 18px; }
    .form-control { font-size: 16px; }

    .trust-track { font-size: 0.7rem; letter-spacing: 2px; }

    /* Gideon responsive */
    .gideon-section { padding: 80px 5%; }
    .gideon-heading { font-size: clamp(1.8rem, 6vw, 2.6rem); }
    .gideon-tagline { font-size: 1.1rem; margin-bottom: 40px; }
    .gideon-text { min-width: 100%; }
    .gideon-terminal-wrap {
        min-width: 100%;
        position: static;
    }
    .terminal-body {
        min-height: 280px;
        max-height: 360px;
        font-size: 0.75rem;
    }

    /* Gideon stats responsive */
    .gideon-stats-row { gap: 20px; padding: 40px 5%; }
    .gideon-stat-big { font-size: 2rem; }
    .gideon-stat-pct { font-size: 1.2rem; }
    .gideon-stat-divider { display: none; }
    .gideon-stat-item { min-width: 120px; }

    /* Testimonials responsive */
    .testimonial-card { padding: 28px 22px; }
    .testimonial-quote { font-size: 1rem; }

    /* Floating CTA responsive */
    .floating-cta-inner { flex-direction: column; text-align: center; gap: 10px; }
    .floating-cta-text { font-size: 0.9rem; }
    .btn-floating { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn-glow, .btn-outline { justify-content: center; text-align: center; }

    header.site-header { padding: 12px 4%; }
    .logo { font-size: 1.35rem; }
}
