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

:root {
    --navy: #0a0f1e;
    --navy-light: #111827;
    --navy-card: #151d2e;
    --blue-dark: #1a2b6b;
    --blue: #2563eb;
    --blue-light: #38bdf8;
    --blue-glow: rgba(37, 99, 235, 0.15);
    --white: #f1f5f9;
    --gray: #94a3b8;
    --gray-light: #cbd5e1;
    --border: rgba(148, 163, 184, 0.1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--navy);
    color: var(--gray);
    line-height: 1.7;
    overflow-x: hidden;
}

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

h1, h2, h3, h4 {
    color: var(--white);
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* ===== Animations ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

.services-grid [data-animate]:nth-child(2) { transition-delay: 0.1s; }
.services-grid [data-animate]:nth-child(3) { transition-delay: 0.2s; }
.services-grid [data-animate]:nth-child(4) { transition-delay: 0.3s; }
.services-grid [data-animate]:nth-child(5) { transition-delay: 0.4s; }

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(10, 15, 30, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.nav-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 120px;
    width: auto;
    transition: height 0.3s ease;
}

.nav.scrolled .nav-logo img {
    height: 48px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    background: var(--blue);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(37, 99, 235, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 20%, rgba(56, 189, 248, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 30% 30% at 20% 80%, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
}

.hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(37, 99, 235, 0.12);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(56, 189, 248, 0.08);
    bottom: -50px;
    left: -50px;
    animation-delay: -3s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(37, 99, 235, 0.1);
    top: 40%;
    right: 20%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(20px, -20px); }
    66% { transform: translate(-10px, 15px); }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-light);
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.hero-tagline {
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--gray-light);
    margin-bottom: 28px;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--gray), var(--blue-light), var(--gray));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--blue) 50%, var(--blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--gray);
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 10px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(37, 99, 235, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--gray);
    background: rgba(255, 255, 255, 0.03);
}

.btn-full {
    width: 100%;
}

/* ===== Sections ===== */
.section-tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 540px;
    margin-bottom: 48px;
}

/* ===== Services ===== */
.services {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    background: rgba(21, 29, 46, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(37, 99, 235, 0.08);
}

/* Last 2 cards span centered in the grid */
.services-grid .service-card:nth-child(4) {
    grid-column: 1 / 2;
    justify-self: end;
    width: calc(100% + 10px);
    margin-left: auto;
}

.services-grid .service-card:nth-child(5) {
    grid-column: 2 / 3;
    justify-self: start;
    width: calc(100% + 10px);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-glow);
    border-radius: 12px;
    color: var(--blue-light);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ===== Products ===== */
.products {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.product-showcase {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

.product-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blue-light);
    background: var(--blue-glow);
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.product-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.product-info p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-features li {
    padding-left: 24px;
    position: relative;
    font-size: 0.92rem;
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
}

/* Phone mockups layout */
.product-phones {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.phone-frame {
    width: 220px;
    background: #1a1a2e;
    border-radius: 28px;
    padding: 8px;
    border: 2px solid rgba(148, 163, 184, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(37, 99, 235, 0.08);
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.phone-frame:hover {
    transform: translateY(-8px);
}

.phone-frame.phone-featured {
    width: 240px;
    z-index: 2;
}

.phone-notch {
    width: 60px;
    height: 5px;
    background: rgba(148, 163, 184, 0.2);
    border-radius: 3px;
    margin: 3px auto 5px;
}

.phone-screen {
    background: #FFF8F0;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

/* App header */
.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px 8px;
    background: #FFF8F0;
}

.app-header-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-header-title {
    font-size: 16px;
    font-weight: 700;
    color: #4A3728;
}

.app-header-actions {
    display: flex;
    gap: 6px;
}

.app-icon-btn {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 140, 66, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mode bar */
.app-mode-bar {
    display: flex;
    gap: 6px;
    padding: 0 14px 10px;
}

.app-mode {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    background: #FFF0E0;
    color: #8B7355;
}

.app-mode.active {
    background: #FF8C42;
    color: white;
}

/* Messages */
.app-messages {
    flex: 1;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}

.app-msg {
    display: flex;
    gap: 6px;
    align-items: flex-start;
}

.app-msg-user {
    justify-content: flex-end;
}

/* Teddy avatar */
.app-avatar {
    width: 26px;
    height: 26px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.teddy-head {
    width: 22px;
    height: 22px;
    background: #C48A5C;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: 2px;
}

.teddy-ear {
    width: 10px;
    height: 10px;
    background: #A06B3C;
    border-radius: 50%;
    position: absolute;
    top: 0;
}

.teddy-ear-l { left: 0; }
.teddy-ear-r { right: 0; }

.teddy-eye {
    width: 3px;
    height: 3px;
    background: #2D1A0E;
    border-radius: 50%;
    position: absolute;
    top: 7px;
}

.teddy-eye-l { left: 6px; }
.teddy-eye-r { right: 6px; }

.teddy-nose {
    width: 4px;
    height: 3px;
    background: #2D1A0E;
    border-radius: 50%;
    position: absolute;
    top: 11px;
    left: 50%;
    transform: translateX(-50%);
}

/* Chat bubbles */
.app-bubble {
    padding: 8px 12px;
    border-radius: 14px;
    font-size: 10.5px;
    line-height: 1.5;
    max-width: 80%;
}

.app-bubble-ai {
    background: #FFF0E0;
    color: #4A3728;
    border-bottom-left-radius: 4px;
}

.app-bubble-user {
    background: #FF8C42;
    color: white;
    border-bottom-right-radius: 4px;
}

/* Input bar */
.app-input-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-top: 1px solid #E8D5C4;
    background: #FFF8F0;
}

.app-input {
    flex: 1;
    background: #FFF5ED;
    border: 1px solid #E8D5C4;
    border-radius: 20px;
    padding: 7px 14px;
    font-size: 10px;
    color: #B8A090;
    font-family: var(--font);
}

.app-send-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #FF8C42;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Voice screen */
.voice-screen {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.voice-bg-circles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
}

.bg-circle-1 {
    width: 120px;
    height: 120px;
    background: rgba(255, 140, 66, 0.08);
    top: -20px;
    right: -30px;
}

.bg-circle-2 {
    width: 80px;
    height: 80px;
    background: rgba(255, 224, 178, 0.1);
    bottom: 80px;
    left: -20px;
}

.bg-circle-3 {
    width: 60px;
    height: 60px;
    background: rgba(255, 140, 66, 0.06);
    top: 40%;
    right: 10%;
}

/* Large teddy bear */
.teddy-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0 8px;
    position: relative;
    z-index: 1;
}

.teddy-lg-body {
    width: 70px;
    height: 60px;
    background: #C48A5C;
    border-radius: 50% 50% 45% 45%;
    position: relative;
    margin-top: -12px;
}

.teddy-lg-belly {
    width: 44px;
    height: 36px;
    background: #D4A574;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.teddy-lg-head {
    width: 56px;
    height: 52px;
    background: #C48A5C;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    margin-top: -72px;
    margin-bottom: 60px;
}

.teddy-lg-face {
    position: relative;
    width: 100%;
    height: 100%;
}

.teddy-lg-ear {
    width: 22px;
    height: 22px;
    background: #A06B3C;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    z-index: 1;
}

.teddy-lg-ear-l { left: 20px; }
.teddy-lg-ear-r { right: 20px; }

.teddy-lg-eye {
    width: 7px;
    height: 7px;
    background: #2D1A0E;
    border-radius: 50%;
    position: absolute;
    top: 18px;
}

.teddy-lg-eye-l { left: 14px; }
.teddy-lg-eye-r { right: 14px; }

.teddy-lg-nose {
    width: 10px;
    height: 7px;
    background: #2D1A0E;
    border-radius: 50%;
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
}

.teddy-lg-mouth {
    width: 16px;
    height: 8px;
    border-bottom: 2px solid #2D1A0E;
    border-radius: 0 0 50% 50%;
    position: absolute;
    top: 34px;
    left: 50%;
    transform: translateX(-50%);
}

.teddy-lg-arm {
    width: 20px;
    height: 32px;
    background: #B07A4C;
    border-radius: 10px;
    position: absolute;
    top: 8px;
}

.teddy-lg-arm-l {
    left: -10px;
    transform: rotate(15deg);
}

.teddy-lg-arm-r {
    right: -10px;
    transform: rotate(-15deg);
}

.teddy-lg-foot {
    width: 24px;
    height: 14px;
    background: #B07A4C;
    border-radius: 50%;
    position: absolute;
    bottom: -6px;
}

.teddy-lg-foot-l { left: 6px; }
.teddy-lg-foot-r { right: 6px; }

/* Mic button */
.mic-btn-wrapper {
    position: relative;
    margin-top: -30px;
    z-index: 3;
}

.mic-ring {
    width: 48px;
    height: 48px;
    border: 3px solid #FF8C42;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.3; }
}

.mic-btn {
    width: 40px;
    height: 40px;
    background: #FF8C42;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.4);
}

/* Voice log */
.voice-log {
    background: #FFF5ED;
    border-top: 1px solid #E8D5C4;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 120px;
    overflow: hidden;
}

.voice-log-msg {
    font-size: 9px;
    line-height: 1.4;
    padding: 5px 10px;
    border-radius: 10px;
    max-width: 85%;
}

.voice-log-ai {
    background: #FFF0E0;
    color: #4A3728;
    align-self: flex-start;
}

.voice-log-user {
    background: #FF8C42;
    color: white;
    align-self: flex-end;
}

/* Games grid */
.games-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px 10px;
    flex: 1;
}

.game-card {
    border-radius: 12px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.game-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-name {
    font-size: 9px;
    font-weight: 600;
    color: #4A3728;
}

.products-more {
    text-align: center;
    margin-top: 32px;
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
}

/* ===== About ===== */
.about {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.about-content {
    max-width: 720px;
}

.about-content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 48px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ===== Contact ===== */
.contact {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.contact-item svg {
    color: var(--blue-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
    font-size: 0.9rem;
    color: var(--gray);
}

.contact-item a:hover {
    color: var(--blue-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font);
    font-size: 0.92rem;
    transition: border-color 0.2s;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(148, 163, 184, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== Footer ===== */
.footer {
    border-top: 1px solid var(--border);
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 12px;
    opacity: 0.7;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--gray);
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    font-size: 0.88rem;
    color: var(--gray);
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(148, 163, 184, 0.5);
}

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy-light);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 20px;
        transition: right 0.3s;
        border-left: 1px solid var(--border);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-cta {
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .hero-title {
        font-size: 2.6rem;
        letter-spacing: -1px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        grid-column: auto;
        justify-self: auto;
        width: 100%;
        margin-left: 0;
    }

    .product-showcase {
        padding: 28px 20px;
    }

    .product-phones {
        flex-direction: column;
        gap: 24px;
    }

    .phone-frame,
    .phone-frame.phone-featured {
        width: 240px;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
