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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: white;
}

/* Header Styles */
.header {
    width: 100%;
    background: white;
    padding: 20px 0;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    height: 50px;
    width: auto;
    display: block;
}

.logo-text {
    height: 30px;
    width: auto;
    display: block;
}

/* Desktop only: SCOPE wordmark on the vertical mid-line of the logo */
@media (min-width: 1025px) {
    .logo-section {
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }

    .logo-icon {
        height: 50px;
        width: auto;
    }

    .logo-text {
        height: 30px;
        width: auto;
        align-self: center;
        line-height: 0;
    }
}

/* Tagline Center */
.tagline {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.tagline h1 {
    font-family: Futura, "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;
    font-size: 3.75rem;
    font-weight: 400;
    color: #000;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

/* Navigation */
.navigation {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

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

.nav-link {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link.active {
    color: #007AFF;
}

.nav-link:hover {
    color: #007AFF;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
    position: relative;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: block;
    transform-origin: center;
}

/* Video Section */
.video-section {
    width: 100%;
    background: #000;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.video-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: #000;
    padding: 0 0 40px 0;
    overflow: visible;
}

/* Desktop: video fits page width */
.hero-video {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    display: block;
    object-fit: contain;
    background: #000;
    position: relative;
    left: auto;
    transform: none;
    flex-shrink: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    z-index: 5;
    pointer-events: none;
}

/* Hero phone stack — sized by the PNG so content stays inside the frame */
.phone-hero {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28%;
    max-width: 28%;
    z-index: 8;
    pointer-events: none;
}

.phone-overlay {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    z-index: 10;
    pointer-events: none;
}

.phone-content {
    position: absolute;
    /* inset to the transparent screen area of PHONE_TRANSPARENT.png */
    top: 8.5%;
    left: 17.6%;
    width: 64.8%;
    height: 83.2%;
    z-index: 8;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 10% 6% 8%;
    box-sizing: border-box;
}

.phone-brand {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.phone-logo {
    width: 28%;
    height: auto;
    margin-bottom: 2%;
    display: block;
}

.phone-scope-text {
    width: 48%;
    height: auto;
    display: block;
}

.phone-features-cta {
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    z-index: 12;
    padding: 6px 10px;
    margin-top: auto;
    flex-shrink: 0;
}

.phone-features-label {
    font-family: Futura, "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;
    font-size: clamp(0.7rem, 1.4vw, 1.05rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: none;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.phone-features-arrow {
    display: block;
    width: 14px;
    height: 14px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    margin-top: -4px;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.4));
    animation: phone-features-arrow-bounce 1.4s ease-in-out infinite;
}

@keyframes phone-features-arrow-bounce {
    0%, 100% {
        transform: translateY(0) rotate(45deg);
        opacity: 1;
    }
    50% {
        transform: translateY(8px) rotate(45deg);
        opacity: 0.7;
    }
}

/* Desktop: Features label + arrow 2x */
@media (min-width: 769px) {
    .phone-features-label {
        font-size: clamp(1.4rem, 2.8vw, 2.1rem);
    }

    .phone-features-arrow {
        width: 28px;
        height: 28px;
        border-right-width: 3px;
        border-bottom-width: 3px;
        gap: 12px;
    }

    .phone-features-cta {
        gap: 14px;
    }
}

/* Phone Side Content - QR Code and store badges */
.phone-side-content {
    position: absolute;
    top: 18%;
    left: calc(50% + 14%);
    transform: none;
    z-index: 11;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 68px;
    margin-left: -40px;
}

.store-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.qr-code {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-code img {
    max-width: 100%;
    max-height: 100%;
}

.qr-code-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.google-play-button,
.app-store-button,
.store-badge {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* App Store QR+badge pair: hide on tablet only (desktop + mobile show) */
.desktop-only {
    display: flex;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .logo-text {
        display: none;
    }

    .tagline h1 {
        font-size: clamp(1.45rem, 2.8vw, 1.9rem);
        max-width: calc(100vw - 160px);
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        list-style: none;
    }

    .nav-menu.active {
        display: flex;
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        font-size: 18px;
        width: 100%;
    }

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

    /* Hero: stack badges under phone on tablet portrait */
    .video-section {
        min-height: calc(100svh - 60px);
    }

    .phone-hero {
        top: 42%;
        max-width: min(70%, 640px);
        width: min(70%, 640px);
    }

    .phone-side-content {
        top: auto;
        bottom: 64px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 16px;
        max-width: calc(100% - 32px);
    }

    .store-block-apple.desktop-only {
        display: flex !important;
    }

    .qr-code {
        display: none;
    }
}


/* ============================================
   TABLET RESPONSIVE (768px - 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 30px;
    }

    .tagline h1 {
        font-size: 3rem;
    }

    .logo-icon {
        height: 45px;
    }

    .logo-text {
        height: 28px;
    }

    .nav-menu {
        gap: 25px;
    }

    .nav-link {
        font-size: 15px;
    }

    .video-container {
        max-width: 100%;
        padding: 0 0 30px 0;
    }

    .hero-video {
        width: 150%;
        min-width: 150%;
        max-width: none;
        left: 50%;
        transform: translateX(-50%);
        object-fit: cover;
    }

    .phone-hero {
        top: 46%;
        max-width: min(70%, 640px);
        width: min(70%, 640px);
    }

    .phone-logo {
        width: 28%;
    }

    .phone-scope-text {
        width: 34%;
    }

    .phone-side-content {
        top: 46%;
        left: calc(50% + min(22%, 180px));
        transform: translateY(-50%);
        gap: 14px;
        max-width: 180px;
    }

    .qr-code {
        width: 120px;
        height: 120px;
    }

    .google-play-button,
    .app-store-button,
    .store-badge {
        height: 42px;
        max-width: 140px;
    }

    .tagline h1 {
        font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    }

    .nav-menu {
        gap: 18px;
    }

    .nav-link {
        font-size: 14px;
    }
}

/* Tablet portrait: fill viewport — remove black gap under hero */
@media (max-width: 1024px) and (min-width: 769px) {
    .video-section {
        height: calc(100svh - 64px);
        min-height: calc(100svh - 64px);
        max-height: calc(100dvh - 64px);
        overflow: hidden;
        background: #000;
    }

    .video-container {
        display: block;
        position: relative;
        height: 100%;
        min-height: 100%;
        max-width: 100%;
        padding: 0;
        overflow: hidden;
        background: #000;
    }

    .hero-video {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        min-width: 100%;
        max-width: none;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .video-overlay {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .phone-hero {
        top: 45%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: min(70%, 640px);
        width: min(70%, 640px);
    }

    .phone-side-content {
        position: absolute;
        top: auto;
        bottom: 72px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 18px;
        max-width: calc(100% - 40px);
        margin-left: 0;
        z-index: 12;
        pointer-events: auto;
    }

    .store-block {
        gap: 0;
    }

    .store-block-apple.desktop-only {
        display: flex !important;
    }

    .qr-code {
        display: none;
    }

    .google-play-button,
    .app-store-button,
    .store-badge {
        height: 44px;
        max-width: 150px;
    }
}

/* ============================================
   MOBILE RESPONSIVE (up to 768px)
   ============================================ */
@media (max-width: 768px) {
    .header {
        padding: 8px 0;
        position: relative;
        z-index: 1001;
        overflow: visible;
    }

    .header-container {
        padding: 0 16px;
        flex-wrap: nowrap;
        position: relative;
        align-items: center;
        min-height: 36px;
    }

    /* Logo stays on left */
    .logo-section {
        order: 1;
        z-index: 2;
    }

    .logo-icon {
        height: 28px;
    }

    /* Hide SCOPE wordmark next to logo on mobile */
    .logo-text {
        display: none;
    }

    /* "Show the World" centered at top of header */
    .tagline {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        order: unset;
        width: auto;
        max-width: calc(100% - 100px);
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        z-index: 1;
        pointer-events: none;
    }

    .tagline h1 {
        font-size: 1.5rem;
        white-space: nowrap;
        text-align: center;
        line-height: 1.2;
    }

    /* Navigation — keep above sliding panel so X stays visible */
    .navigation {
        order: 2;
        margin-left: auto;
        z-index: 1002;
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
        padding: 6px;
        gap: 5px;
        position: relative;
        z-index: 1003;
        overflow: visible;
    }

    .mobile-menu-toggle span {
        width: 22px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }

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

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        font-size: 18px;
        width: 100%;
    }

    /* Animate hamburger → X (transform-origin center, no clip) */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Hero fills nearly the whole phone screen (slides stay below fold) */
    .video-section {
        height: calc(100dvh - 48px);
        min-height: calc(100svh - 48px);
        max-height: calc(100dvh - 48px);
        overflow: hidden;
        background: #000;
    }

    .phone-hero {
        /* Keep phone fully inside the hero — larger on modern phones */
        top: 42%;
        left: 50%;
        max-width: min(90vw, 420px);
        width: min(90vw, 420px);
    }

    .phone-content {
        padding: 12% 8% 10%;
    }

    .phone-logo {
        width: 34%;
    }

    .phone-scope-text {
        width: 42%;
    }

    .phone-features-label {
        font-size: clamp(0.95rem, 4vw, 1.25rem);
    }

    .phone-features-arrow {
        width: 16px;
        height: 16px;
        border-right-width: 2.5px;
        border-bottom-width: 2.5px;
    }

    /* Badges midway between phone bottom and video bottom, over video */
    .video-container {
        display: block;
        position: relative;
        height: 100%;
        min-height: 100%;
        padding: 0;
        background: transparent;
        overflow: hidden;
    }

    .phone-side-content {
        position: absolute;
        top: auto;
        bottom: 18px;
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
        max-width: calc(100% - 24px);
        margin: 0;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 12px;
        z-index: 12;
        pointer-events: auto;
    }

    .store-block {
        gap: 0;
    }

    .store-block-apple.desktop-only {
        display: flex !important;
    }

    .qr-code {
        display: none;
    }

    .google-play-button,
    .app-store-button,
    .store-badge {
        height: 40px;
        width: auto;
        max-width: 130px;
    }

    .hero-video {
        position: absolute;
        top: 0;
        left: 50%;
        width: 195.5%;
        min-width: 195.5%;
        max-width: none;
        height: 100%;
        transform: translateX(-50%);
        object-fit: cover;
        background: #000;
    }

    .video-section,
    .video-container {
        padding-bottom: 0;
    }
}

/* ============================================
   SMALL MOBILE (up to 480px)
   ============================================ */
@media (max-width: 480px) {
    .header {
        padding: 6px 0;
    }

    .header-container {
        padding: 0 12px;
        min-height: 32px;
    }

    .logo-icon {
        height: 24px;
    }

    .tagline h1 {
        font-size: 1.4rem;
    }

    .nav-menu {
        width: min(100%, 320px);
        right: -100%;
    }

    .hero-video {
        width: 201%;
        min-width: 201%;
        height: 100%;
    }

    .video-container {
        max-width: 100%;
        padding: 0;
        background: transparent;
        height: 100%;
    }

    .video-section {
        height: calc(100dvh - 44px);
        min-height: calc(100svh - 44px);
        max-height: calc(100dvh - 44px);
    }

    .phone-hero {
        top: 42%;
        left: 50%;
        max-width: min(80vw, 340px);
        width: min(80vw, 340px);
    }

    .phone-content {
        padding: 12% 8% 10%;
    }

    .phone-logo {
        width: 36%;
    }

    .phone-scope-text {
        width: 44%;
    }

    .phone-side-content {
        top: auto;
        bottom: 14px;
        left: 50%;
        transform: translateX(-50%);
        gap: 10px;
    }

    .qr-code {
        display: none;
    }

    .google-play-button,
    .app-store-button,
    .store-badge {
        height: 36px;
        max-width: 118px;
    }
}

/* ============================================
   LANDSCAPE MOBILE
   ============================================ */
@media (max-width: 768px) and (orientation: landscape) {
    .tagline h1 {
        font-size: 1.65rem;
    }
}

/* ============================================
   FEATURE SECTION — slider
   ============================================ */
.feature-section {
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.feature-viewport {
    width: 100%;
    overflow: hidden;
}

.feature-track {
    display: flex;
    width: 100%;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.feature-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 96px 40px 120px;
    box-sizing: border-box;
    position: relative;
}

/* Contact Us CTA at bottom of each slide */
.slide-contact-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
    padding: 16px 12px 8px;
    text-decoration: none;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 5;
}

.slide-contact-label {
    font-family: Futura, "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 400;
    letter-spacing: 0.06em;
}

.slide-contact-arrow {
    display: block;
    width: 16px;
    height: 16px;
    border-right: 2.5px solid currentColor;
    border-bottom: 2.5px solid currentColor;
    transform: rotate(45deg);
    margin-top: -4px;
    animation: phone-features-arrow-bounce 1.4s ease-in-out infinite;
}

.feature-slide-walk .slide-contact-cta,
.feature-slide-rotate .slide-contact-cta {
    color: #fff;
}

.feature-slide-products .slide-contact-cta,
.feature-slide-interface .slide-contact-cta {
    color: #2c2c2c;
}

/* Contact / Follow us section — black */
.contact-section {
    width: 100%;
    min-height: 0;
    height: auto;
    background: #000000;
    color: #ffffff;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 24px 64px;
}

.contact-section-compact {
    padding: 40px 24px 36px;
}

.contact-section-compact .contact-stores {
    margin: 0 auto;
}

.contact-inner {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.contact-heading {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 400;
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    letter-spacing: 0.01em;
    margin: 0 0 48px;
    color: #fff;
}

.contact-offer {
    max-width: 720px;
    margin: 0 auto;
}

.contact-offer-title {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 400;
    font-size: clamp(1.55rem, 3.2vw, 2.35rem);
    line-height: 1.25;
    margin: 0 0 18px;
    color: #fff;
}

.contact-offer-text {
    font-family: Futura, "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;
    font-size: clamp(0.98rem, 1.6vw, 1.15rem);
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 auto 28px;
    max-width: 640px;
}

.contact-offer-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 28px;
}

.contact-price {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 400;
    color: #fff;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border: 1.5px solid #ffffff;
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    font-family: Futura, "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    transition: background 0.25s ease, color 0.25s ease;
}

.contact-pill:hover,
.contact-pill:focus-visible {
    background: #ffffff;
    color: #000000;
    outline: none;
}

.contact-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.55);
    margin: 44px auto;
    width: 100%;
    max-width: 920px;
}

.contact-stores {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 40px;
    align-items: end;
    justify-items: center;
    max-width: 780px;
    margin: 8px auto 0;
}

.contact-store {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.contact-qr {
    position: relative;
    width: min(128px, 22vw);
    aspect-ratio: 1;
    background: #ffffff;
    padding: 8px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-qr-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.contact-qr-soon .contact-qr-image {
    filter: blur(1.5px) brightness(0.55);
    opacity: 0.85;
}

.contact-coming-soon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: #ffffff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
    pointer-events: none;
}

.contact-store-badge {
    height: 42px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.18));
}

.contact-store-link {
    display: inline-flex;
    line-height: 0;
    text-decoration: none;
}

.contact-store-link:hover .contact-store-badge,
.contact-store-link:focus-visible .contact-store-badge {
    opacity: 0.88;
}

.contact-store-link:focus-visible {
    outline: 1px solid #fff;
    outline-offset: 4px;
}

.store-badge-link {
    display: inline-flex;
    line-height: 0;
    text-decoration: none;
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 12;
}

.store-badge-link:hover .store-badge,
.store-badge-link:focus-visible .store-badge {
    opacity: 0.9;
}

.contact-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    padding: 6px 4px;
    min-height: 42px;
}

.contact-instagram-icon {
    display: flex;
    flex-shrink: 0;
}

.contact-instagram-label {
    font-family: Futura, "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.contact-instagram:hover .contact-instagram-label,
.contact-instagram:focus-visible .contact-instagram-label {
    opacity: 0.8;
}

.contact-instagram:focus-visible {
    outline: 1px solid #fff;
    outline-offset: 4px;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 56px 20px 48px;
        min-height: 0;
        height: auto;
    }

    .contact-section-compact {
        padding: 28px 20px 24px;
    }

    .contact-heading {
        margin-bottom: 36px;
    }

    .contact-divider {
        margin: 36px auto;
    }

    .contact-offer-row {
        flex-direction: column;
        gap: 16px;
    }

    /* Mobile: badges only — hide QR codes */
    .contact-qr {
        display: none;
    }

    .contact-stores {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 16px 18px;
        max-width: 100%;
    }

    .contact-store {
        gap: 0;
    }

    .contact-store-badge {
        height: 40px;
        max-width: 140px;
    }

    .contact-instagram {
        gap: 8px;
        min-height: 40px;
    }

    .contact-instagram-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-instagram-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-stores {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 14px 12px;
        max-width: 100%;
    }

    .contact-store-badge {
        height: 36px;
        max-width: 120px;
    }

    .contact-instagram {
        gap: 6px;
        min-height: 36px;
    }

    .contact-instagram-label {
        font-size: 0.85rem;
    }

    .contact-instagram-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* Desktop: side-by-side layout on wide screens only */
@media (min-width: 1025px) {
    .feature-section,
    .feature-viewport {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .feature-track {
        align-items: stretch;
    }

    .feature-slide {
        min-height: 100vh;
        min-height: 100dvh;
        height: 100vh;
        height: 100dvh;
        padding: 36px 40px 24px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        box-sizing: border-box;
        overflow: hidden;
    }

    .feature-inner {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
        max-width: 1600px;
        margin: 0 auto;
        flex: 1;
        min-height: 0;
    }

    .feature-title {
        margin-top: 12px;
        margin-bottom: 36px;
        flex-shrink: 0;
    }

    .feature-slide-rotate > .feature-title,
    .feature-slide-interface > .feature-title {
        flex-shrink: 0;
        margin-top: 12px;
        margin-bottom: 36px;
    }

    .feature-phone {
        width: min(510px, 42vw, 58vh);
    }

    .feature-copy {
        max-width: min(728px, 38vw);
    }

    .feature-text {
        max-width: 100%;
        font-size: clamp(1.6rem, 2.8vw, 3.2rem);
        line-height: 1.25;
    }

    .feature-body {
        align-items: center;
        justify-content: center;
        gap: 36px;
        width: 100%;
        flex: 1;
        min-height: 0;
    }

    .feature-arrow {
        width: 96px;
        height: 96px;
        flex-shrink: 0;
    }

    .feature-slide-rotate .feature-body {
        margin-top: 48px;
    }

    .feature-slide-rotate > .feature-title {
        margin-bottom: 8px;
    }

    .feature-slide-interface .feature-body {
        margin-top: 40px;
    }

    .feature-slide-interface > .feature-title {
        margin-bottom: 12px;
    }

    .slide-contact-cta {
        margin-top: auto;
        flex-shrink: 0;
    }
}

.feature-slide-walk {
    background: #3d9e45;
    color: #fff;
}

.feature-slide-products {
    background: #ffffff;
    color: #2c2c2c;
}

.feature-slide-rotate {
    background: #3d9e45;
    color: #fff;
}

.feature-slide-interface {
    background: #ffffff;
    color: #2c2c2c;
}

.feature-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.feature-title {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-style: normal;
    font-weight: 400;
    font-size: clamp(4.8rem, 8vw, 6.8rem);
    letter-spacing: 0.01em;
    margin-bottom: 48px;
}

.feature-slide-walk .feature-title {
    color: #fff;
}

.feature-slide-products .feature-title {
    color: #2c2c2c;
}

.feature-slide-rotate .feature-title,
.feature-slide-interface .feature-title {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
    padding: 0 24px;
    box-sizing: border-box;
    text-align: center;
}

.feature-slide-rotate .feature-title {
    color: #fff;
    font-size: clamp(2.2rem, 4.8vw, 5rem);
    white-space: normal;
    line-height: 1.15;
}

.feature-slide-rotate .feature-title br {
    display: none;
}

.feature-slide-interface .feature-title {
    color: #2c2c2c;
    font-size: clamp(2.6rem, 5.5vw, 5.6rem);
    white-space: nowrap;
}

.feature-body {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: left;
}

.feature-phone {
    position: relative;
    width: min(364px, 53vw);
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 12% / 6%;
    border: 5px solid #0a0a0a;
    box-shadow:
        0 28px 56px rgba(0, 0, 0, 0.7),
        0 12px 28px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(0, 0, 0, 0.35);
}

.feature-phone-video {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #000;
    border-radius: calc(12% / 1.1) / calc(6% / 1.1);
}

.feature-phone-frame {
    display: none;
}

.feature-copy {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 520px;
}

.feature-text {
    max-width: 520px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.3rem, 4vw, 2.9rem);
    line-height: 1.45;
    font-weight: 400;
    margin: 0;
    flex: 1;
}

.feature-slide-walk .feature-text {
    color: #fff;
}

.feature-slide-products .feature-text {
    color: #2c2c2c;
}

.feature-slide-rotate .feature-text {
    color: #fff;
}

.feature-slide-interface .feature-text {
    color: #2c2c2c;
}

.feature-arrow {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.25s ease;
}

.feature-arrow:hover,
.feature-arrow:focus-visible {
    background: rgba(0, 0, 0, 0.06);
    outline: none;
}

.feature-slide-walk .feature-arrow:hover,
.feature-slide-walk .feature-arrow:focus-visible,
.feature-slide-rotate .feature-arrow:hover,
.feature-slide-rotate .feature-arrow:focus-visible {
    background: rgba(255, 255, 255, 0.15);
}

.feature-slide-products .feature-arrow:hover,
.feature-slide-products .feature-arrow:focus-visible,
.feature-slide-interface .feature-arrow:hover,
.feature-slide-interface .feature-arrow:focus-visible {
    background: rgba(0, 0, 0, 0.06);
}

.feature-arrow-icon {
    display: block;
    width: 42px;
    height: 42px;
    border-right: 5px solid currentColor;
    border-bottom: 5px solid currentColor;
    box-sizing: border-box;
}

.feature-arrow-next .feature-arrow-icon {
    margin-left: -10px;
    animation: feature-arrow-next-move 1.6s ease-in-out infinite;
}

.feature-arrow-prev .feature-arrow-icon {
    margin-right: -10px;
    animation: feature-arrow-prev-move 1.6s ease-in-out infinite;
}

.feature-slide-walk .feature-arrow-icon,
.feature-slide-rotate .feature-arrow-icon {
    border-color: #fff;
}

.feature-slide-products .feature-arrow-icon,
.feature-slide-interface .feature-arrow-icon {
    border-color: #2c2c2c;
}

/* Horizontal only: translateX after rotate keeps motion left↔right */
@keyframes feature-arrow-next-move {
    0%, 100% {
        transform: translateX(12px) rotate(-45deg);
        opacity: 1;
    }
    50% {
        transform: translateX(-12px) rotate(-45deg);
        opacity: 0.7;
    }
}

@keyframes feature-arrow-prev-move {
    0%, 100% {
        transform: translateX(-12px) rotate(135deg);
        opacity: 1;
    }
    50% {
        transform: translateX(12px) rotate(135deg);
        opacity: 0.7;
    }
}

@media (max-width: 1024px) {
    .feature-section,
    .feature-viewport {
        min-height: 100svh;
        min-height: 100dvh;
    }

    .feature-track {
        align-items: stretch;
    }

    .feature-slide {
        min-height: 100svh;
        min-height: 100dvh;
        height: auto;
        padding: 20px 20px 20px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        position: relative;
        overflow: visible;
    }

    .feature-inner {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
        min-height: 0;
    }

    .feature-slide-walk .feature-title,
    .feature-slide-products .feature-title,
    .feature-slide-interface .feature-title {
        white-space: normal;
        width: 100%;
        text-align: center;
        margin-top: 4px;
        margin-bottom: 14px;
        font-size: clamp(1.55rem, 6.5vw, 2.8rem);
        line-height: 1.15;
        flex-shrink: 0;
        padding: 0 8px;
    }

    .feature-slide-rotate .feature-title {
        white-space: normal;
        width: 100%;
        text-align: center;
        margin-top: 4px;
        margin-bottom: 14px;
        padding: 0 12px;
        font-size: clamp(1.25rem, 5.2vw, 2.4rem);
        line-height: 1.2;
        flex-shrink: 0;
    }

    .feature-slide-rotate .feature-title br {
        display: inline;
    }

    /* Stacked: phone, equal space, text, equal space (then Follow us) */
    .feature-body {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-rows: auto 1fr auto 1fr;
        justify-content: center;
        align-items: center;
        column-gap: 8px;
        row-gap: 0;
        text-align: center;
        width: 100%;
        flex: 1 1 auto;
        min-height: 0;
    }

    .feature-arrow-prev {
        grid-column: 1;
        grid-row: 1;
    }

    .feature-phone {
        width: min(320px, 62vw, 50svh);
        border-width: 4px;
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
    }

    .feature-arrow-next {
        grid-column: 3;
        grid-row: 1;
    }

    .feature-copy {
        grid-column: 1 / -1;
        grid-row: 3;
        max-width: 100%;
        justify-content: center;
        margin-top: 0;
        align-self: center;
    }

    .feature-text {
        max-width: 520px;
        margin: 0 auto;
        font-size: clamp(1rem, 3.4vw, 1.35rem);
        line-height: 1.45;
        padding: 0 8px;
    }

    .feature-arrow {
        width: 44px;
        height: 44px;
    }

    .feature-arrow-icon {
        width: 22px;
        height: 22px;
        border-right-width: 3.5px;
        border-bottom-width: 3.5px;
    }

    /* Follow us at bottom; space above equals space above description */
    .slide-contact-cta {
        position: static;
        left: auto;
        bottom: auto;
        transform: none;
        margin-top: 0;
        margin-bottom: 8px;
        padding: 8px 12px 10px;
        gap: 14px;
        z-index: 5;
        display: flex;
        align-self: center;
        flex-shrink: 0;
    }

    .slide-contact-label {
        font-size: clamp(1rem, 3.5vw, 1.2rem);
    }

    .slide-contact-arrow {
        width: 16px;
        height: 16px;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .feature-slide {
        padding: 14px 14px 16px;
    }

    .feature-phone {
        width: min(290px, 68vw, 48svh);
        border-width: 3px;
    }

    .feature-body {
        column-gap: 4px;
    }

    .feature-text {
        max-width: 340px;
        font-size: clamp(0.95rem, 3.8vw, 1.2rem);
    }

    .slide-contact-cta {
        margin-top: 0;
        gap: 14px;
        padding: 8px 12px 8px;
    }
}

@media (max-width: 480px) {
    .feature-slide {
        padding: 10px 12px 14px;
    }

    .feature-slide-walk .feature-title,
    .feature-slide-products .feature-title {
        font-size: clamp(1.45rem, 7.5vw, 2.2rem);
        margin-bottom: 10px;
    }

    .feature-slide-rotate .feature-title {
        font-size: clamp(1.15rem, 5.8vw, 1.85rem);
        margin-bottom: 10px;
    }

    .feature-slide-interface .feature-title {
        font-size: clamp(1.2rem, 6vw, 1.9rem);
        margin-bottom: 10px;
    }

    .feature-phone {
        width: min(260px, 66vw, 44svh);
        border-width: 3px;
    }

    .feature-arrow {
        width: 40px;
        height: 40px;
    }

    .feature-arrow-icon {
        width: 20px;
        height: 20px;
        border-right-width: 3px;
        border-bottom-width: 3px;
    }

    .slide-contact-cta {
        gap: 12px;
        padding: 6px 12px 6px;
    }
}

/* Tall modern phones (S20 Ultra, XR, etc.): even larger hero phone */
@media (max-width: 768px) and (min-height: 800px) {
    .phone-hero {
        top: 41%;
        max-width: min(92vw, 460px);
        width: min(92vw, 460px);
    }

    .phone-side-content {
        bottom: 16px;
    }
}

/* Short phones (iPhone SE / ~667px tall): fit content, don't clip */
@media (max-width: 768px) and (max-height: 720px) {
    .phone-hero {
        top: 40%;
        max-width: min(72vw, 300px);
        width: min(72vw, 300px);
    }

    .google-play-button,
    .app-store-button,
    .store-badge {
        height: 34px;
        max-width: 112px;
    }

    .feature-slide {
        min-height: 100svh;
        height: auto;
        padding: 8px 12px 10px;
        overflow: visible;
    }

    .feature-slide-walk .feature-title,
    .feature-slide-products .feature-title,
    .feature-slide-interface .feature-title {
        font-size: clamp(1.25rem, 6vw, 1.7rem);
        margin-top: 2px;
        margin-bottom: 6px;
    }

    .feature-slide-rotate .feature-title {
        font-size: clamp(1.05rem, 5vw, 1.45rem);
        margin-top: 2px;
        margin-bottom: 6px;
    }

    .feature-phone {
        width: min(200px, 48vw, 32svh);
        border-width: 3px;
    }

    .feature-body {
        column-gap: 2px;
        grid-template-rows: auto 1fr auto 1fr;
    }

    .feature-copy {
        margin-top: 0;
        grid-row: 3;
    }

    .feature-text {
        font-size: clamp(0.85rem, 3.4vw, 1.05rem);
        line-height: 1.35;
        max-width: 320px;
    }

    .feature-arrow {
        width: 36px;
        height: 36px;
    }

    .feature-arrow-icon {
        width: 18px;
        height: 18px;
        border-right-width: 3px;
        border-bottom-width: 3px;
    }

    .slide-contact-cta {
        margin-top: 0;
        margin-bottom: 4px;
        padding: 4px 8px 4px;
        gap: 8px;
    }

    .slide-contact-label {
        font-size: 0.95rem;
    }

    .slide-contact-arrow {
        width: 14px;
        height: 14px;
    }
}

/* Slightly taller short phones still need compact slide */
@media (max-width: 768px) and (min-height: 721px) and (max-height: 820px) {
    .feature-phone {
        width: min(250px, 58vw, 40svh);
    }

    .feature-body {
        grid-template-rows: auto 1fr auto 1fr;
    }

    .feature-copy {
        grid-row: 3;
    }

    .feature-text {
        font-size: clamp(0.9rem, 3.5vw, 1.12rem);
    }
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.info-page-body {
    background: #000;
}

.about-page-body {
    position: relative;
    background: #000;
    min-height: 100vh;
    min-height: 100dvh;
}

.about-video-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background: #000;
}

.about-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.15;
    display: block;
}

.about-page-body .header {
    position: relative;
    z-index: 1001;
}

.about-page-body .info-page {
    position: relative;
    z-index: 1;
    background: transparent;
}

.info-page {
    min-height: calc(100vh - 91px);
    background: #000;
    color: #fff;
    padding: 64px 24px 80px;
}

.info-page-dark .contact-section {
    min-height: 0;
    padding-top: 24px;
    padding-bottom: 0;
}

.info-hero {
    max-width: 900px;
    margin: 0 auto 52px;
    text-align: center;
}

.info-kicker {
    font-family: Futura, "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 16px;
}

.info-title {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 400;
    font-size: clamp(2.4rem, 5.4vw, 4.8rem);
    line-height: 1.05;
    margin-bottom: 18px;
}

.info-lead {
    max-width: 720px;
    margin: 0 auto;
    font-family: Futura, "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;
    font-size: clamp(1rem, 1.7vw, 1.2rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.86);
}

.about-sections {
    max-width: 820px;
    margin: 0 auto;
}

.about-block {
    text-align: left;
}

.about-block-title {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 400;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    line-height: 1.2;
    margin: 0 0 20px;
    text-align: center;
}

.about-block p {
    font-family: Futura, "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;
    font-size: clamp(1rem, 1.6vw, 1.12rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
    margin: 0 0 16px;
}

.about-block p:last-child {
    margin-bottom: 0;
}

.about-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    margin: 40px auto;
    width: 100%;
}

.info-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 28px 24px;
    border-radius: 22px;
}

.info-card h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 400;
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    margin-bottom: 12px;
}

.info-card p {
    font-family: Futura, "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.84);
}

.info-cta-row {
    max-width: 1100px;
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.info-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    color: #fff;
    text-decoration: none;
    font-family: Futura, "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.info-pill:hover,
.info-pill:focus-visible {
    background: #fff;
    color: #000;
    outline: none;
}

.info-pill-filled {
    background: #fff;
    color: #000;
}

.info-pill-filled:hover,
.info-pill-filled:focus-visible {
    background: transparent;
    color: #fff;
}

.info-contact-section {
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 900px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .info-page {
        min-height: calc(100dvh - 53px);
        padding: 44px 20px 56px;
    }

    .info-hero {
        margin-bottom: 36px;
    }

    .info-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .about-divider {
        margin: 32px auto;
    }

    .about-block-title {
        margin-bottom: 16px;
    }
}

/* ============================================
   CONTACT PAGE (matches About dark style)
   ============================================ */
.contact-about-layout {
    max-width: 820px;
}

.contact-email-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 36px;
    text-align: left;
}

.contact-email-label {
    font-family: Futura, "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.contact-email-link {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    color: #ffffff;
    text-decoration: none;
    width: fit-content;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    padding-bottom: 2px;
    transition: border-color 0.25s ease, opacity 0.25s ease;
}

.contact-email-link:hover,
.contact-email-link:focus-visible {
    border-bottom-color: #ffffff;
    opacity: 0.85;
    outline: none;
}

.contact-form {
    width: 100%;
    text-align: left;
}

.contact-form-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 24px;
    margin-bottom: 28px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-field label {
    font-family: Futura, "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.01em;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 0;
    background: transparent;
    padding: 12px 2px 14px;
    font-family: Futura, "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;
    font-size: 1rem;
    color: #ffffff;
    outline: none;
    transition: border-color 0.25s ease;
    resize: vertical;
    caret-color: #fff;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.contact-field textarea {
    min-height: 160px;
    line-height: 1.55;
}

.contact-field input:hover,
.contact-field textarea:hover {
    border-bottom-color: rgba(255, 255, 255, 0.55);
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-bottom-color: #ffffff;
}

.contact-field-message {
    margin-bottom: 36px;
}

.contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.contact-form-status {
    font-family: Futura, "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.85);
}

.contact-form-status.is-success {
    color: #9dffb0;
}

.contact-form-status.is-error {
    color: #ffb4b4;
}

.contact-send-btn:disabled {
    opacity: 0.65;
    cursor: wait;
}

.contact-form-actions {
    display: flex;
    justify-content: flex-end;
}

.contact-send-btn {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.85);
    cursor: pointer;
    min-width: 140px;
    padding: 12px 32px;
    background: transparent;
    color: #ffffff;
    font-family: Futura, "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.contact-send-btn:hover,
.contact-send-btn:focus-visible {
    background: #ffffff;
    color: #000000;
    outline: none;
}

.contact-send-btn:active {
    transform: translateY(1px);
}

@media (max-width: 900px) {
    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .contact-email-block {
        margin-bottom: 28px;
    }

    .contact-form-actions {
        justify-content: stretch;
    }

    .contact-send-btn {
        width: 100%;
    }
}
