/* ============================================================
   SWIFTFIX — HOME SERVICES MARKETPLACE LANDING
   ============================================================ */

:root {
    --bg-deep: #0a1628;
    --bg-mid: #0d1f3c;
    --teal: #0ea5e9;
    --teal-light: #67e8f9;
    --gold: #f59e0b;
    --gold-light: #fbbf24;
    --green: #10b981;
    --white: #ffffff;
    --white-10: rgba(255, 255, 255, 0.10);
    --white-06: rgba(255, 255, 255, 0.06);
    --white-15: rgba(255, 255, 255, 0.15);
    --white-50: rgba(255, 255, 255, 0.50);
    --white-70: rgba(255, 255, 255, 0.70);
    --white-85: rgba(255, 255, 255, 0.85);
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --success: #10b981;
    --error: #ef4444;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: linear-gradient(160deg, var(--bg-deep) 0%, var(--bg-mid) 50%, #0c1a30 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--teal-light);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold-light);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   GLASS CARD
   ============================================================ */

.glass-card {
    background: var(--white-06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--white-10);
    border-radius: var(--radius);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.glass-card:hover {
    border-color: var(--white-15);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.08);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal) 0%, var(--gold) 100%);
    color: var(--white);
    box-shadow: 0 4px 24px rgba(14, 165, 233, 0.35);
}

.btn-primary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.50);
}

.btn-full {
    width: 100%;
    padding: 16px 28px;
    font-size: 16px;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 22, 40, 0.60);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--white-06);
    transition: background var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.logo:hover {
    color: var(--white);
}

.logo-icon {
    flex-shrink: 0;
}

.nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav a {
    display: block;
    padding: 8px 16px;
    color: var(--white-70);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-xs);
    transition: all var(--transition);
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--teal) 0%, var(--gold) 100%) !important;
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: var(--radius-sm) !important;
}

.nav-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

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

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

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

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

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    top: 50%;
    right: -5%;
    animation-delay: -7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
    bottom: -10%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(40px, 30px) scale(1.05); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--white) 0%, var(--teal-light) 50%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-note {
    font-size: 13px;
    color: var(--text-muted);
    opacity: 0.7;
}

/* Phone Mockup */
.hero-mockup {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-frame {
    position: relative;
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a2332, #0f1923);
    border-radius: 36px;
    padding: 12px;
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.08),
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 120px rgba(14, 165, 233, 0.12);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(180deg, #0f2136 0%, #0a1628 100%);
    position: relative;
}

.phone-glow {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.18) 0%, transparent 70%);
    z-index: -1;
    animation: phoneGlow 4s ease-in-out infinite alternate;
}

@keyframes phoneGlow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

/* ============================================================
   PHONE MOCKUP — SERVICE APP SCREEN
   ============================================================ */

.mockup-statusbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--white-70);
}

.mockup-statusbar-icons {
    display: flex;
    gap: 4px;
    align-items: center;
    color: var(--white-50);
}

.mockup-app-header {
    padding: 12px 16px 14px;
}

.mockup-app-greeting {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.mockup-app-subtext {
    font-size: 11px;
    color: var(--text-muted);
}

.mockup-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 0 12px 12px;
}

.mockup-svc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 4px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: background 0.2s;
}

.mockup-svc-item span {
    font-size: 8px;
    font-weight: 500;
    color: var(--text-muted);
    text-align: center;
}

.mockup-svc-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.mockup-svc-ac { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.mockup-svc-plumb { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.mockup-svc-elec { background: linear-gradient(135deg, #f59e0b, #d97706); }
.mockup-svc-clean { background: linear-gradient(135deg, #10b981, #059669); }
.mockup-svc-paint { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.mockup-svc-move { background: linear-gradient(135deg, #ef4444, #dc2626); }

.mockup-booking-card {
    margin: 6px 12px 12px;
    padding: 10px 12px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: 12px;
}

.mockup-booking-label {
    font-size: 8px;
    font-weight: 600;
    color: var(--teal-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.mockup-booking-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mockup-booking-detail strong {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
}

.mockup-booking-detail span {
    font-size: 9px;
    color: var(--text-muted);
}

.mockup-booking-badge {
    font-size: 8px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 100px;
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mockup-services-app {
    display: flex;
    flex-direction: column;
}

/* ============================================================
   STATS BAR
   ============================================================ */

.stats-bar {
    padding: 48px 0;
    background: var(--white-06);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--white-06);
    border-bottom: 1px solid var(--white-06);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--teal-light), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   SECTION SHARED
   ============================================================ */

.services,
.how-it-works,
.why-us,
.testimonials,
.faq,
.sign-up {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.25;
}

.section-header p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================================================
   SERVICES
   ============================================================ */

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

.service-card {
    padding: 36px 28px;
    text-align: left;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(245, 158, 11, 0.2));
    border-radius: 14px;
    color: var(--teal-light);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.step-card {
    padding: 40px 32px;
    text-align: center;
    flex: 1;
    max-width: 320px;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--teal), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.step-icon {
    color: var(--teal-light);
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

.step-connector {
    color: var(--white-15);
    flex-shrink: 0;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.trust-card {
    padding: 40px 32px;
    text-align: center;
}

.trust-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(245, 158, 11, 0.15));
    border-radius: 16px;
    color: var(--teal-light);
    margin: 0 auto 20px;
}

.trust-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.trust-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

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

.testimonial-card {
    padding: 32px 28px;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.testimonial-card blockquote p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 14px;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    flex: 1;
    padding-right: 16px;
}

.faq-chevron {
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-item:hover {
    transform: none;
}

/* ============================================================
   REGISTRATION FORM
   ============================================================ */

.sign-up {
    padding-bottom: 120px;
}

.form-wrapper {
    max-width: 560px;
    margin: 0 auto;
    padding: 48px 40px;
    text-align: center;
}

.form-header {
    margin-bottom: 36px;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.form-header p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

.form-group {
    margin-bottom: 24px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--white-85);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--white-06);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font);
    font-size: 15px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.form-input.error {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.phone-input-wrapper {
    display: flex;
    gap: 8px;
}

.country-code-input {
    width: 80px;
    flex-shrink: 0;
    padding: 14px 12px;
    background: var(--white-06);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.country-code-input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
    font-weight: 400;
}

.country-code-input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.country-code-input.error {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.phone-input-wrapper input {
    flex: 1;
    padding: 14px 16px;
    background: var(--white-06);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font);
    font-size: 15px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.phone-input-wrapper input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.phone-input-wrapper input#phone:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.phone-input-wrapper input#phone.error {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-error {
    display: block;
    font-size: 12px;
    color: var(--error);
    margin-top: 6px;
    min-height: 18px;
}

.device-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.device-toggle input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.device-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: var(--white-06);
    border: 2px solid var(--white-10);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}

.device-option:hover {
    border-color: var(--white-15);
    color: var(--white);
}

.device-toggle input[type="radio"]:checked + .device-option {
    border-color: var(--teal);
    background: rgba(14, 165, 233, 0.12);
    color: var(--white);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.device-toggle input[type="radio"]:focus-visible + .device-option {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.btn-loader {
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
    opacity: 0.7;
}

.form-disclaimer a {
    color: var(--teal-light);
}

.form-success {
    text-align: center;
    padding: 20px 0;
}

.form-success svg {
    margin: 0 auto 16px;
}

.form-success h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    padding: 80px 0 0;
    background: var(--white-06);
    border-top: 1px solid var(--white-06);
}

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

.footer-brand .logo {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 320px;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color var(--transition);
}

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

.footer-links li:not(:has(a)) {
    font-size: 14px;
    color: var(--text-muted);
}

.social-links {
    flex-direction: row !important;
    gap: 16px !important;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--white-06);
    border: 1px solid var(--white-10);
    border-radius: 50%;
    color: var(--text-muted);
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
}

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

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
    opacity: 0.6;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.services-grid .animate-on-scroll:nth-child(2),
.trust-grid .animate-on-scroll:nth-child(2),
.testimonials-grid .animate-on-scroll:nth-child(2),
.stats-grid .animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.services-grid .animate-on-scroll:nth-child(3),
.trust-grid .animate-on-scroll:nth-child(3),
.testimonials-grid .animate-on-scroll:nth-child(3),
.stats-grid .animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.services-grid .animate-on-scroll:nth-child(4),
.trust-grid .animate-on-scroll:nth-child(4),
.stats-grid .animate-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

.services-grid .animate-on-scroll:nth-child(5) {
    transition-delay: 0.15s;
}

.services-grid .animate-on-scroll:nth-child(6) {
    transition-delay: 0.25s;
}

.services-grid .animate-on-scroll:nth-child(7) {
    transition-delay: 0.1s;
}

.services-grid .animate-on-scroll:nth-child(8) {
    transition-delay: 0.2s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

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

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

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

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 22, 40, 0.95);
        backdrop-filter: blur(20px);
        padding: 80px 24px 24px;
        transition: right var(--transition);
        border-left: 1px solid var(--white-06);
    }

    .nav.active {
        right: 0;
    }

    .nav ul {
        flex-direction: column;
        gap: 4px;
    }

    .nav a {
        padding: 12px 16px;
        font-size: 16px;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .phone-frame {
        width: 240px;
        height: 480px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .steps-grid {
        flex-direction: column;
    }

    .step-connector {
        transform: rotate(90deg);
    }

    .step-card {
        max-width: 100%;
    }

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

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

    .form-wrapper {
        padding: 32px 24px;
    }

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

    .social-links {
        margin-top: 8px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .services,
    .how-it-works,
    .why-us,
    .testimonials,
    .faq,
    .sign-up {
        padding: 64px 0;
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .phone-input-wrapper {
        flex-direction: column;
    }

    .country-code-input {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .form-header h2 {
        font-size: 22px;
    }

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

/* ============================================================
   ACCESSIBILITY: REDUCED MOTION
   ============================================================ */

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

    .orb,
    .phone-glow {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ============================================================
   MENU TOGGLE ANIMATION
   ============================================================ */

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
