@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/**
 * Amaro Than Ecosystem — Apple-Inspired Design System
 * Dark Mode · Glassmorphism · Precision Typography
 */

:root {
    --bg-deep: #030303;
    --bg-surface: rgba(18, 18, 18, 0.75);
    --bg-surface-hover: rgba(28, 28, 28, 0.88);
    --accent-primary: #0af;
    --accent-secondary: #6e00ff;
    --accent-tertiary: #ff0066;
    --accent-glow: rgba(0, 170, 255, 0.22);
    --text-main: #f5f5f7;
    --text-dim: #98989d;
    --text-muted: #6e6e73;
    --glass-border: rgba(255, 255, 255, 0.07);
    --glass-border-highlight: rgba(255, 255, 255, 0.14);
    --glass-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
    --radius-card: 20px;
    --radius-xl: 28px;
    --radius-pill: 980px;
    --transition-smooth: all 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.16s ease;
    --font: -apple-system, BlinkMacSystemFont, 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: #222; border-radius: 8px; border: 2px solid var(--bg-deep); }
::-webkit-scrollbar-thumb:hover { background: var(--accent-primary); }

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: var(--font);
    font-size: 1.0625rem; /* 17px — Apple's base */
    line-height: 1.65;
    overflow-x: hidden;
}

/* Subtle grain overlay */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    opacity: 0.025;
    pointer-events: none;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    z-index: 9999;
}

/* ─── Mesh Background ────────────────────────────────── */
.bg-mesh {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: var(--bg-deep);
    overflow: hidden;
}

.bg-mesh::before,
.bg-mesh::after,
.bg-mesh-tertiary {
    content: "";
    position: absolute;
    width: 65vmax;
    height: 65vmax;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.12;
    animation: orbit 28s infinite linear;
}

.bg-mesh::before {
    background: radial-gradient(circle, var(--accent-primary), transparent 70%);
    top: -20%;
    left: -20%;
}

.bg-mesh::after {
    background: radial-gradient(circle, var(--accent-secondary), transparent 70%);
    bottom: -20%;
    right: -20%;
    animation-delay: -14s;
}

.bg-mesh-tertiary {
    background: radial-gradient(circle, var(--accent-tertiary), transparent 70%);
    top: 35%;
    left: 35%;
    animation: orbitReverse 34s infinite linear;
    opacity: 0.08;
}

@keyframes orbit {
    0%   { transform: rotate(0deg) scale(1); }
    50%  { transform: rotate(180deg) scale(1.15); }
    100% { transform: rotate(360deg) scale(1); }
}
@keyframes orbitReverse {
    0%   { transform: rotate(360deg) scale(1.1); }
    50%  { transform: rotate(180deg) scale(0.9); }
    100% { transform: rotate(0deg) scale(1.1); }
}

/* ─── Glassmorphism ──────────────────────────────────── */
.glass {
    background: var(--bg-surface);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-xl);
    transition: var(--transition-smooth);
}

.glass:hover {
    border-color: var(--glass-border-highlight);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7), 0 0 18px rgba(0, 170, 255, 0.08);
}

/* ─── Navigation ─────────────────────────────────────── */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1240px;
    height: 54px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(32px) saturate(200%);
    -webkit-backdrop-filter: blur(32px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    transition: var(--transition-smooth);
}

header.scrolled {
    top: 12px;
    background: rgba(6, 6, 6, 0.78);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    object-fit: cover;
}

.logo span {
    font-family: var(--font);
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    letter-spacing: -0.3px;
}

.nav-pill-container {
    display: flex;
    align-items: center;
}

nav ul#nav-menu {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav ul#nav-menu a {
    font-family: var(--font);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.52);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 7px 16px;
    border-radius: var(--radius-pill);
    transition: var(--transition-fast);
    letter-spacing: -0.1px;
    display: inline-block;
}

nav ul#nav-menu a:hover { color: #fff; background: rgba(255,255,255,0.07); }
nav ul#nav-menu a.active {
    color: #fff;
    background: rgba(255,255,255,0.12);
    font-weight: 600;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.desktop-right-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--text-dim);
}
.desktop-right-icon:hover { background: rgba(255,255,255,0.1); color: #fff; }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 4px;
}

/* ─── Hero ───────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 160px 24px 100px;
    position: relative;
}

.hero-sub {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 150px 24px 56px;
    position: relative;
}

/* Apple-scale hero titles */
.hero h1,
.hero-sub h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
    max-width: 860px;
    color: var(--text-main);
}

.hero p,
.hero-sub p {
    font-size: clamp(1rem, 2.2vw, 1.175rem);
    color: var(--text-dim);
    max-width: 620px;
    margin: 0 auto 40px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.1px;
}

/* Home page specific hero */
.hero-subtitle-caps {
    color: var(--accent-primary);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    text-align: center;
    opacity: 0.85;
}

.hero-main-title {
    font-size: clamp(2rem, 5.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 28px;
    text-align: center;
    color: var(--text-main);
}

.hero-blue-gradient {
    background: linear-gradient(135deg, #33cfff 0%, #0066ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ─── Badge ──────────────────────────────────────────── */
.badge {
    padding: 7px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-pill);
    color: var(--accent-primary);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 22px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

/* ─── Gradient Text ──────────────────────────────────── */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 50%, var(--accent-tertiary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ─── Store Badges ───────────────────────────────────── */
.store-badges-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.store-badges-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0;
}

.store-badges-row {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.store-badge-link {
    display: inline-block;
    transition: var(--transition-smooth);
    border-radius: 10px;
    outline-offset: 4px;
}

.store-badge-link:hover {
    transform: translateY(-3px) scale(1.03);
    filter: brightness(1.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.store-badge-img {
    height: 46px;
    width: auto;
    display: block;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.android-beta-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: min(520px, calc(100vw - 40px));
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(245, 245, 247, 0.76);
    font-size: 0.8125rem;
    line-height: 1.45;
}

.android-beta-note svg {
    width: 15px;
    height: 15px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.pillars-grid > .android-beta-note {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 4px;
}

/* ─── 3-Phone Mockup ─────────────────────────────────── */
/*
 * Phones are position:relative in a flex-row anchored to the BOTTOM.
 * overflow:hidden clips their tops cleanly inside the container.
 * This prevents any possibility of phones bleeding upward into the hero title.
 */
.hero-three-phones {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    max-width: 1400px;
    margin: 40px auto 0;
    height: 680px;
    position: relative;
    /* Removed overflow: hidden to prevent top cropping */
}

.phone-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 320px;
    transition: var(--transition-smooth);
}

.phone-wrapper .phone-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 40px;
    display: block;
}

.phone-left {
    transform: translateX(-40px) translateY(50px) scale(0.9);
    transform-origin: bottom center;
    z-index: 1;
    opacity: 0.9;
    filter: drop-shadow(0 20px 44px rgba(0, 0, 0, 0.85));
    margin-right: -70px;
}

.phone-right {
    transform: translateX(40px) translateY(50px) scale(0.9);
    transform-origin: bottom center;
    z-index: 1;
    opacity: 0.9;
    filter: drop-shadow(0 20px 44px rgba(0, 0, 0, 0.85));
    margin-left: -70px;
}

.phone-center {
    transform: translateY(0) scale(1.12);
    transform-origin: bottom center;
    z-index: 3;
    filter: drop-shadow(0 24px 52px rgba(0, 170, 255, 0.22));
}

.hero-three-phones:hover .phone-left {
    transform: translateX(-60px) translateY(40px) scale(0.92);
    opacity: 1;
}

.hero-three-phones:hover .phone-right {
    transform: translateX(60px) translateY(40px) scale(0.92);
    opacity: 1;
}

.hero-three-phones:hover .phone-center {
    transform: translateY(-8px) scale(1.15);
    transform-origin: bottom center;
}

/* ─── Buttons ────────────────────────────────────────── */
.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 34px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid transparent;
    letter-spacing: -0.2px;
    font-family: var(--font);
}

.btn-primary {
    background: #fff;
    color: #0f172a;
    box-shadow: 0 2px 14px rgba(255, 255, 255, 0.14);
}
.btn-primary:hover {
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 255, 255, 0.22);
    background: #f5f5f7;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #fff;
    box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-accent:hover {
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 10px 32px rgba(110, 0, 255, 0.4);
}

/* ─── Section Layout ─────────────────────────────────── */
.section-container {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 18px;
    color: var(--text-main);
}

.section-header p {
    color: var(--text-dim);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ─── Grid ───────────────────────────────────────────── */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 36px;
    align-items: center;
}

/* ─── Cards ──────────────────────────────────────────── */
.card {
    padding: 40px 36px;
    border-radius: var(--radius-xl);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(0, 170, 255, 0.07), transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.card:hover { transform: translateY(-6px); border-color: var(--glass-border-highlight); }
.card:hover::before { opacity: 1; }

.card-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-primary);
    transition: var(--transition-smooth);
}

.card:hover .card-icon {
    background: rgba(0, 170, 255, 0.1);
    border-color: rgba(0, 170, 255, 0.3);
    box-shadow: 0 0 16px rgba(0, 170, 255, 0.2);
    transform: scale(1.08);
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.3px;
    color: var(--text-main);
}

.card p {
    color: var(--text-dim);
    font-size: 0.9375rem;
    line-height: 1.7;
    flex-grow: 1;
}

/* ─── Timeline ───────────────────────────────────────── */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary), transparent);
    opacity: 0.4;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 48px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-content {
    width: 88%;
    padding: 32px 28px;
    position: relative;
}

.timeline-dot {
    position: absolute;
    top: 42px;
    right: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-deep);
    border: 3px solid var(--accent-primary);
    box-shadow: 0 0 12px rgba(0, 170, 255, 0.5);
    z-index: 10;
    transition: var(--transition-smooth);
}

.timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -10px;
    border-color: var(--accent-secondary);
    box-shadow: 0 0 12px rgba(110, 0, 255, 0.5);
}

.timeline-item:hover .timeline-dot { transform: scale(1.25); }

.timeline-date {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* ─── Team ───────────────────────────────────────────── */
.team-section { padding-top: 90px; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.team-grid-all {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-card {
    padding: 36px 28px;
    text-align: center;
    border-radius: var(--radius-xl);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0,170,255,0.15), rgba(110,0,255,0.15));
    border: 1px solid var(--glass-border-highlight);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: var(--accent-primary);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.team-card:hover .team-avatar {
    transform: scale(1.06);
    border-color: rgba(0, 170, 255, 0.35);
    box-shadow: 0 10px 28px rgba(0, 170, 255, 0.2);
}

.team-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.team-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 5px; letter-spacing: -0.2px; }
.team-role {
    color: var(--accent-primary);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}
.team-bio { color: var(--text-dim); font-size: 0.9rem; line-height: 1.6; }

/* ─── Contact Form ───────────────────────────────────── */
.contact-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 56px 52px;
}

.form-group { margin-bottom: 26px; }

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

label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dim);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

input, textarea, select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    color: var(--text-main);
    font-family: var(--font);
    font-size: 0.9375rem;
    transition: var(--transition-smooth);
    outline: none;
}

input::placeholder, textarea::placeholder { color: var(--text-muted); }
select option { background: #111; color: #fff; }

input:focus, textarea:focus, select:focus {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.12);
}

textarea { min-height: 160px; resize: vertical; }

.form-status {
    padding: 16px 18px;
    border-radius: 14px;
    margin-bottom: 26px;
    font-weight: 500;
    font-size: 0.9375rem;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #34d399;
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #f87171;
}

/* ─── Footer ─────────────────────────────────────────── */
footer {
    padding: 80px 24px 48px;
    border-top: 1px solid var(--glass-border);
    background: rgba(5,5,5,0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-about p {
    color: var(--text-dim);
    font-size: 0.9375rem;
    margin-top: 16px;
    max-width: 340px;
    line-height: 1.65;
}

.footer-heading {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 13px; }
.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links a:hover { color: var(--text-main); transform: translateX(3px); }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ─── Why Join Section ───────────────────────────────── */
.why-section { padding-top: 60px; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: start;
}

.why-card {
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    border: 1px solid var(--glass-border);
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--glass-border-highlight);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.55);
}

/* Image fills the top — let the halo breathe with padding */
.why-img-wrap {
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 24px 0;
    overflow: hidden;
}

.why-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-card:hover .why-img-wrap img {
    transform: scale(1.03);
}

/* Text block below image */
.why-text {
    padding: 26px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.why-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
}

.why-title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: var(--text-main);
    line-height: 1.2;
    margin: 0;
}

.why-body {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.72;
    margin: 0;
}

@media (max-width: 1024px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-img-wrap { padding: 24px 20px 0; }
}

/* ─── Mission & Vision Section ──────────────────────── */
.mv-section { padding-top: 60px; }

/* Mission + Vision row */
.mv-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.mv-card {
    border-radius: 22px;
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.mv-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-border-highlight);
}

/* Subtle top-left glow per card */
.mv-mission::before,
.mv-vision::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.18;
}

.mv-mission::before { background: #0af; }
.mv-vision::before  { background: #a855f7; }

.mv-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
}

/* Big pull-quote style statement */
.mv-statement {
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.25;
    color: var(--text-main);
    margin: 0;
}

.mv-mission .mv-statement { color: #33cfff; }
.mv-vision  .mv-statement { color: #c084fc; }

.mv-body {
    font-size: 0.9375rem;
    color: var(--text-dim);
    line-height: 1.75;
    margin: 0;
}

.mv-impact {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
    gap: 28px;
    align-items: center;
    padding: 40px;
    margin: 18px 0 34px;
    border-radius: 22px;
    position: relative;
    overflow: hidden;
}

.mv-impact::before {
    content: "";
    position: absolute;
    inset: auto -80px -120px auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(0, 170, 255, 0.15);
    filter: blur(70px);
    pointer-events: none;
}

.mv-impact-copy,
.mv-impact-points {
    position: relative;
    z-index: 1;
}

.mv-impact-copy h3 {
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    line-height: 1.12;
    letter-spacing: -0.8px;
    color: var(--text-main);
    margin: 10px 0 18px;
}

.mv-impact-copy p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.78;
    margin: 0 0 14px;
}

.mv-impact-copy p:last-child { margin-bottom: 0; }

.mv-impact-points {
    display: grid;
    gap: 12px;
}

.mv-impact-points div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.075);
    color: rgba(245, 245, 247, 0.86);
    font-size: 0.92rem;
    font-weight: 600;
}

.mv-impact-points svg {
    width: 18px;
    height: 18px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

/* Values */
.mv-values-header {
    margin-bottom: 16px;
    padding: 0 4px;
}

.mv-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.mv-value-card {
    border-radius: 20px;
    padding: 32px 26px 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: var(--transition-smooth);
}

.mv-value-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-border-highlight);
}

.mv-value-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    transition: var(--transition-smooth);
}

.mv-value-icon svg { width: 20px; height: 20px; }

.mv-value-card:hover .mv-value-icon {
    background: rgba(0, 170, 255, 0.1);
    border-color: rgba(0, 170, 255, 0.3);
}

.mv-value-title {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--text-main);
    margin: 0;
}

.mv-value-body {
    font-size: 0.875rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .mv-top { grid-template-columns: 1fr; }
    .mv-impact { grid-template-columns: 1fr; }
    .mv-values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .mv-values-grid { grid-template-columns: 1fr; }
    .mv-card,
    .mv-impact { padding: 32px 24px; }
}

/* ─── Security Section ───────────────────────────────── */
.sec-section { padding-top: 60px; }

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

.sec-card {
    position: relative;
    aspect-ratio: 4 / 3;
    padding: 32px 28px 60px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition-smooth);
    cursor: default;
    overflow: hidden;
}

.sec-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-border-highlight);
}

.sec-icon {
    width: 28px;
    height: 28px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.sec-title {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: var(--text-main);
    line-height: 1.25;
    margin: 0;
}

.sec-sub {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    margin: 0;
}

.sec-body {
    font-size: 0.875rem;
    color: var(--text-dim);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

/* "+" button — bottom right */
.sec-plus {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

.sec-plus svg { width: 14px; height: 14px; }

.sec-plus:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #000;
    transform: scale(1.1);
}

/* ─── Security Modal ─────────────────────────────────── */
.sec-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.sec-modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.sec-modal {
    display: none;
    flex-direction: column;
    gap: 16px;
    max-width: 520px;
    width: 100%;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 40px 36px 36px;
    border-radius: 24px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sec-modal-overlay.open .sec-modal.active {
    display: flex;
    transform: translateY(0);
}

.sec-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

.sec-modal-close svg { width: 14px; height: 14px; }
.sec-modal-close:hover { background: rgba(255,255,255,0.14); color: #fff; }

.sec-modal-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(0, 170, 255, 0.1);
    border: 1px solid rgba(0, 170, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.sec-modal-icon-wrap svg { width: 22px; height: 22px; }

.sec-modal h3 {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-main);
    margin: 0;
    line-height: 1.25;
}

.sec-modal-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin: 0;
}

.sec-modal p:not(.sec-modal-tag) {
    font-size: 0.9375rem;
    color: var(--text-dim);
    line-height: 1.75;
    margin: 0;
}

.sec-modal-details {
    display: grid;
    gap: 10px;
    margin-top: 4px;
}

.sec-modal-details div {
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.075);
}

.sec-modal-details svg {
    width: 16px;
    height: 16px;
    color: var(--accent-primary);
    margin-top: 3px;
}

.sec-modal-details span {
    color: rgba(245, 245, 247, 0.78);
    font-size: 0.875rem;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .sec-grid { grid-template-columns: 1fr; aspect-ratio: unset; }
    .sec-card { aspect-ratio: unset; }
}

/* ─── Pillars / Universe Section ────────────────────── */
.pillars-section { padding-top: 80px; }

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pillar-card {
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
}

.pillar-card:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border-highlight);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
}

/* Visual area — mockup on gradient background */
.pillar-visual {
    height: 340px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    position: relative;
    padding-top: 48px;
}

.pillar-visual-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* Netvorko: deep blue/purple */
.pillar-netvorko .pillar-visual {
    background: linear-gradient(170deg,
        rgba(6, 18, 48, 0.9) 0%,
        rgba(30, 0, 80, 0.7) 100%);
}
.pillar-netvorko .pillar-visual-glow {
    background:
        radial-gradient(ellipse 70% 50% at 50% 110%, rgba(0, 100, 255, 0.35) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(110, 0, 255, 0.2) 0%, transparent 60%);
}

/* Ainara: teal/magenta */
.pillar-ainara .pillar-visual {
    background: linear-gradient(170deg,
        rgba(0, 20, 32, 0.9) 0%,
        rgba(0, 40, 50, 0.7) 100%);
}
.pillar-ainara .pillar-visual-glow {
    background:
        radial-gradient(ellipse 70% 50% at 50% 110%, rgba(0, 200, 255, 0.3) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 20% 20%, rgba(255, 0, 110, 0.15) 0%, transparent 60%);
}

/* 3-phone cluster inside pillar visual */
.pillar-phones {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.pillar-phone {
    flex-shrink: 0;
    width: 165px;
    position: relative;
    transition: var(--transition-smooth);
}

.pillar-phone img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 22px;
    pointer-events: none;
}

/* Center phone — largest, front */
.pillar-phone-center {
    transform: translateY(0) scale(1.06);
    transform-origin: bottom center;
    z-index: 3;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
}

/* Side phones — slightly smaller, straight, tucked behind */
.pillar-phone-left {
    transform: translateX(15px) translateY(24px) scale(0.88);
    transform-origin: bottom center;
    z-index: 1;
    margin-right: -50px;
    opacity: 0.85;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.65));
}

.pillar-phone-right {
    transform: translateX(-15px) translateY(24px) scale(0.88);
    transform-origin: bottom center;
    z-index: 1;
    margin-left: -50px;
    opacity: 0.85;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.65));
}

.pillar-card:hover .pillar-phone-left {
    transform: translateX(-20px) translateY(16px) scale(0.92);
    opacity: 1;
}

.pillar-card:hover .pillar-phone-right {
    transform: translateX(20px) translateY(16px) scale(0.92);
    opacity: 1;
}

.pillar-card:hover .pillar-phone-center {
    transform: translateY(-8px) scale(1.12);
}

/* Text content */
.pillar-content {
    padding: 32px 36px 36px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pillar-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: block;
}

.pillar-name {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.8px;
    color: var(--text-main);
    margin: 0 0 6px;
    line-height: 1;
}

.pillar-tagline {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 16px;
    line-height: 1.3;
}

.pillar-netvorko .pillar-tagline { color: #5aacff; }
.pillar-ainara .pillar-tagline  { color: #0af; }

.pillar-desc {
    color: var(--text-dim);
    font-size: 0.9375rem;
    line-height: 1.7;
    flex: 1;
    margin: 0 0 24px;
}

.pillar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s ease, opacity 0.2s ease;
    width: fit-content;
}

.pillar-link-blue { color: #5aacff; }
.pillar-link-cyan { color: #0af; }

.pillar-link:hover { gap: 10px; opacity: 0.85; }

.pillar-arrow {
    width: 15px;
    height: 15px;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.pillar-link:hover .pillar-arrow { transform: translateX(3px); }

/* Khaj si — full-width third pillar */
.pillar-khajsi {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: stretch;
}

.pillar-khajsi .pillar-visual {
    width: 55%;
    flex-shrink: 0;
    height: auto;
    min-height: 280px;
    padding: 0;
}

.pillar-khajsi .pillar-content {
    flex: 1;
    padding: 40px 40px 40px 44px;
    justify-content: center;
}

/* Khaj si gradient — warm amber/emerald */
.pillar-visual-khajsi {
    background: linear-gradient(160deg,
        rgba(5, 30, 15, 0.95) 0%,
        rgba(2, 20, 30, 0.85) 100%);
}

.pillar-visual-khajsi .pillar-visual-glow {
    background:
        radial-gradient(ellipse 80% 60% at 50% 110%, rgba(16, 185, 129, 0.28) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 85% 15%, rgba(251, 191, 36, 0.15) 0%, transparent 60%);
}


.pillar-link-green { color: #34d399; }
.pillar-khajsi .pillar-tagline { color: #34d399; }

@media (max-width: 1024px) {
    .pillar-khajsi {
        flex-direction: column;
    }
    .pillar-khajsi .pillar-visual {
        width: 100%;
        min-height: 220px;
    }
    .pillar-khajsi .pillar-content {
        padding: 28px 24px;
    }
}

/* ─── Mockup Gallery ─────────────────────────────────── */
.mockup-gallery-section {
    padding: 80px 0 100px;
}

.mockup-gallery-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 0 24px;
}

.mockup-gallery-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--text-main);
    margin-top: 0;
}

/* Full-bleed horizontal scroll track */
.mockup-gallery-track {
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
    padding: 24px 0 36px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    /* Fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.mockup-gallery-track::-webkit-scrollbar { display: none; }
.mockup-gallery-track:active { cursor: grabbing; }

.mockup-gallery-inner {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    /* leading + trailing padding via pseudo-elements */
    padding: 0 calc(50vw - 560px);
    width: max-content;
}

/* Inner padding fallback for small viewports */
@media (max-width: 1200px) {
    .mockup-gallery-inner { padding: 0 32px; }
}

.gallery-phone {
    flex-shrink: 0;
    width: 200px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-smooth);
    scroll-snap-align: center;
    transform: scale(0.94);
    opacity: 0.75;
}

.gallery-phone:hover {
    transform: scale(1.06) translateY(-8px);
    opacity: 1;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(0, 170, 255, 0.18);
    border-color: rgba(0, 170, 255, 0.2);
    z-index: 2;
}

.gallery-phone img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
}

/* ─── Avatar Initials ────────────────────────────────── */
.avatar-initials {
    font-family: var(--font);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ─── Scroll-Reveal Animations ───────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Every direct section in main starts hidden */
main section {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* JS adds this class via IntersectionObserver */
main section.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Hero and gallery sections are visible immediately */
main section#hero,
main section.hero,
main section.hero-sub,
main section.mockup-gallery-section {
    opacity: 1;
    transform: none;
    transition: none;
}
main section.mockup-gallery-section.revealed,
main section#hero.revealed,
main section.hero.revealed,
main section.hero-sub.revealed {
    opacity: 1;
    transform: none;
}

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
    .grid-2, .grid-3, .footer-grid {
        grid-template-columns: 1fr;
    }

    header {
        width: 94%;
        padding: 0 16px;
    }

    .desktop-right-icon { display: none; }

    nav ul#nav-menu {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.9);
        backdrop-filter: blur(32px);
        -webkit-backdrop-filter: blur(32px);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        padding: 24px;
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    nav ul#nav-menu.active { display: flex; }

    nav ul#nav-menu a {
        font-size: 1rem;
        padding: 12px 24px;
        display: block;
        width: 100%;
    }

    .mobile-menu-btn { display: flex; }

    .timeline::before { left: 0; }
    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-right: 0;
        padding-left: 36px;
    }
    .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: -10px;
        right: auto;
    }

    .form-row { grid-template-columns: 1fr; }
    .contact-container { padding: 28px 20px; }
    .pillars-grid { grid-template-columns: 1fr; gap: 16px; }
    .pillar-visual { height: 260px; }
    .pillar-phone { width: 115px; }
    .pillar-phone-left { margin-right: -35px; transform: translateX(10px) translateY(16px) scale(0.88); }
    .pillar-phone-right { margin-left: -35px; transform: translateX(-10px) translateY(16px) scale(0.88); }
    .pillar-name { font-size: 1.6rem; }
    .hero-three-phones { height: 360px; }
    .phone-wrapper { width: 210px; }
    .phone-left  { transform: translateX(15px) translateY(25px) scale(0.88); margin-right: -50px; }
    .phone-right { transform: translateX(-15px) translateY(25px) scale(0.88); margin-left: -50px; }
    .team-grid-all { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .hero-three-phones { height: 280px; margin-top: 28px; }
    .phone-wrapper { width: 165px; }
    .phone-left  { transform: translateX(10px) translateY(18px) scale(0.88); margin-right: -38px; }
    .phone-right { transform: translateX(-10px) translateY(18px) scale(0.88); margin-left: -38px; }
    .section-container { padding: 72px 18px; }
    .card { padding: 28px 22px; }
    .btn { padding: 12px 26px; font-size: 0.875rem; }
    .store-badge-img { height: 40px; }
    .store-badges-section { margin-top: 32px; }
    .gallery-phone { width: 155px; border-radius: 22px; }
    .mockup-gallery-section { padding: 60px 0 72px; }
    .team-grid-all { grid-template-columns: 1fr; }

    /* Full-width nav on phones */
    header {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        padding: 0 18px;
        box-sizing: border-box;
    }

    nav ul#nav-menu {
        top: 54px;
        left: 0;
        border-radius: 0 0 16px 16px;
    }
}
