/* ===========================
   CSS Reset & Base Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Swiss Precision Color Palette */
    --swiss-cream: #faf8f3;
    --swiss-charcoal: #1a1a1a;
    --swiss-red: #d32f2f;
    --swiss-gold: #b8860b;
    --teal-accent: #00A7B5;
    --teal-dark: #008A96;
    
    /* Backwards compatibility */
    --bg-cream: #faf8f3;
    --bg-white: #FFFFFF;
    --bg-tan: #f0ede8;
    --bg-light-blue: #D4E8E8;
    --bg-lavender: #E8E3F0;
    
    --primary-teal: #00A7B5;
    --primary-teal-dark: #008A96;
    --accent-coral: #d32f2f;
    --accent-orange: #b8860b;
    
    --text-dark: #1a1a1a;
    --text-medium: #4A4A4A;
    --text-light: #767676;
    
    --border-subtle: #e0d9d3;
    
    /* Typography - Swiss Precision */
    --font-main: 'IBM Plex Sans', system-ui, sans-serif;
    --font-heading: 'Space Grotesk', 'IBM Plex Sans', sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    
    /* Spacing */
    --nav-height: 70px;
    --container-width: 1600px;
    --section-padding: 120px;
    --card-radius: 16px;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--swiss-charcoal);
    background: var(--swiss-cream);
    position: relative;
    overflow-x: hidden;
    font-size: 16px;
}

/* Refined grid background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--teal-accent) 1px, transparent 1px),
        linear-gradient(90deg, var(--teal-accent) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
}

/* Full-Page Background Attractor */
.background-attractor-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: auto; /* Allow interaction for zoom */
}

.background-attractor-canvas canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* Zoom Hint - Hidden */
.zoom-hint {
    display: none; /* Remove the floating zoom hint */
}

.zoom-hint svg {
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.7;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-5px);
    }
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 80px;
}

/* ===========================
   Typography System - Anthropic-Inspired
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

h2 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

h4 {
    font-size: 24px;
    font-weight: 600;
}

p {
    font-family: var(--font-main);
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    font-weight: 300;
    font-size: 18px;
    line-height: 1.7;
}

a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-teal-dark);
}

/* Code and monospace styling */
code, pre, kbd, samp {
    font-family: var(--font-mono);
    font-size: 0.9em;
    font-weight: 400;
}

code {
    background: var(--bg-tan);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--text-dark);
}

pre {
    background: var(--bg-tan);
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    line-height: 1.6;
}

pre code {
    background: none;
    padding: 0;
}

/* ===========================
   Navigation Bar
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background-color: var(--bg-cream);
    border-bottom: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    flex-shrink: 0;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo a:hover .logo-img {
    opacity: 0.8;
}

/* Navigation Menu */
.nav-menu {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 15px;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-medium);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--text-dark);
}

/* Search Toggle Button */
.search-toggle {
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    margin-left: 20px;
}

.search-toggle:hover {
    color: var(--swiss-red);
}

.search-toggle svg {
    width: 20px;
    height: 20px;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.95);
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 90%;
    max-width: 700px;
    background: var(--swiss-cream);
    border: 2px solid var(--swiss-charcoal);
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.search-overlay.active .search-container {
    transform: translateY(0);
}

.search-header {
    display: flex;
    align-items: center;
    padding: 24px;
    border-bottom: 2px solid var(--swiss-charcoal);
}

#searchInput {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--swiss-charcoal);
    outline: none;
}

#searchInput::placeholder {
    color: rgba(26, 26, 26, 0.4);
}

.search-close {
    background: none;
    border: none;
    color: var(--swiss-charcoal);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    margin-left: 16px;
}

.search-close:hover {
    color: var(--swiss-red);
}

.search-results {
    overflow-y: auto;
    max-height: calc(80vh - 100px);
    padding: 8px;
}

.search-result-item {
    display: block;
    padding: 20px 24px;
    text-decoration: none;
    color: var(--swiss-charcoal);
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.search-result-item:hover {
    background: var(--swiss-charcoal);
    color: var(--swiss-cream);
    padding-left: 32px;
}

.search-result-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--swiss-red);
    transition: width 0.3s ease;
}

.search-result-item:hover::before {
    width: 4px;
}

.search-result-category {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--swiss-red);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.search-result-item:hover .search-result-category {
    color: var(--swiss-gold);
}

.search-result-title {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    margin: 0 0 8px 0;
    transition: color 0.3s ease;
}

.search-result-excerpt {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-medium);
    margin: 0;
    transition: color 0.3s ease;
}

.search-result-item:hover .search-result-excerpt {
    color: rgba(250, 248, 243, 0.8);
}

.search-result-item mark {
    background: var(--swiss-gold);
    color: var(--swiss-charcoal);
    padding: 2px 4px;
    border-radius: 2px;
    font-weight: 600;
}

.search-result-item:hover mark {
    background: var(--swiss-red);
    color: var(--swiss-cream);
}

.search-no-results {
    padding: 60px 24px;
    text-align: center;
    color: var(--text-medium);
}

.search-no-results p {
    font-size: 1.1rem;
}

/* CTA Button */
.nav-cta {
    flex-shrink: 0;
    margin-left: 40px;
}

.btn-demo {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--text-dark);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-demo:hover {
    background-color: var(--text-medium);
    transform: translateY(-2px);
}

/* ===========================
   Main Content
   =========================== */
main {
    margin-top: var(--nav-height);
    min-height: calc(100vh - var(--nav-height) - 100px);
    position: relative;
    z-index: 1; /* Above background attractor */
    pointer-events: auto; /* Clickable content */
}

/* Hero Section */
/* ===========================
   Hero Section - Swiss Precision
   =========================== */
.hero-anthropic {
    min-height: 0;
    display: none;
}

/* ===========================================
   Hero iPhone — Full-Viewport Landing
   =========================================== */

.hero-iphone {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 100px 0 40px;
    background: transparent;
    overflow: hidden;
}

/* Let the particle attractor show through */
.hero-iphone::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(13,13,13,0.92) 0%,
        rgba(26,26,26,0.88) 40%,
        rgba(15,26,28,0.9) 100%
    );
    z-index: 0;
}

/* Subtle grid overlay */
.hero-iphone::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 0;
    pointer-events: none;
}

.hero-iphone__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 48px;
}

/* --- Hero Content (Left) --- */
.hero-iphone__content {
    flex: 1;
    min-width: 0;
}

.hero-iphone__tag {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--swiss-red);
    margin-bottom: 24px;
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards 0.2s;
}

.hero-iphone__title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards 0.35s;
}

.hero-iphone__title-accent {
    background: linear-gradient(135deg, var(--teal-accent), #00d4e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-iphone__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards 0.5s;
}
.hero-iphone__subtitle strong {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

.hero-iphone__platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards 0.65s;
}

.hero-iphone__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards 0.8s;
}

.hero-iphone__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--teal-accent);
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.01em;
}
.hero-iphone__cta:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,167,181,0.35);
}
.hero-iphone__cta svg {
    transition: transform 0.3s ease;
}
.hero-iphone__cta:hover svg {
    transform: translateX(4px);
}

.hero-iphone__cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 28px;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    transition: all 0.3s ease;
}
.hero-iphone__cta-secondary:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.05);
}

.hero-iphone__proof {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.02em;
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards 0.95s;
}

/* --- Hero Device (Right) --- */
.hero-iphone__device-wrap {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 380px;
    padding: 50px 30px 70px;
    opacity: 0;
    animation: heroPhoneIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

.iphone-frame--hero {
    width: 300px;
    height: 624px;
}

.iphone-glow--hero {
    width: 260px;
    height: 80px;
    background: radial-gradient(ellipse at center, rgba(0,167,181,0.2) 0%, transparent 70%);
}

/* --- Scroll Indicator --- */
.hero-iphone__scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.25);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards 1.2s;
}

.scroll-dot {
    animation: scrollBounce 2s ease-in-out infinite;
}

/* --- Hero Animations --- */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroPhoneIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes scrollBounce {
    0%, 100% { cy: 8; }
    50% { cy: 16; }
}

/* --- Hero Responsive --- */
@media (max-width: 1024px) {
    .hero-iphone__inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 0 32px;
    }
    .hero-iphone__subtitle {
        max-width: none;
    }
    .hero-iphone__platforms {
        justify-content: center;
    }
    .hero-iphone__actions {
        justify-content: center;
    }
    .hero-iphone__device-wrap {
        width: 320px;
    }
    .iphone-frame--hero {
        width: 260px;
        height: 540px;
    }
}

@media (max-width: 600px) {
    .hero-iphone {
        padding: 80px 0 40px;
    }
    .hero-iphone__inner {
        padding: 0 20px;
        gap: 32px;
    }
    .hero-iphone__title {
        font-size: 32px;
    }
    .hero-iphone__actions {
        flex-direction: column;
    }
    .hero-iphone__device-wrap {
        width: 260px;
    }
    .iphone-frame--hero {
        width: 220px;
        height: 458px;
        border-radius: 36px;
        padding: 7px;
    }
    .iphone-frame--hero .iphone-screen {
        border-radius: 30px;
    }
    .iphone-frame--hero .iphone-dynamic-island {
        width: 60px;
        height: 19px;
        top: 15px;
    }
    .hero-iphone__scroll {
        display: none;
    }
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: flex-start;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-left h1 {
    font-family: var(--font-heading);
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 32px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--swiss-charcoal);
}

.hero-link {
    text-decoration: none;
    color: var(--teal-accent);
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.hero-link:hover {
    color: var(--teal-dark);
}

.hero-description {
    font-family: var(--font-main);
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 48px;
    font-weight: 300;
    max-width: 800px;
}

.hero-right {
    display: none;
}

.hero-illustration {
    width: 100%;
    max-width: 400px;
}

.hero-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 167, 181, 0.15));
}

/* Animated network nodes */
.hero-svg circle {
    animation: pulse 3s ease-in-out infinite;
}

.hero-svg circle:nth-child(3) {
    animation-delay: 0.5s;
}

.hero-svg circle:nth-child(4) {
    animation-delay: 1s;
}

.hero-svg circle:nth-child(5) {
    animation-delay: 1.5s;
}

.hero-svg circle:nth-child(6) {
    animation-delay: 2s;
}

/* Animated connection lines */
.hero-svg line {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawLine 4s ease-in-out infinite;
}

.hero-svg line:nth-child(7) {
    animation-delay: 0.3s;
}

.hero-svg line:nth-child(8) {
    animation-delay: 0.6s;
}

.hero-svg line:nth-child(9) {
    animation-delay: 0.9s;
}

.hero-svg line:nth-child(10) {
    animation-delay: 1.2s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes drawLine {
    0% {
        stroke-dashoffset: 300;
        opacity: 0.2;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 0.6;
    }
    100% {
        stroke-dashoffset: -300;
        opacity: 0.2;
    }
}

/* ===========================
   Product Announcement Card - Swiss Precision
   =========================== */
.product-announcement {
    padding: 120px 0;
    background: var(--swiss-cream);
}

.announcement-card {
    background: transparent;
    border: 2px solid var(--swiss-charcoal);
    border-radius: var(--card-radius);
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(26, 26, 26, 0.12);
}

.announcement-main {
    padding: 56px 48px;
    border-bottom: 2px solid var(--swiss-charcoal);
}

.announcement-main h2 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
}

.announcement-main p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: var(--text-medium);
    font-weight: 200;
}

.btn-dark {
    display: inline-block;
    padding: 16px 32px;
    background: var(--swiss-charcoal);
    color: var(--swiss-cream);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: var(--teal-accent);
    transform: translateX(4px);
}

.announcement-links {
    padding: 48px;
}

.announcement-links h3 {
    font-family: var(--font-mono);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 32px;
    color: var(--swiss-red);
    font-weight: 600;
}

.announcement-link-card {
    background: transparent;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.announcement-link-card:last-child {
    border-bottom: none;
}

.announcement-link-card::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--swiss-red);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-link-card:hover {
    transform: translateX(8px);
    padding-left: 16px;
}

.announcement-link-card:hover::before {
    width: 100%;
}

.announcement-link-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: var(--swiss-charcoal);
}

.announcement-link-card a {
    font-size: 24px;
    color: var(--text-medium);
    text-decoration: none;
    transition: all 0.3s ease;
}

.announcement-link-card:hover a {
    color: var(--swiss-red);
    transform: translateX(8px);
}

/* ===========================
   Visual Storytelling Section
   =========================== */
.visual-story {
    padding: 100px 0;
    background: var(--bg-cream);
    overflow: hidden;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-visual {
    position: relative;
    height: 500px;
    background: radial-gradient(circle at center, rgba(0, 167, 181, 0.05) 0%, transparent 70%);
    border-radius: var(--card-radius);
    overflow: hidden;
}

.story-attractor-canvas {
    width: 100%;
    height: 100%;
}

.story-attractor-canvas canvas {
    width: 100% !important;
    height: 100% !important;
}

.story-quote {
    padding: 40px 0;
}

.quote-mark {
    font-size: 120px;
    line-height: 0.5;
    color: var(--primary-teal);
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.quote-text {
    font-size: 28px;
    line-height: 1.5;
    color: var(--text-dark);
    font-weight: 400;
    font-style: italic;
}

/* ===========================
   Mission & Philosophy Section
   =========================== */
.mission-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.mission-intro {
    margin-bottom: 60px;
}

.mission-lead {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-dark);
    max-width: 800px;
    margin-bottom: 40px;
}

.mission-intro h2 {
    height: 20px; /* Spacer like Anthropic */
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.mission-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.mission-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mission-card {
    background: var(--swiss-cream);
    border: 2px solid var(--swiss-charcoal);
    padding: 36px;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--swiss-red);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card:nth-child(2) {
    background: var(--swiss-cream);
}

.mission-card:nth-child(3) {
    background: var(--swiss-cream);
}

.mission-card:hover {
    transform: translateY(-8px);
    background: var(--swiss-charcoal);
    color: var(--swiss-cream);
    box-shadow: 0 16px 32px rgba(26, 26, 26, 0.12);
}

.mission-card:hover::before {
    width: 100%;
}

.mission-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--swiss-charcoal);
    font-family: var(--font-heading);
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card:hover h3 {
    color: var(--swiss-cream);
}

.mission-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--swiss-charcoal);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card:hover .mission-card-link {
    color: var(--swiss-cream);
    gap: 12px;
}

.mission-card-link::after {
    content: '→';
    font-size: 18px;
}

.mission-card:hover .mission-card-link {
    gap: 12px;
    color: var(--primary-teal);
}

/* ===========================
   Featured Content Grid - Swiss Precision Style
   =========================== */
.featured-content {
    padding: 120px 0;
    background: var(--swiss-cream);
}

.featured-header {
    margin-bottom: 80px;
}

.featured-header h2 {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--swiss-red);
    margin-bottom: 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--swiss-charcoal);
}

.featured-card {
    background: var(--swiss-cream);
    padding: 48px 36px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--swiss-red);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card:hover {
    background: var(--swiss-charcoal);
    color: var(--swiss-cream);
    transform: translateY(-8px);
}

.featured-card:hover::before {
    width: 100%;
}

.featured-category {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.category-tag {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    color: var(--swiss-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.featured-card:hover .category-tag {
    color: var(--swiss-red);
}

.featured-date {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-light);
}

.featured-card:hover .featured-date {
    color: rgba(250, 248, 243, 0.6);
}

.featured-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--swiss-charcoal);
    margin-bottom: 16px;
    line-height: 1.2;
}

.featured-card:hover h3 {
    color: var(--swiss-cream);
}

.featured-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 24px;
    flex-grow: 1;
    font-weight: 400;
}

.featured-card:hover p {
    color: rgba(250, 248, 243, 0.8);
}

.featured-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.2s ease, color 0.2s ease;
}

.featured-link::after {
    content: '→';
    font-size: 18px;
}

.featured-card:hover .featured-link {
    gap: 12px;
    color: var(--primary-teal);
}

/* ===========================
   Resource Pages
   =========================== */
.resource-hero {
    padding: 100px 0 60px;
    background: var(--bg-cream);
    border-bottom: 1px solid var(--border-subtle);
}

.resource-breadcrumb {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.resource-breadcrumb a {
    color: var(--primary-teal);
    text-decoration: none;
}

.resource-breadcrumb a:hover {
    text-decoration: underline;
}

.resource-hero h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.resource-lead {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-medium);
    max-width: 1000px;
}

.resource-content {
    padding: 80px 0;
    background: var(--bg-cream);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 80px;
}

.content-main {
    max-width: 800px;
}

.content-main h2 {
    font-size: 36px;
    font-weight: 400;
    margin: 60px 0 24px 0;
    color: var(--text-dark);
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main h3 {
    font-size: 24px;
    font-weight: 500;
    margin: 40px 0 16px 0;
    color: var(--text-dark);
}

.content-main h4 {
    font-size: 18px;
    font-weight: 500;
    margin: 24px 0 12px 0;
    color: var(--text-dark);
}

.content-main p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.content-main ul {
    margin: 20px 0;
    padding-left: 24px;
}

.content-main ul li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.process-list {
    counter-reset: process-counter;
    list-style: none;
    padding-left: 0;
}

.process-list li {
    counter-increment: process-counter;
    position: relative;
    padding-left: 50px;
    margin-bottom: 32px;
}

.process-list li::before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    background: var(--primary-teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.capability-section {
    margin: 40px 0;
    padding: 32px;
    background: white;
    border-radius: 16px;
}

.use-case {
    margin: 40px 0;
    padding: 32px;
    background: var(--bg-tan);
    border-radius: 16px;
    border-left: 4px solid var(--primary-teal);
}

.example-box {
    margin: 20px 0;
    padding: 24px;
    background: var(--bg-light-blue);
    border-radius: 12px;
}

.example-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.tech-card {
    background: var(--swiss-cream);
    border: 2px solid var(--swiss-charcoal);
    padding: 28px;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--swiss-red);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(26, 26, 26, 0.08);
}

.tech-card:hover::before {
    width: 100%;
}

.insight-box {
    margin: 40px 0;
    padding: 32px;
    background: var(--bg-lavender);
    border-radius: 16px;
}

.cta-box {
    margin: 60px 0 0;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--teal-dark) 100%);
    border-radius: 16px;
    text-align: center;
    color: white;
}

.cta-box h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 16px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    margin-bottom: 24px;
}

.cta-box .btn-primary {
    background: white;
    color: var(--primary-teal);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-box .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.content-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-section {
    margin-bottom: 32px;
    padding: 24px;
    background: white;
    border-radius: 12px;
}

.sidebar-section h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-links {
    list-style: none;
    padding: 0;
}

.sidebar-links li {
    margin-bottom: 12px;
}

.sidebar-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.sidebar-links a:hover {
    color: var(--primary-teal);
}

.fact-box p,
.sample-box p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.fact-box strong {
    color: var(--text-dark);
}

/* Responsive for resource pages */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-sidebar {
        position: static;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .resource-hero h1 {
        font-size: 36px;
    }

    .resource-lead {
        font-size: 18px;
    }

    .content-main h2 {
        font-size: 28px;
    }

    .process-list li {
        padding-left: 50px;
    }
}

.hero-capabilities h3 {
    font-size: 18px;
    color: var(--dark-blue);
    margin-bottom: 16px;
    font-weight: 600;
}

.capabilities-list {
    list-style: none;
    padding: 0;
}

.capabilities-list li {
    margin-bottom: 14px;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark-gray);
}

.capabilities-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 18px;
}

.capabilities-list li strong {
    color: var(--dark-blue);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Visual Placeholder */
.hero-visual-placeholder {
    position: relative;
    width: 100%;
    max-width: 500px;
    padding: 60px;
    text-align: center;
    background: rgba(255, 255, 255, 0.90); /* Semi-transparent - attractor visible, text readable */
    backdrop-filter: blur(12px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.2);
    border: 2px solid rgba(0, 102, 204, 0.2);
}

.visual-icon {
    margin-bottom: 30px;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.visual-icon svg {
    filter: drop-shadow(0 4px 12px rgba(0, 102, 204, 0.3));
}

.visual-text h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.visual-text p {
    color: var(--medium-gray);
    font-size: 1rem;
    margin: 0;
}

/* Legacy styles for fallback */
.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
}

.hero-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.15);
}

.draft-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 4rem;
    font-weight: bold;
    color: rgba(0, 102, 204, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    pointer-events: none;
    user-select: none;
}

/* ===========================
   Demo Scenario Section
   =========================== */
.demo-scenario {
    padding: 80px 0;
    background: var(--bg-cream); /* Match site color palette */
    position: relative;
}

.demo-header {
    text-align: center;
    margin-bottom: 60px;
}

.demo-header h2 {
    font-size: 2.5rem;
    color: #1a3a52;
    margin-bottom: 15px;
}

.demo-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.demo-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.demo-card {
    background: var(--swiss-cream);
    border: 2px solid var(--swiss-charcoal);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.demo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--swiss-red);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.demo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(26, 26, 26, 0.12);
}

.demo-card:hover::before {
    width: 100%;
}

.demo-question {
    background: var(--swiss-charcoal);
    color: var(--swiss-cream);
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    min-height: 120px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.demo-question p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
    font-family: var(--font-heading);
    color: var(--swiss-cream);
}

.demo-answer {
    padding: 30px;
    background: #ffffff;
    line-height: 1.7;
}

.demo-result p {
    margin: 0 0 16px 0;
    color: #2c2c2c;
    font-size: 0.95rem;
}

.demo-result strong {
    color: #1a1a1a;
    font-weight: 600;
}

.demo-result ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.demo-result ul li {
    padding: 10px 0;
    position: relative;
    color: #2c2c2c;
    line-height: 1.7;
    font-size: 0.95rem;
    padding-left: 0;
    border-bottom: 1px solid #f0f0f0;
}

.demo-result ul li:last-child {
    border-bottom: none;
}

.demo-result ul li:before {
    content: "✓";
    position: relative;
    left: 0;
    margin-right: 10px;
    color: #10a37f;
    font-weight: bold;
    font-size: 1.1rem;
}

.demo-insight {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 20px;
    padding: 16px;
    background: #f7f7f8;
    border-left: 3px solid #10a37f;
    border-radius: 4px;
    line-height: 1.6;
}

.demo-cta {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #E6F2FF 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid #0066CC;
}

.demo-cta-text {
    font-size: 1.25rem;
    color: #1a3a52;
    margin-bottom: 25px;
}

.demo-cta-text strong {
    color: #0066CC;
    font-weight: 700;
}

/* Responsive Demo Section */
@media (max-width: 768px) {
    .demo-scenario {
        padding: 40px 20px;
        margin: 20px 0 !important; /* Remove side margins on mobile - full width */
        border-radius: 0; /* No rounded corners on mobile */
    }
    
    .hero {
        padding: 40px 20px;
        padding-top: calc(var(--nav-height) + 40px); /* Add space for fixed navbar */
        margin: 0 !important; /* Remove all margins on mobile - full width */
        border-radius: 0;
    }
    
    .footer {
        margin: 0 !important; /* Remove all margins on mobile - full width */
        border-radius: 0;
        padding: 40px 20px;
    }
    
    .container {
        padding: 0 15px; /* Minimal padding on mobile */
    }
    
    .background-attractor-canvas {
        display: none; /* Hide attractor on mobile to improve performance and readability */
    }
    
    .demo-header h2 {
        font-size: 2rem;
    }
    
    .demo-subtitle {
        font-size: 1.1rem;
    }
    
    .demo-examples {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .demo-question {
        padding: 20px;
    }
    
    .demo-question p {
        font-size: 1rem;
    }
    
    .demo-cta-text {
        font-size: 1.1rem;
    }
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--bg-cream);
    color: var(--text-dark);
    padding: 80px 0 0;
    border-top: 1px solid var(--border-subtle);
}

.footer-main {
    padding: 0 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 60px;
}

.footer-column h4 {
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.footer-column ul li a:hover {
    color: var(--primary-teal);
    text-decoration: underline;
}

.footer-company-info {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.footer-company-info p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 4px 0;
}

/* Footer Bottom */
.footer-bottom {
    background: var(--bg-cream);
    padding: 30px 0;
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 14px;
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-links a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
}

.social-links a:hover {
    color: var(--primary-teal);
    transform: translateY(-2px);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        height: auto;
        padding: 15px 20px;
    }
    
    .nav-toggle {
        display: block; /* Show hamburger menu on mobile */
    }
    
    .nav-menu {
        display: none; /* Hide navigation menu on mobile */
    }
    
    .nav-links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-lead {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        text-align: center;
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    /* New Anthropic-inspired sections responsive */
    .hero-anthropic {
        padding: 80px 0 60px;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .hero-right {
        display: none; /* Hide illustration on mobile */
    }

    .announcement-card {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        gap: 32px;
    }

    .announcement-links {
        grid-template-columns: 1fr;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-visual {
        height: 300px;
    }

    .quote-text {
        font-size: 20px;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }
}

/* Tablet breakpoint */
@media (max-width: 1024px) and (min-width: 769px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Large screens - 3 columns */
@media (min-width: 1025px) {
    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===========================
   Solutions Page Styles
   =========================== */
.solutions-overview {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.section-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 60px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--swiss-charcoal);
    margin-bottom: 60px;
}

.solution-card {
    background: var(--swiss-cream);
    border: 2px solid var(--swiss-charcoal);
    border-radius: 0;
    padding: 48px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--swiss-red);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover {
    transform: translateY(-8px);
    background: var(--swiss-charcoal);
    color: var(--swiss-cream);
    box-shadow: 0 16px 32px rgba(26, 26, 26, 0.12);
}

.solution-card:hover::before {
    width: 100%;
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.solution-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.solution-card h3 {
    font-size: 1.5rem;
    color: var(--swiss-charcoal);
    font-weight: 700;
    margin: 0;
    font-family: var(--font-heading);
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover h3 {
    color: var(--swiss-cream);
}

.solution-description {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover .solution-description {
    color: rgba(250, 248, 243, 0.8);
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-features li {
    padding: 10px 0;
    color: var(--text-medium);
    position: relative;
    padding-left: 24px;
    line-height: 1.6;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover .solution-features li {
    color: rgba(250, 248, 243, 0.85);
}

.solution-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--swiss-gold);
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover .solution-features li::before {
    color: var(--swiss-red);
}
    font-size: 0.95rem;
    position: relative;
    padding-left: 30px;
    line-height: 1.6;
}

.solution-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10a37f;
    font-weight: bold;
    font-size: 1.2rem;
}

.solutions-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #E6F2FF 0%, #ffffff 100%);
    border-radius: 16px;
    border: 2px solid var(--primary-blue);
}

.solutions-cta h3 {
    font-size: 2rem;
    color: var(--deep-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.solutions-cta p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Simplified Footer */
.footer-simple {
    background: linear-gradient(135deg, #1a3a52 0%, #0066CC 100%);
    color: var(--white);
    padding: 40px 0 20px;
    margin-top: 80px;
}

.footer-simple-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-simple-info {
    flex: 1;
    min-width: 300px;
}

.footer-simple-info p {
    margin: 8px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.footer-simple-info strong {
    color: var(--white);
    font-weight: 600;
}

.footer-simple-info a {
    color: var(--light-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-simple-info a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-simple-links {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-simple-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-simple-links a:hover {
    color: var(--white);
}

.footer-simple-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-simple-copyright p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Responsive Solutions Page */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .solution-card {
        padding: 30px;
    }
    
    .solutions-cta {
        padding: 40px 20px;
    }
    
    .solutions-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
    }
    
    .footer-simple-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .footer-simple-links {
        justify-content: center;
    }
    
    /* Hero Responsive */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual-placeholder {
        padding: 40px;
        max-width: 100%;
    }
    
    .visual-icon svg {
        width: 80px;
        height: 80px;
    }
    
    .visual-text h3 {
        font-size: 1.2rem;
    }
    
    .visual-text p {
        font-size: 0.9rem;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-lead {
        font-size: 16px;
    }
    
    /* Zoom hint mobile */
    .zoom-hint {
        bottom: 20px;
        right: 20px;
        left: 20px;
        justify-content: center;
        font-size: 12px;
        padding: 10px 16px;
    }
    
    .zoom-hint span {
        display: inline;
    }
}

/* ===========================
   Mobile Navigation (Hamburger Menu)
   =========================== */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--swiss-charcoal);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 999;
        max-height: calc(100vh - var(--nav-height));
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-links li {
        border-bottom: 1px solid rgba(0, 102, 204, 0.1);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 15px 10px;
        font-size: 16px;
    }
    
    .nav-cta {
        margin-top: 15px;
        width: 100%;
    }
    
    .nav-cta .btn-demo {
        display: block;
        width: 100%;
        text-align: center;
    }
}

/* ===========================
   Modal Styles
   =========================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    margin: auto;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-bottom: 2px solid #e0e0e0;
    background: linear-gradient(135deg, #E6F2FF 0%, #ffffff 100%);
    border-radius: 16px 16px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--deep-blue);
    font-weight: 700;
}

.modal-close {
    font-size: 2.5rem;
    color: var(--medium-gray);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-blue);
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px;
}

.modal-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 30px;
    font-style: italic;
}

.model-section {
    margin-bottom: 35px;
}

.model-section:last-child {
    margin-bottom: 0;
}

.model-section h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 600;
    border-left: 4px solid var(--primary-blue);
    padding-left: 15px;
}

.model-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.model-section li {
    padding: 10px 0 10px 30px;
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
}

.model-section li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10a37f;
    font-weight: bold;
    font-size: 1.2rem;
}

.modal-footer {
    padding: 20px 40px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: flex-end;
    background: #f8f9fa;
    border-radius: 0 0 16px 16px;
}

.btn-models {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-models:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* Modal Mobile Responsive */
@media (max-width: 768px) {
    .modal {
        padding: 0;
        align-items: flex-start;
    }
    
    .modal-content {
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
        width: 100%;
    }
    
    .modal-header {
        padding: 20px;
        border-radius: 0;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 2rem;
    }
    
    .modal-body {
        padding: 25px 20px;
    }
    
    .modal-subtitle {
        font-size: 1rem;
    }
    
    .model-section h3 {
        font-size: 1.2rem;
    }
    
    .model-section li {
        font-size: 0.9rem;
        padding: 8px 0 8px 25px;
    }
    
    .modal-footer {
        padding: 15px 20px;
    }
}

/* ===========================
   Contact Page Styles
   =========================== */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-hero .hero-lead {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
}

.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--deep-blue);
    margin-bottom: 15px;
}

.form-description {
    color: var(--medium-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-privacy {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    border-radius: 6px;
    margin: 10px 0;
}

.privacy-notice {
    font-size: 0.9rem;
    color: #856404;
    margin: 0;
    line-height: 1.6;
}

.privacy-notice a {
    color: #856404;
    text-decoration: underline;
}

.btn-submit {
    margin-top: 10px;
    cursor: pointer;
}

.btn-submit:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.contact-info-wrapper {
    position: sticky;
    top: 100px;
}

.contact-info-wrapper h2 {
    font-size: 2rem;
    color: var(--deep-blue);
    margin-bottom: 25px;
}

.contact-info-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.contact-tagline {
    color: var(--medium-gray);
    font-style: italic;
    margin-bottom: 25px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item strong {
    display: block;
    color: var(--dark-gray);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-item p {
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.6;
}

.contact-item a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

.contact-cta-card {
    background: linear-gradient(135deg, #E6F2FF 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--primary-blue);
    text-align: center;
}

.contact-cta-card h3 {
    font-size: 1.5rem;
    color: var(--deep-blue);
    margin-bottom: 15px;
}

.contact-cta-card p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-social {
    margin-top: 25px;
}

.contact-social h3 {
    font-size: 1.3rem;
    color: var(--deep-blue);
    margin-bottom: 15px;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-links-large a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
}

.social-links-large a:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    transform: translateX(5px);
}

.social-links-large svg {
    flex-shrink: 0;
}

/* Contact Page Mobile */
@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 20px 40px;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero .hero-lead {
        font-size: 1rem;
    }
    
    .contact-section {
        padding: 40px 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .contact-form-wrapper h2 {
        font-size: 1.6rem;
    }
    
    .contact-info-wrapper {
        position: static;
    }
    
    .contact-info-wrapper h2 {
        font-size: 1.6rem;
    }
    
    .contact-info-card {
        padding: 25px 20px;
    }
    
    .contact-cta-card {
        padding: 25px 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevent iOS zoom on focus */
    }
}

/* ===========================
   Legal Pages Styles (Cookies, Privacy, etc.)
   =========================== */
.legal-section {
    padding: 80px 0;
    background: var(--swiss-cream);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-section h1 {
    font-size: 2.5rem;
    color: var(--swiss-charcoal);
    margin-bottom: 20px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.legal-intro {
    color: var(--medium-gray);
    font-size: 1rem;
    margin-bottom: 40px;
}

.legal-content {
    line-height: 1.8;
}

.cookie-summary-box {
    background: var(--swiss-cream);
    border: 2px solid var(--swiss-charcoal);
    padding: 40px;
    border-radius: 0;
    margin-bottom: 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-summary-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--swiss-red);
}

.cookie-summary-box h2 {
    font-size: 1.8rem;
    color: var(--swiss-charcoal);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.summary-highlight {
    font-size: 1.2rem;
    color: var(--swiss-charcoal);
    font-weight: 700;
    margin: 15px 0;
}

.legal-section-content {
    margin-bottom: 40px;
}

.legal-section-content h2 {
    font-size: 1.8rem;
    color: var(--swiss-charcoal);
    margin-bottom: 20px;
    margin-top: 40px;
    font-weight: 600;
    font-family: var(--font-heading);
}

.legal-section-content h3 {
    font-size: 1.3rem;
    color: var(--swiss-charcoal);
    margin-bottom: 15px;
    margin-top: 25px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.legal-section-content p {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.legal-section-content ul,
.legal-section-content ol {
    color: var(--dark-gray);
    margin: 15px 0 15px 30px;
}

.legal-section-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.cookie-status {
    text-align: center;
    margin: 25px 0;
}

.status-badge {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-mono);
    letter-spacing: 0.05em;
}

.status-badge.status-none {
    background: var(--swiss-charcoal);
    color: var(--swiss-cream);
    border: 2px solid var(--swiss-charcoal);
}

.status-no {
    color: #dc3545;
    font-weight: 700;
}

.cookie-table {
    margin: 25px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table thead {
    background: var(--primary-blue);
    color: white;
}

.cookie-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.cookie-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    color: var(--dark-gray);
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:nth-child(even) {
    background: #f8f9fa;
}

.contact-box {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-blue);
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
}

.contact-box p {
    margin: 5px 0;
}

.related-links {
    list-style: none;
    padding: 0;
}

.related-links li {
    margin-bottom: 12px;
}

.related-links a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.related-links a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

/* Legal Pages Mobile */
@media (max-width: 768px) {
    .legal-section {
        padding: 40px 0;
    }
    
    .legal-section h1 {
        font-size: 1.8rem;
    }
    
    .cookie-summary-box {
        padding: 20px;
    }
    
    .cookie-summary-box h2 {
        font-size: 1.4rem;
    }
    
    .summary-highlight {
        font-size: 1rem;
    }
    
    .legal-section-content h2 {
        font-size: 1.4rem;
    }
    
    .legal-section-content h3 {
        font-size: 1.1rem;
    }
    
    .cookie-table {
        font-size: 0.85rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 10px 8px;
    }
    
    .contact-box {
        padding: 15px;
    }
}

/* ===========================
   Additional Mobile Fixes
   =========================== */
@media (max-width: 480px) {
    /* Extra small phones */
    .hero h1 {
        font-size: 24px;
    }
    
    .hero-lead {
        font-size: 15px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .demo-header h2 {
        font-size: 1.6rem;
    }
    
    .demo-card {
        padding: 20px 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 15px;
    }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 38px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    /* Touch devices */
    .btn-primary,
    .btn-secondary,
    .btn-demo,
    .btn-models,
    .btn-submit {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .social-links a,
    .social-links-large a {
        min-height: 44px;
    }
}

/* ===========================
   Security Page Styles
   =========================== */

/* Product Grid for Querex MCP Servers */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--swiss-charcoal);
    margin: 30px 0;
}

.product-card {
    background: var(--swiss-cream);
    padding: 36px;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--swiss-red);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-8px);
    background: var(--swiss-charcoal);
    color: var(--swiss-cream);
    box-shadow: 0 16px 32px rgba(26, 26, 26, 0.12);
}

.product-card:hover::before {
    width: 100%;
}

.product-card h4 {
    color: var(--swiss-charcoal);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover h4 {
    color: var(--swiss-cream);
}

.product-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover p {
    color: rgba(250, 248, 243, 0.8);
}

/* Deployment Tabs - Side by Side */
.deployment-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--swiss-charcoal);
    margin: 30px 0;
}

/* Deployment Options Comparison */
.deployment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.deployment-option {
    background: var(--swiss-cream);
    padding: 40px;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--swiss-charcoal);
    position: relative;
}

.deployment-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--swiss-red);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.deployment-option:hover {
    transform: translateY(-8px);
    background: var(--swiss-charcoal);
    color: var(--swiss-cream);
    box-shadow: 0 16px 32px rgba(26, 26, 26, 0.12);
}

.deployment-option:hover::before {
    width: 100%;
}

.deployment-option.recommended::before {
    width: 100%;
    background: var(--teal-accent);
}

.deployment-option h4 {
    color: var(--swiss-charcoal);
    font-size: 1.4rem;
    margin-bottom: 16px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.deployment-option:hover h4 {
    color: var(--swiss-cream);
}

.deployment-option .badge {
    display: inline-block;
    background: var(--primary-teal);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
}

.deployment-option ul {
    list-style: none;
    margin: 16px 0;
}

.deployment-option ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-medium);
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.deployment-option:hover ul li {
    color: rgba(250, 248, 243, 0.85);
}

.deployment-option ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--swiss-gold);
    font-weight: bold;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.deployment-option:hover ul li:before {
    color: var(--swiss-red);
}

.deployment-option p {\n    color: var(--text-medium);\n    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);\n}\n\n.deployment-option:hover p {\n    color: rgba(250, 248, 243, 0.8);\n}\n\n.deployment-option strong {\n    color: var(--swiss-charcoal);\n    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);\n}\n\n.deployment-option:hover strong {\n    color: var(--swiss-cream);\n}

/* Security Principles Grid - 2x2 */
.principle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--swiss-charcoal);
    margin: 30px 0;
}

.principle-card {
    background: var(--swiss-cream);
    padding: 40px;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.principle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--swiss-red);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.principle-card:hover {
    transform: translateY(-8px);
    background: var(--swiss-charcoal);
    color: var(--swiss-cream);
    box-shadow: 0 16px 32px rgba(26, 26, 26, 0.12);
}

.principle-card:hover::before {
    width: 100%;
}

.principle-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.principle-card h4 {
    color: var(--swiss-charcoal);
    font-size: 1.3rem;
    margin-bottom: 16px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.principle-card:hover h4 {
    color: var(--swiss-cream);
}

.principle-card p {
    color: var(--text-medium);
    line-height: 1.6;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.principle-card:hover p {
    color: rgba(250, 248, 243, 0.8);
}

/* Security Note / Philosophy Card */
.security-note {
    background: var(--swiss-cream);
    border: 2px solid var(--swiss-charcoal);
    padding: 48px;
    margin: 40px 0;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.security-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--swiss-gold);
}

.security-note:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(26, 26, 26, 0.08);
}

.security-note h4 {
    color: var(--swiss-charcoal);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: var(--font-heading);
}

.security-note p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
}

.security-note strong {
    color: var(--swiss-charcoal);
    font-weight: 700;
}

/* Enterprise Data Governance Grid - 3x1 */
.governance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--swiss-charcoal);
    margin: 30px 0;
}

.governance-card {
    background: var(--swiss-cream);
    padding: 40px;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.governance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--swiss-red);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.governance-card:hover {
    transform: translateY(-8px);
    background: var(--swiss-charcoal);
    color: var(--swiss-cream);
    box-shadow: 0 16px 32px rgba(26, 26, 26, 0.12);
}

.governance-card:hover::before {
    width: 100%;
}

.governance-card h3 {
    color: var(--swiss-charcoal);
    font-size: 1.4rem;
    margin-bottom: 24px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.governance-card:hover h3 {
    color: var(--swiss-cream);
}

.governance-card .check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.governance-card .check-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
    color: var(--text-medium);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.governance-card:hover .check-list li {
    border-bottom-color: rgba(250, 248, 243, 0.2);
    color: rgba(250, 248, 243, 0.85);
}

.governance-card .check-list li:last-child {
    border-bottom: none;
}

.governance-card .check-list strong {
    color: var(--swiss-charcoal);
    font-weight: 700;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.governance-card:hover .check-list strong {
    color: var(--swiss-cream);
}

.governance-footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 2px solid var(--swiss-charcoal);
    font-size: 0.9rem;
    color: var(--text-medium);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.governance-card:hover .governance-footer {
    border-top-color: rgba(250, 248, 243, 0.3);
    color: rgba(250, 248, 243, 0.8);
}

.governance-footer strong {
    color: var(--swiss-charcoal);
    font-weight: 700;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.governance-card:hover .governance-footer strong {
    color: var(--swiss-cream);
}

.governance-footer a {
    color: var(--swiss-red);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}

.governance-footer a:hover {
    border-bottom-color: var(--swiss-red);
}

.governance-card:hover .governance-footer a {
    color: var(--swiss-gold);
}

.governance-card:hover .governance-footer a:hover {
    border-bottom-color: var(--swiss-gold);
}

/* Data Classification Tiers - 3x1 Grid */
.tier-framework {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--swiss-charcoal);
    margin: 30px 0;
}

.tier-card {
    background: var(--swiss-cream);
    padding: 40px;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--swiss-red);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tier-card:hover {
    transform: translateY(-8px);
    background: var(--swiss-charcoal);
    color: var(--swiss-cream);
    box-shadow: 0 16px 32px rgba(26, 26, 26, 0.12);
}

.tier-card:hover::before {
    width: 100%;
}

.tier-header {
    margin-bottom: 24px;
}

.tier-badge {
    display: inline-block;
    background: var(--swiss-red);
    color: var(--swiss-cream);
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-mono);
    margin-bottom: 16px;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tier-card:hover .tier-badge {
    background: var(--swiss-gold);
}

.tier-header h3 {
    color: var(--swiss-charcoal);
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tier-card:hover .tier-header h3 {
    color: var(--swiss-cream);
}

.tier-header small {
    color: var(--text-medium);
    font-size: 0.9rem;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tier-card:hover .tier-header small {
    color: rgba(250, 248, 243, 0.7);
}

.tier-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tier-content h4 {
    color: var(--swiss-charcoal);
    font-size: 1.1rem;
    margin-bottom: 16px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tier-card:hover .tier-content h4 {
    color: var(--swiss-cream);
}

.tier-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.tier-content ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
    color: var(--text-medium);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tier-card:hover .tier-content ul li {
    border-bottom-color: rgba(250, 248, 243, 0.2);
    color: rgba(250, 248, 243, 0.85);
}

.tier-content ul li:last-child {
    border-bottom: none;
}

.tier-recommendation {
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid var(--swiss-charcoal);
    font-size: 0.95rem;
    color: var(--text-medium);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tier-card:hover .tier-recommendation {
    border-top-color: rgba(250, 248, 243, 0.3);
    color: rgba(250, 248, 243, 0.8);
}

.tier-recommendation strong {
    color: var(--swiss-charcoal);
    font-weight: 700;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tier-card:hover .tier-recommendation strong {
    color: var(--swiss-cream);
}

/* Special tier card styling variants */
.tier-card.tier-1::before {
    background: var(--teal-accent);
}

.tier-card.tier-2::before {
    background: var(--swiss-gold);
}

.tier-card.tier-3::before {
    background: var(--swiss-red);
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--swiss-charcoal);
    margin: 30px 0;
}

.faq-item {
    background: var(--swiss-cream);
    padding: 40px;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--swiss-red);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    transform: translateY(-4px);
    background: var(--swiss-charcoal);
    color: var(--swiss-cream);
    box-shadow: 0 12px 24px rgba(26, 26, 26, 0.08);
}

.faq-item:hover::before {
    width: 100%;
}

.faq-item h4 {
    color: var(--swiss-charcoal);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover h4 {
    color: var(--swiss-cream);
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 24px;
    border-left: 3px solid var(--swiss-red);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover p {
    color: rgba(250, 248, 243, 0.85);
    border-left-color: var(--swiss-gold);
}

.faq-item p:last-child {
    margin-bottom: 0;
}

.faq-item strong {
    color: var(--swiss-charcoal);
    font-weight: 700;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover strong {
    color: var(--swiss-cream);
}

.faq-item ul {
    margin-left: 24px;
    padding-left: 20px;
    border-left: 3px solid var(--swiss-red);
    transition: border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover ul {
    border-left-color: var(--swiss-gold);
}

.faq-item ul li {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 12px;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover ul li {
    color: rgba(250, 248, 243, 0.85);
}

.faq-item a {
    color: var(--swiss-red);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}

.faq-item a:hover {
    border-bottom-color: var(--swiss-red);
}

.faq-item:hover a {
    color: var(--swiss-gold);
}

.faq-item:hover a:hover {
    border-bottom-color: var(--swiss-gold);
}

/* Network Architecture Scenarios */
.network-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2px;
    background: var(--swiss-charcoal);
    margin: 40px 0;
}

.scenario-card {
    background: var(--swiss-cream);
    padding: 40px;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--swiss-charcoal);
    position: relative;
}

.scenario-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--swiss-red);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scenario-card:hover {
    transform: translateY(-8px);
    background: var(--swiss-charcoal);
    color: var(--swiss-cream);
    box-shadow: 0 16px 32px rgba(26, 26, 26, 0.12);
}

.scenario-card:hover::before {
    width: 100%;
}

.scenario-card.scenario-highlight {
    border-color: var(--swiss-charcoal);
    background: var(--swiss-cream);
}

.scenario-card.scenario-highlight::before {
    width: 100%;
    background: var(--teal-accent);
}

.scenario-card.scenario-highlight:hover {
    background: var(--swiss-charcoal);
    color: var(--swiss-cream);
}

.scenario-card.scenario-warning {
    border-color: var(--swiss-charcoal);
    background: var(--swiss-cream);
}

.scenario-card.scenario-warning::before {
    width: 100%;
    background: var(--swiss-gold);
}

.scenario-card.scenario-warning:hover {
    background: var(--swiss-charcoal);
    color: var(--swiss-cream);
}

.scenario-card h3 {
    color: var(--swiss-charcoal);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scenario-card:hover h3 {
    color: var(--swiss-cream);
}

.scenario-card p {
    color: var(--text-medium);
    line-height: 1.6;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scenario-card:hover p {
    color: rgba(250, 248, 243, 0.8);
}

.scenario-card ul {
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scenario-card li {
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scenario-card:hover ul,
.scenario-card:hover li {
    color: rgba(250, 248, 243, 0.85);
}

.scenario-card strong {
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scenario-card:hover strong {
    color: var(--swiss-cream);
}

.scenario-diagram {
    background: rgba(232, 222, 210, 0.3);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scenario-card:hover .scenario-diagram {
    background: rgba(250, 248, 243, 0.1);
}

.scenario-diagram .diagram-text {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--swiss-charcoal);
    line-height: 1.8;
    font-weight: 500;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scenario-card:hover .scenario-diagram .diagram-text {
    color: rgba(250, 248, 243, 0.9);
}

.scenario-diagram .diagram-text strong {
    color: var(--swiss-charcoal);
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scenario-card:hover .scenario-diagram .diagram-text strong {
    color: var(--swiss-cream);
}

.scenario-best-for {
    background: transparent;
    border-left: 3px solid var(--swiss-gold);
    padding: 16px 20px;
    border-radius: 0;
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--text-medium);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scenario-card:hover .scenario-best-for {
    border-left-color: var(--swiss-red);
    color: rgba(250, 248, 243, 0.8);
}

.scenario-best-for strong {
    color: var(--swiss-charcoal);
    font-weight: 700;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scenario-card:hover .scenario-best-for strong {
    color: var(--swiss-cream);
}

/* Check List Styling */
.check-list {
    list-style: none;
    margin: 16px 0;
}

.check-list li {
    padding: 6px 0;
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Philosophy Callout */
.philosophy-callout {
    background: linear-gradient(135deg, var(--bg-lavender) 0%, var(--bg-light-blue) 100%);
    padding: 35px;
    border-radius: var(--card-radius);
    margin: 40px 0;
    border-left: 5px solid var(--primary-teal);
}

.philosophy-callout h4 {
    color: var(--primary-teal);
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.philosophy-callout p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
}

/* Responsive Adjustments for Security Page */
@media (max-width: 768px) {
    .product-grid,
    .deployment-options,
    .network-scenarios {
        grid-template-columns: 1fr;
    }
    
    .product-card,
    .deployment-option,
    .scenario-card {
        padding: 25px;
    }
    
    .scenario-diagram .diagram-text {
        font-size: 0.8rem;
    }
}

/* ===================================
   iPhone Showcase — Landing Page
   ================================= */

.iphone-showcase {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 60px 48px;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0f1a1c 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

/* Subtle grid texture background */
.iphone-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* --- Left Content --- */
.iphone-showcase__content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.iphone-showcase__tag {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--swiss-red);
    margin-bottom: 20px;
}

.iphone-showcase__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.iphone-showcase__subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 28px;
}
.iphone-showcase__subtitle strong {
    color: var(--teal-accent);
    font-weight: 600;
}

.iphone-showcase__platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: all 0.3s ease;
}
.platform-badge:hover {
    background: rgba(0,167,181,0.12);
    border-color: rgba(0,167,181,0.3);
}
.platform-badge__icon {
    color: var(--teal-accent);
    font-size: 8px;
}

.iphone-showcase__body {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 32px;
}
.iphone-showcase__body strong {
    color: rgba(255,255,255,0.75);
}

.iphone-showcase__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--teal-accent);
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.01em;
}
.iphone-showcase__cta:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,167,181,0.3);
}
.iphone-showcase__cta svg {
    transition: transform 0.3s ease;
}
.iphone-showcase__cta:hover svg {
    transform: translateX(4px);
}

/* --- Right: Device Wrap --- */
.iphone-showcase__device-wrap {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    padding: 40px 20px 60px;
}

/* Hand SVG */
.iphone-hand {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}
.iphone-hand__svg {
    width: 100%;
    height: 100%;
}

/* iPhone Frame — iPhone 15 Pro style */
.iphone-frame {
    position: relative;
    z-index: 3;
    width: 260px;
    height: 540px;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 50%, #222 100%);
    border-radius: 42px;
    padding: 8px;
    box-shadow:
        inset 0 0 0 1.5px rgba(255,255,255,0.12),
        0 0 0 1px rgba(0,0,0,0.6),
        0 25px 80px rgba(0,0,0,0.6),
        0 8px 30px rgba(0,0,0,0.4);
    transform: perspective(900px) rotateY(-3deg) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.iphone-showcase:hover .iphone-frame {
    transform: perspective(900px) rotateY(0deg) rotateX(0deg);
}

/* Dynamic Island */
.iphone-dynamic-island {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 22px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
}

/* Side Buttons */
.iphone-btn {
    position: absolute;
    background: linear-gradient(180deg, #3a3a3a, #2a2a2a);
    border-radius: 2px;
    z-index: 4;
}
.iphone-btn--power {
    right: -3px;
    top: 140px;
    width: 3px;
    height: 60px;
}
.iphone-btn--vol-up {
    left: -3px;
    top: 120px;
    width: 3px;
    height: 38px;
}
.iphone-btn--vol-down {
    left: -3px;
    top: 170px;
    width: 3px;
    height: 38px;
}
.iphone-btn--action {
    left: -3px;
    top: 80px;
    width: 3px;
    height: 22px;
}

/* Screen */
.iphone-screen {
    width: 100%;
    height: 100%;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
    background: #000;
}

/* Carousel */
.iphone-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.iphone-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    pointer-events: none;
}
.iphone-slide.active {
    opacity: 1;
}

/* Dots */
.iphone-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 12;
    padding: 4px 10px;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(8px);
    border-radius: 20px;
}
.iphone-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}
.iphone-dot.active {
    background: var(--teal-accent);
    box-shadow: 0 0 6px rgba(0,167,181,0.6);
    width: 16px;
    border-radius: 3px;
}

/* Caption */
.iphone-caption {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 11;
    pointer-events: none;
}
.iphone-caption span {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Glow */
.iphone-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 60px;
    background: radial-gradient(ellipse at center, rgba(0,167,181,0.15) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 1;
    pointer-events: none;
}

/* --- Responsive --- */
@media (max-width: 960px) {
    .iphone-showcase {
        flex-direction: column;
        text-align: center;
        padding: 48px 32px;
        gap: 48px;
    }
    .iphone-showcase__platforms {
        justify-content: center;
    }
    .iphone-showcase__device-wrap {
        width: 280px;
    }
    .iphone-frame {
        width: 230px;
        height: 478px;
        transform: none;
    }
    .iphone-showcase:hover .iphone-frame {
        transform: none;
    }
}

@media (max-width: 520px) {
    .iphone-showcase {
        padding: 36px 20px;
        gap: 36px;
    }
    .iphone-showcase__title {
        font-size: 26px;
    }
    .iphone-showcase__device-wrap {
        width: 240px;
    }
    .iphone-frame {
        width: 200px;
        height: 416px;
        border-radius: 34px;
        padding: 6px;
    }
    .iphone-screen {
        border-radius: 28px;
    }
    .iphone-dynamic-island {
        width: 56px;
        height: 18px;
        top: 14px;
    }
}
