* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", sans-serif;
    background: #fbfbfd;
    color: #1d1d1f;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(251, 251, 253, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-content {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 22px;
    height: 48px;
}

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

.logo-nav img {
    height: 32px;
    width: auto;
}

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

.nav-links a {
    color: #1d1d1f;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 0 80px;
    background: #fbfbfd;
    position: relative;
}

.hero-content {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.hero-eyebrow {
    font-size: 17px;
    line-height: 1.4;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 4px;
    letter-spacing: 0.012em;
}

.hero-title {
    font-size: 80px;
    line-height: 1.05;
    font-weight: 900;
    color: #1d1d1f;
    margin-bottom: 6px;
    letter-spacing: -3px;
    font-style: italic;
    transform: skewX(-8deg);
    display: inline-block;
}

.hero-subtitle {
    font-size: 28px;
    line-height: 1.14;
    font-weight: 400;
    color: #1d1d1f;
    margin-bottom: 17px;
    letter-spacing: 0.004em;
}

.hero-cta {
    display: flex;
    gap: 28px;
    justify-content: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: linear-gradient(135deg, #9f832f, #241f10);
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 10px;
    border: 1px solid rgba(36, 31, 16, 0.5);
    box-shadow: 0 12px 26px rgba(36, 31, 16, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.cta-link:hover {
    background: linear-gradient(135deg, #b8943a, #4e4018);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(36, 31, 16, 0.32);
}

/* Three Phones Showcase - Animation au scroll */
.phones-showcase {
    width: 100%;
    max-width: 100%;
    margin: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    perspective: 1000px;
    min-height: 600px;
    padding: 0;
}

.phone-wrapper {
    position: relative;
    transition: all 0.6s ease-out;
}

.phone-wrapper:hover {
    transform: scale(1.05) translateY(-10px);
}

/* États initiaux des téléphones */
.phone-wrapper.left {
    transform: rotate(-8deg) translateX(20px);
    z-index: 1;
}

.phone-wrapper.left:hover {
    transform: rotate(-8deg) translateX(20px) scale(1.05) translateY(-10px);
}

.phone-wrapper.center {
    transform: scale(1.1);
    z-index: 3;
}

.phone-wrapper.center:hover {
    transform: scale(1.15) translateY(-10px);
}

.phone-wrapper.right {
    transform: rotate(8deg) translateX(-20px);
    z-index: 1;
}

.phone-wrapper.right:hover {
    transform: rotate(8deg) translateX(-20px) scale(1.05) translateY(-10px);
}

/* Classes pour l'animation au scroll */
.phone-wrapper.scroll-animate.left {
    transform: rotate(-25deg) translateX(-100px) translateY(50px);
    opacity: 0;
}

.phone-wrapper.scroll-animate.center {
    transform: scale(0.8) translateY(80px);
    opacity: 0;
}

.phone-wrapper.scroll-animate.right {
    transform: rotate(25deg) translateX(100px) translateY(50px);
    opacity: 0;
}

.device-frame {
    position: relative;
    background: linear-gradient(145deg, #111214 0%, #2a2b2f 45%, #0b0c0f 100%);
    border-radius: 58px;
    padding: 8px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    width: 300px;
}

.device-screen {
    border-radius: 50px;
    overflow: hidden;
    background: #000;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.screen-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 24px;
    background: #0b0c0f;
    border-radius: 999px;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.screen-notch::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    width: 8px;
    height: 8px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(120, 200, 255, 0.8), rgba(120, 200, 255, 0.15) 70%, transparent 71%);
}

.screen-inner {
    aspect-ratio: 9/19.5;
    position: relative;
    overflow: hidden;
}

.screen-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Section - Style Apple MODIFIÉ */
.product-section {
    padding: 60px 0 16px;
    background: #0b0c0f;
    position: relative;
}

.product-section .section-container {
    max-width: 1600px;
    /* Augmenté pour plus de largeur */
    margin: 0 auto;
    padding: 0 40px;
    /* Espace réduit sur les côtés */
}

.section-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
}

.section-eyebrow {
    font-size: 17px;
    line-height: 1.4;
    font-weight: 600;
    color: #f5f5f7;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: 0.012em;
}

.section-headline {
    font-size: 48px;
    line-height: 1.05;
    font-weight: 600;
    color: #f5f5f7;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: -0.003em;
}

.section-subhead {
    font-size: 21px;
    line-height: 1.381;
    font-weight: 400;
    color: rgba(245, 245, 247, 0.9);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0.011em;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Grille deux cartes - Style Apple MODIFIÉ */
.features-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    /* Espacement augmenté entre les cartes */
    width: 100%;
    margin: 0 auto;
    align-items: stretch;
}

/* Cartes - Style Apple MODIFIÉ */
.feature-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    min-height: 480px;
    /* Réduit de 500px */
    width: 100%;
}

.feature-card:hover {
    transform: none;
    box-shadow: none;
}

.card-content {
    padding: 36px 36px 0px;
    /* Mis à 0 en bas pour supprimer l'espace [cite: 141] */
    display: flex;
    flex-direction: column;
    z-index: 2;
    position: relative;
    flex-grow: 0;
}

.card-title {
    font-size: 28px;
    line-height: 1.14;
    font-weight: 600;
    color: #f5f5f7;
    margin-bottom: 12px;
    letter-spacing: 0.004em;
}

.card-description {
    font-size: 17px;
    line-height: 1.47;
    font-weight: 400;
    color: rgba(245, 245, 247, 0.72);
    margin-bottom: 16px;
    /* Réduit de 20px à 16px */
    letter-spacing: -0.022em;
}

.card-link {
    display: inline-flex;
    align-items: center;
    color: #06c;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.022em;
    transition: all 0.3s ease;
    margin-bottom: 0px;
    /* Supprime l'espace sous le lien [cite: 145, 146] */
}

.card-link:hover {
    color: #0077ed;
    transform: translateX(4px);
}

.card-image {
    display: flex;
    align-items: flex-end;
    /* Pousse l'image tout en bas du conteneur  */
    justify-content: center;
    padding: 0;
    /* [cite: 148] */
    position: relative;
    overflow: visible;
    flex-grow: 1;
    /* Permet au conteneur de prendre tout l'espace restant [cite: 149] */
}

.hand-phone {
    position: relative;
    width: min(720px, 100%);
    aspect-ratio: 1 / 1;
    display: block;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: center bottom;
}

.hand-phone__image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    pointer-events: none;
    border-radius: 0;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
    transition: filter 0.35s ease;
}

.hand-phone--left .hand-phone__image {
    transform: none;
}

.hand-phone--right .hand-phone__image {
    transform: scaleX(-1);
}

.hand-phone__video {
    position: absolute;
    left: 31.5%;
    top: 10%;
    width: 34.5%;
    height: 72%;
    object-fit: cover;
    border-radius: clamp(18px, 2.3vw, 28px);
    z-index: 1;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hand-phone--left .hand-phone__video {
    left: 37.5%;
}

.hand-phone--right .hand-phone__video {
    left: auto;
    right: 37.5%;
    transform: none;
    height: 72%;
}

.hand-phone:hover {
    transform: scale(1.03) translateY(-6px);
}

.hand-phone:hover .hand-phone__video {
    transform: scale(1.01);
}

.hand-phone:hover .hand-phone__image {
    filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.4));
}

.card-image img {
    width: 100%;
    /* Prend toute la largeur de la carte  */
    height: auto;
    /* Calcule la hauteur automatiquement pour ne pas couper  */
    display: block;
    /* Supprime l'espace vide sous l'image */
    object-fit: contain;
    /* Assure que toute l'image est visible  */
    max-height: none;
    /* Supprime toute restriction de hauteur [cite: 151] */
    border-radius: 0 0 24px 24px;
    /* Arrondi uniquement les coins du bas [cite: 137] */
}

.card-image .hand-phone__image {
    border-radius: 0;
    object-fit: contain;
}

.feature-card:hover .card-image img:not(.hand-phone__image) {
    transform: scale(1.05);
}

.feature-card:hover .hand-phone__image {
    transform: none;
}

.feature-card:hover .hand-phone--right .hand-phone__image {
    transform: scaleX(-1);
}

.feature-card:hover .hand-phone__video {
    transform: none;
}

.iphone-mockup {
    width: clamp(240px, 28vw, 360px);
    aspect-ratio: 9 / 19.5;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.iphone-frame {
    width: 100%;
    height: 100%;
    padding: 10px;
    border-radius: 40px;
    background: linear-gradient(155deg, #0b0c0f, #2a2b2f 55%, #0b0c0f);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    position: relative;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 9 / 19.5;
}

.iphone-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 44%;
    height: 18px;
    border-radius: 999px;
    background: #0b0c0f;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 2;
}

.iphone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Interactive Features Section */
.interactive-features {
    padding: 40px 0;
    background: #1d1d1f;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.6);
    color: #f5f5f7;
}

.interactive-features .section-container {
    max-width: 1600px;
}

.features-showcase {
    margin-top: 0;
}

.feature-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.feature-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 40px;
    background: #f5f5f7;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.feature-tab:hover {
    background: #e8e8ed;
    transform: translateY(-2px);
}

.feature-tab.active {
    background: yellow;
}

.tab-icon {
    font-size: 32px;
    transition: transform 0.3s ease;
}

.feature-tab:hover .tab-icon {
    transform: scale(1.1);
}

.tab-label {
    font-size: 17px;
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -0.022em;
}

.feature-tab.active .tab-label {
    color: black;
}

.feature-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.feature-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-split {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.feature-text {
    padding: 0;
}

.feature-content-title {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 600;
    color: white;
    margin-bottom: 32px;
    letter-spacing: 0em;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #34c759;
    color: white;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-list li strong {
    display: block;
    font-size: 19px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
    letter-spacing: -0.022em;
}

.feature-list li p {
    font-size: 17px;
    line-height: 1.47;
    color: white;
    letter-spacing: -0.022em;
}

.feature-cta {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: #9f832f;
    color: white;
    text-decoration: none;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.022em;
    transition: all 0.3s ease;
}

.feature-cta:hover {
    background: #b8943a;
    transform: scale(1.02);
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Image dans la partie droite des fonctionnalités interactives */
.feature-visual img {
    width: 100%;
    height: auto;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-visual img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: none;
}

.livreur-animate {
    opacity: 0;
    transform: translateX(120px);
    transition: transform 2.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.4s ease-out;
}

.livreur-animate.is-visible {
    opacity: 1;
    transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
    .livreur-animate {
        transition: none;
        transform: none;
        opacity: 1;
    }
}

.stats-card {
    background:
        radial-gradient(120% 140% at 10% 0%, rgba(189, 183, 163, 0.25) 0%, rgba(189, 183, 163, 0) 55%),
        linear-gradient(135deg, #241f10 0%, #4e4018 45%, #b8943a 100%);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(189, 183, 163, 0.18);
    animation: statsFloat 6s ease-in-out infinite;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 248, 230, 0.12) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes statsFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .stats-card {
        animation: none;
    }
}

.stat {
    position: relative;
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(189, 183, 163, 0.35);
}

.stat:last-child {
    border-bottom: none;
}

.stat-value {
    font-size: 48px;
    font-weight: 800;
    color: #f7f3e7;
    margin-bottom: 8px;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 15px;
    font-weight: 500;
    color: rgba(247, 243, 231, 0.86);
    letter-spacing: 0.01em;
}

/* Full Width Section */
.full-width-section {
    padding: 110px 0;
    background: #f5f5f7;
    text-align: center;
}

.promo-headline {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
    letter-spacing: 0em;
}

.promo-subhead {
    font-size: 21px;
    line-height: 1.381;
    font-weight: 400;
    color: #6e6e73;
    margin-bottom: 28px;
    letter-spacing: 0.011em;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
}

.store-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)),
        linear-gradient(135deg, #2d2416, #5a4a2a);
    color: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.01em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out backwards;
}

.store-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
}

.store-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.store-button:hover {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08)),
        linear-gradient(135deg, #3d3020, #6b5730);
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 0 30px rgba(159, 131, 47, 0.3);
    border-color: rgba(255, 255, 255, 0.25);
}

.store-button:hover::before {
    left: 100%;
}

.store-button:hover::after {
    opacity: 1;
    animation: pulse-glow 2s ease-in-out infinite;
}

.store-button:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.store-button:nth-child(2) {
    animation-delay: 0.1s;
}

.store-icon {
    width: 26px;
    height: 26px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.store-button:hover .store-icon {
    transform: scale(1.1) rotate(-5deg);
}

.store-button.glass-intense {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
        linear-gradient(135deg, rgba(45, 36, 22, 0.8), rgba(90, 74, 42, 0.8));
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
footer {
    background: #f5f5f7;
    padding: 34px 22px;
    border-top: 1px solid #d2d2d7;
}

.footer-content {
    max-width: 980px;
    margin: 0 auto;
}

.footer-directory {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #d2d2d7;
}

.footer-column h3 {
    font-size: 12px;
    line-height: 1.33;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    font-size: 12px;
    line-height: 1.33;
    font-weight: 400;
    color: #6e6e73;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #1d1d1f;
}

.footer-legal {
    padding-top: 20px;
    font-size: 12px;
    line-height: 1.33;
    color: #6e6e73;
    letter-spacing: -0.01em;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-section .section-container {
        max-width: 100%;
        padding: 0 30px;
    }

    .features-grid-two {
        gap: 16px;
    }
}

@media (max-width: 1068px) {
    .nav-content {
        max-width: 692px;
    }

    .hero-title {
        font-size: 56px;
        letter-spacing: -2px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .phones-showcase {
        flex-direction: column;
        gap: 30px;
        min-height: auto;
    }

    .phone-wrapper {
        opacity: 1 !important;
        transform: none !important;
    }

    .phone-wrapper:hover {
        transform: scale(1.03) !important;
    }

    .product-section .section-container {
        padding: 0 22px;
    }

    .features-grid-two {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        min-height: 420px;
    }

    .card-content {
        padding: 40px 30px 20px;
    }

    .card-title {
        font-size: 24px;
    }

    .card-description {
        font-size: 15px;
    }

    .card-image img {
        max-width: 80%;
    }

    .iphone-mockup {
        width: min(280px, 78%);
    }

    .feature-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-content-title {
        font-size: 32px;
    }

    .footer-directory {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 735px) and (max-width: 1024px) {
    .hand-phone {
        width: clamp(440px, 78vw, 580px);
    }

    .hand-phone__video {
        top: 8%;
        width: 29%;
        height: 59%;
        border-radius: 18px;
    }

    .hand-phone--left .hand-phone__video {
        left: 30.5%;
        width: 28%;
    }

    .hand-phone--right .hand-phone__video {
        right: 49.5%;
        width: 28%;
        height: 59%;
    }
}

@media (max-width: 734px) {
    .hero-title {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .hero-subtitle {
        font-size: 19px;
    }

    .section-headline {
        font-size: 32px;
    }

    .section-subhead {
        font-size: 19px;
    }

    .nav-links {
        display: none;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .store-button {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 18px 28px;
    }

    .device-frame {
        width: 240px;
    }

    .features-grid-two {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        min-height: 380px;
    }

    .card-content {
        padding: 30px 24px 16px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-description {
        font-size: 14px;
    }

    .card-image {
        padding: 0 8px 20px;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .card-image img {
        max-width: 80%;
    }

    .hand-phone {
        width: 100vw;
        max-width: none;
    }

    .hand-phone__video {
        top: 8%;
        width: 30%;
        height: 62%;
        border-radius: 14px;
    }

    .hand-phone--left .hand-phone__video {
        left: 30.5%;
    }

    .hand-phone--right .hand-phone__video {
        right: 50.5%;
        width: 30%;
        height: 62%;
    }

    .iphone-mockup {
        width: min(240px, 80%);
    }

    .feature-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .feature-tab {
        flex-direction: row;
        justify-content: center;
        padding: 16px 24px;
    }

    .tab-icon {
        font-size: 24px;
    }

    .feature-content-title {
        font-size: 28px;
    }

    .feature-list li strong {
        font-size: 17px;
    }

    .feature-list li p {
        font-size: 15px;
    }

    .feature-visual img {
        max-width: 100%;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .feature-visual img:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    }
}

@media (max-width: 480px) {
    .product-section .section-container {
        padding: 0 16px;
    }

    .section-headline {
        font-size: 28px;
    }

    .section-subhead {
        font-size: 17px;
    }

    .features-grid-two {
        gap: 12px;
    }

    .feature-card {
        min-height: 360px;
    }

    .card-content {
        padding: 24px 20px 16px;
    }

    .hand-phone {
        width: 100vw;
        max-width: none;
    }

    .hand-phone__video {
        top: 8%;
        width: 29%;
        height: 60%;
        border-radius: 12px;
    }

    .hand-phone--left .hand-phone__video {
        left: 30.5%;
    }

    .hand-phone--right .hand-phone__video {
        right: 50.5%;
        width: 29%;
        height: 60%;
    }
}

/* iPhone-style mockup for videos on mobile */
@media (max-width: 734px) {
    .feature-card {
        min-height: auto !important;
    }

    .card-content {
        padding: 24px 16px 16px !important;
    }

    .card-image {
        padding: 0 !important;
        margin: 0 !important;
        width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        text-align: center;
        overflow: hidden;
    }

    .hand-phone {
        width: min(82vw, 360px) !important;
        max-width: none !important;
        aspect-ratio: 9 / 19.5 !important;
        height: auto !important;
        margin: 0 auto;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        padding: 10px;
        border-radius: 40px;
        background: linear-gradient(145deg, #0b0c0f 0%, #2a2b2f 55%, #0b0c0f 100%);
        box-shadow:
            0 24px 60px rgba(0, 0, 0, 0.45),
            inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    }

    .hand-phone::before {
        content: '';
        position: absolute;
        inset: 6px;
        border-radius: 34px;
        background: #000;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
        z-index: 1;
    }

    .hand-phone::after {
        content: '';
        position: absolute;
        top: 14px;
        left: 50%;
        transform: translateX(-50%);
        width: 110px;
        height: 24px;
        border-radius: 999px;
        background: #0b0c0f;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
        z-index: 3;
    }

    .hand-phone__image {
        display: none !important;
    }

    .hand-phone__video {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 auto !important;
        border-radius: 30px !important;
        z-index: 2;
        object-fit: cover;
    }

    .hand-phone--left .hand-phone__video {
        left: 0 !important;
    }

    .hand-phone--right .hand-phone__video {
        right: 0 !important;
    }
}

@media (max-width: 480px) {
    .hand-phone {
        width: 88vw !important;
    }
}
