/* ======================================================
   SPECIAL VIP TÜRKİYE - PAGE-SPECIFIC STYLES
   Sayfa-özel ve bileşen stilleri
   ====================================================== */

/* ===== HOME HERO ===== */
.hero {
    background: var(--navy);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 110px 0 80px;
}
.hero-bg-image {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('/assets/media/img/website-v2/hero-bg.webp');
    background-size: cover;
    background-position: right center;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        linear-gradient(90deg, rgba(10,21,37,0.92) 0%, rgba(10,21,37,0.7) 35%, rgba(10,21,37,0.35) 60%, rgba(10,21,37,0.25) 100%),
        radial-gradient(ellipse at 25% 50%, rgba(13,27,42,0.5) 0%, transparent 60%);
    z-index: 1;
}
.hero-container {
    position: relative;
    z-index: 2;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--cream), transparent);
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(201,168,76,0.18);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold);
    font-size: 0.74rem;
    font-weight: 700;
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero-badge i { font-size: 0.7rem; }
.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}
.hero h1 .gold { color: var(--gold); }
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 1.5rem;
    font-weight: 300;
}
.hero-subtitle strong { font-weight: 600; }

/* Benefit Chips */
.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.benefit-chip {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.95);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}
.benefit-chip:hover {
    background: rgba(201,168,76,0.15);
    border-color: rgba(201,168,76,0.4);
}
.benefit-chip i {
    color: var(--gold);
    font-size: 0.9rem;
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 2rem;
    opacity: 0.95;
    letter-spacing: 0.2px;
}
.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.btn-hero-lg {
    padding: 1.05rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    box-shadow: 0 10px 30px rgba(201,168,76,0.25);
}

/* Trust mini line (single row) */
.hero-trust-mini {
    margin-top: 1.4rem;
    margin-bottom: 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}
.hero-trust-mini i {
    color: var(--gold);
    margin-right: 0.4rem;
}

/* ===== HERO PHONE MOCKUP (GUEST APP VIEW) ===== */
.hero-visual { position: relative; }
.hero-phone-mockup {
    width: 300px;
    height: 600px;
    background: #0a0f1a;
    border-radius: 38px;
    border: 3px solid rgba(255,255,255,0.12);
    padding: 10px;
    margin: 0 auto;
    position: relative;
    box-shadow:
        0 40px 80px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.05),
        inset 0 0 0 2px rgba(0,0,0,0.6);
}
.phone-screen-app {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}
.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 22px;
    background: #0a0f1a;
    border-radius: 0 0 14px 14px;
    z-index: 10;
}

/* App Header */
.phone-app-header {
    background: var(--navy);
    color: white;
    padding: 32px 14px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}
.phone-app-logo {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.95);
}
.phone-app-logo b {
    color: var(--gold);
    font-weight: 700;
}
.phone-app-lang {
    font-size: 0.62rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 3px 8px;
    border-radius: 10px;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
}

/* Selectors */
.phone-app-selectors {
    padding: 10px;
    display: flex;
    gap: 6px;
    background: white;
    flex-shrink: 0;
    border-bottom: 1px solid var(--border);
}
.phone-app-select {
    flex: 1;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 7px 9px;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}
.phone-app-select > i:first-child {
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
}
.phone-app-select > div {
    flex: 1;
    min-width: 0;
}
.phone-app-select .select-label {
    font-size: 0.55rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    line-height: 1;
}
.phone-app-select strong {
    font-size: 0.72rem;
    color: var(--navy);
    font-weight: 700;
    display: block;
    line-height: 1.2;
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.phone-app-select .chev {
    color: var(--text-light);
    font-size: 0.6rem;
    flex-shrink: 0;
}

/* Map */
.phone-app-map {
    flex: 1;
    position: relative;
    overflow: hidden;
}
.phone-map-canvas {
    width: 100%;
    height: 100%;
    position: relative;
    background: #e8e3d6;
}

/* Map roads (diagonal lines) */
.map-road {
    position: absolute;
    background: rgba(255,255,255,0.85);
    border-radius: 1px;
}
.map-road.r1 {
    width: 140%;
    height: 7px;
    top: 22%;
    left: -20%;
    transform: rotate(-12deg);
}
.map-road.r2 {
    width: 130%;
    height: 5px;
    top: 56%;
    left: -15%;
    transform: rotate(8deg);
    background: rgba(255,255,255,0.7);
}
.map-road.r3 {
    width: 5px;
    height: 130%;
    left: 38%;
    top: -15%;
    transform: rotate(15deg);
    background: rgba(255,255,255,0.6);
}
.map-road.r4 {
    width: 6px;
    height: 130%;
    left: 70%;
    top: -15%;
    transform: rotate(-8deg);
    background: rgba(255,255,255,0.7);
}

/* Water area (top right) */
.map-water {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50%;
    height: 35%;
    background: linear-gradient(135deg, #b9d4d6 0%, #a3c2c5 100%);
    border-radius: 0 0 50% 60%;
    transform: rotate(-15deg);
}

/* Park (bottom left) */
.map-park {
    position: absolute;
    bottom: 5%;
    left: 5%;
    width: 32%;
    height: 25%;
    background: radial-gradient(ellipse, #c5d4a8 0%, #b4c896 100%);
    border-radius: 50% 30% 60% 40%;
    opacity: 0.85;
}

/* Building blocks */
.map-block {
    position: absolute;
    background: rgba(214, 207, 188, 0.75);
    border-radius: 2px;
}
.map-block.b1 {
    width: 14%;
    height: 10%;
    top: 40%;
    left: 18%;
}
.map-block.b2 {
    width: 10%;
    height: 8%;
    top: 75%;
    left: 60%;
}
.map-block.b3 {
    width: 8%;
    height: 12%;
    top: 35%;
    right: 20%;
}

/* Premium business pins */
.map-pin {
    position: absolute;
    color: var(--gold);
    font-size: 1.4rem;
    filter: drop-shadow(0 3px 4px rgba(0,0,0,0.25));
    transition: transform 0.3s;
    z-index: 5;
    cursor: pointer;
}
.map-pin:hover { transform: translateY(-3px) scale(1.15); z-index: 20; }
.map-pin.pin-1 { top: 20%; left: 22%; }
.map-pin.pin-2 { top: 32%; left: 60%; animation-delay: 0.3s; }
.map-pin.pin-3 {
    top: 48%;
    left: 45%;
    color: var(--gold-light);
    font-size: 1.8rem;
    animation: pinBounce 2s ease-in-out infinite;
    z-index: 6;
}
.map-pin.pin-4 { top: 65%; left: 28%; animation-delay: 0.6s; }
.map-pin.pin-5 { top: 72%; left: 70%; animation-delay: 0.9s; }

/* Pin hover tooltip preview card */
.pin-tooltip {
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: white;
    border-radius: 10px;
    padding: 5px;
    width: 130px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    z-index: 30;
    color: var(--text-dark);
    border: 1px solid rgba(201,168,76,0.3);
}
.pin-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid white;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.15));
}
.map-pin:hover .pin-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Always show tooltip on the active pin (default state) */
.map-pin.active .pin-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.pin-tooltip-img {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    background-size: cover;
    background-position: center;
    background-color: var(--cream);
    flex-shrink: 0;
    border: 1px solid rgba(201,168,76,0.2);
}
.pin-tooltip-info {
    flex: 1;
    min-width: 0;
    line-height: 1.1;
}
.pin-tooltip-info strong {
    display: block;
    font-size: 0.66rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'DM Sans', sans-serif;
}
.pin-tooltip-info span {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.56rem;
    color: var(--text-mid);
    margin-top: 2px;
    font-weight: 500;
}
.pin-tooltip-info span i {
    color: var(--gold);
    font-size: 0.55rem;
}

@keyframes pinBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* User position with pulse */
.map-user-pos {
    position: absolute;
    top: 82%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    z-index: 4;
}
.user-dot {
    width: 14px;
    height: 14px;
    background: #2563eb;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(37,99,235,0.3);
    position: relative;
    z-index: 2;
}
.user-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    background: rgba(37,99,235,0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
    0% { width: 14px; height: 14px; opacity: 1; }
    100% { width: 50px; height: 50px; opacity: 0; }
}

/* Floating business preview card */
.phone-business-card {
    position: absolute;
    bottom: 12px;
    left: 10px;
    right: 10px;
    background: white;
    border-radius: 12px;
    padding: 9px 10px;
    display: flex;
    align-items: center;
    gap: 9px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    z-index: 8;
}
.bc-icon {
    width: 36px;
    height: 36px;
    background: var(--gold-soft);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.bc-info { flex: 1; min-width: 0; }
.bc-info strong {
    display: block;
    font-size: 0.78rem;
    color: var(--navy);
    line-height: 1.1;
    font-weight: 700;
}
.bc-info span {
    font-size: 0.62rem;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 2px;
}
.bc-info span i { color: var(--gold); font-size: 0.6rem; }
.bc-arrow {
    color: var(--text-light);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
    background: var(--cream);
    padding: 4rem 0 4.5rem;
    position: relative;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.trust-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.trust-item {
    text-align: center;
    padding: 1rem 0.5rem;
    position: relative;
    transition: transform 0.3s ease;
}
.trust-item:hover {
    transform: translateY(-4px);
}
/* Vertical separator between columns (desktop only) */
.col-md-3:not(:last-child) .trust-item::after {
    content: '';
    position: absolute;
    right: -0.75rem;
    top: 25%;
    bottom: 25%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.35), transparent);
}
.trust-icon-wrap {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: rgba(201,168,76,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    border: 1.5px solid rgba(201,168,76,0.25);
    transition: all 0.4s ease;
    position: relative;
}
.trust-icon-wrap::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px dashed rgba(201,168,76,0.2);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.trust-item:hover .trust-icon-wrap {
    background: rgba(201,168,76,0.18);
    border-color: var(--gold);
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(201,168,76,0.15);
}
.trust-item:hover .trust-icon-wrap::before {
    opacity: 1;
}
.trust-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}
.trust-label {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-bottom: 0.3rem;
}
.trust-sublabel {
    font-size: 0.76rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* ===== HOW IT WORKS ===== */
.section-how {
    padding: 6rem 0 4rem;
    background: white;
    position: relative;
    overflow: hidden;
}
.section-how::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}
.step-card {
    text-align: center;
    padding: 2.5rem 1.8rem;
    position: relative;
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201,168,76,0.4);
    box-shadow: 0 20px 40px rgba(13,27,42,0.08);
}
.step-card:hover .step-icon {
    transform: scale(1.1);
    color: var(--gold);
}
.step-card:hover .step-number {
    box-shadow: 0 12px 30px rgba(201,168,76,0.45);
}
.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold) 0%, #d4b96a 100%);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(201,168,76,0.3);
    transition: all 0.4s ease;
}
.step-icon {
    font-size: 2.6rem;
    color: var(--navy);
    margin-bottom: 1.2rem;
    transition: all 0.4s ease;
}
.step-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.8rem;
    letter-spacing: -0.3px;
}
.step-card p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin: 0 0 1.5rem;
    flex: 1;
}
/* Takeaway badge at bottom of each card */
.step-takeaway {
    margin-top: auto;
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    transition: all 0.3s;
}
.step-takeaway i {
    font-size: 0.9rem;
}
.step-card:hover .step-takeaway {
    background: rgba(201,168,76,0.18);
    border-color: var(--gold);
}
/* Connector line with arrow head */
.step-connector {
    position: absolute;
    top: 56px;
    right: -18%;
    width: 36%;
    height: 2px;
    z-index: 1;
    background: repeating-linear-gradient(90deg, rgba(201,168,76,0.55) 0, rgba(201,168,76,0.55) 6px, transparent 6px, transparent 12px);
}
.step-connector::after {
    content: '';
    position: absolute;
    right: -1px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 8px solid rgba(201,168,76,0.7);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}
/* Philosophy band — premium dark statement with trio breakdown */
.philosophy-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 20px;
    padding: 3.5rem 3rem 3rem;
    margin: 4rem auto 1.5rem;
    max-width: 920px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(13,27,42,0.18);
}
.philosophy-band::before,
.philosophy-band::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}
.philosophy-band::before { top: 0; }
.philosophy-band::after { bottom: 0; }
.philosophy-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(201,168,76,0.15);
    border: 1.5px solid rgba(201,168,76,0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.7rem;
    margin: 0 auto 1.5rem;
}
.philosophy-statement {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: white;
    line-height: 1.4;
    margin-bottom: 2rem;
    letter-spacing: -0.3px;
}
.philosophy-statement span {
    color: var(--gold);
    font-style: italic;
}
.philosophy-statement em {
    font-style: italic;
    color: rgba(255,255,255,0.8);
    font-weight: 400;
    font-size: 1.4rem;
    display: inline-block;
    margin-top: 0.4rem;
}
.philosophy-trio {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.78);
    font-size: 0.95rem;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.trio-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.trio-item i {
    color: var(--gold);
    font-size: 1.05rem;
}
.trio-item strong {
    color: white;
    font-weight: 700;
}
.trio-divider {
    color: var(--gold);
    opacity: 0.6;
    font-size: 1.3rem;
    font-weight: 700;
}
.philosophy-attribution {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

/* ===== DRIVER & BUSINESS SECTIONS ===== */
.section-driver {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--driver-bg) 0%, var(--white) 100%);
    position: relative;
}
.section-driver::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--driver-accent), var(--gold));
}
.driver-tag { color: var(--driver-accent); }
.section-business {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--biz-bg) 0%, var(--white) 100%);
    position: relative;
}
.section-business::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--biz-accent), var(--gold));
}
.biz-tag { color: var(--biz-accent); }
.saving-highlight {
    display: inline-block;
    background: rgba(26,107,74,0.1);
    color: var(--driver-accent);
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
}
.category-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-top: 2.5rem;
}
.cat-tag {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text-mid);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s;
}
.cat-tag:hover {
    border-color: var(--biz-accent);
    color: var(--biz-accent);
    background: var(--biz-bg);
}
.cat-tag i { font-size: 0.9rem; }

/* ===== TESTIMONIALS ===== */
.section-testimonials {
    padding: 6rem 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.section-testimonials::before {
    content: '';
    position: absolute;
    top: -200px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.testimonial-tag { color: var(--gold); }
.testimonial-title { color: var(--white); }
.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem 1.8rem;
    height: 100%;
    position: relative;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.testimonial-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.18;
    position: absolute;
    top: 4px;
    right: 18px;
    line-height: 0.9;
    pointer-events: none;
}
.testimonial-card:hover {
    border-color: rgba(201,168,76,0.4);
    background: rgba(255,255,255,0.07);
    transform: translateY(-4px);
}
.testimonial-stars {
    color: var(--gold);
    font-size: 0.82rem;
    letter-spacing: 2px;
    margin-bottom: 1.1rem;
    line-height: 1;
    position: relative;
    z-index: 2;
}
.testimonial-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    margin: 0 0 1.5rem;
    font-style: italic;
    flex: 1;
    position: relative;
    z-index: 2;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
}
.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold-soft);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: var(--gold);
    flex-shrink: 0;
}
.testimonial-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}
.testimonial-role {
    font-size: 0.74rem;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}
.testimonial-result-box {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.6rem 1.1rem;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    align-self: flex-start;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}
.testimonial-result-box i {
    color: var(--gold);
    font-size: 1rem;
}
.testimonial-result-box strong {
    color: var(--gold);
    font-weight: 800;
    margin: 0 2px;
}
.testimonial-card:hover .testimonial-result-box {
    background: rgba(201,168,76,0.2);
    border-color: var(--gold);
}

/* Summary stats below testimonials */
.testimonials-summary {
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}
.summary-item strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.5px;
}
.summary-item span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.3px;
}
.summary-divider {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.18), transparent);
}

/* ===== GUEST EXPERIENCE ===== */
.section-guest { padding: 6rem 0; background: var(--cream); }

/* When guest-phone uses hero-phone-mockup, override centering of guest-slide */
.guest-slide.guest-slide-app {
    padding: 0;
    align-items: stretch;
    display: flex;
    flex-direction: column;
}

/* Old-style guest phone (used in misafir-deneyimi.html alt sayfa) — keep working */
.guest-phone:not(.hero-phone-mockup) {
    width: 260px;
    height: 520px;
    background: var(--navy);
    border-radius: 32px;
    padding: 10px;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border: 2px solid var(--border);
}
.guest-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}
.guest-slides {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}
.guest-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.2rem;
    overflow: hidden;
}
.guest-slide .slide-icon {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
    margin-top: 1rem;
}
.guest-slide h5 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.4rem;
    text-align: center;
}
.guest-slide p {
    font-size: 0.75rem;
    color: var(--text-mid);
    text-align: center;
    line-height: 1.5;
}
.slide-demo-items {
    width: 100%;
    margin-top: 1rem;
}
.slide-demo-item {
    background: var(--cream);
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    color: var(--text-mid);
}
.slide-demo-item i {
    font-size: 1rem;
    color: var(--navy);
}
.guest-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 1.5rem;
}
.guest-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s;
}
.guest-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}
.guest-highlight {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}
.guest-highlight i {
    font-size: 1.3rem;
    color: var(--gold);
    margin-top: 2px;
}
.guest-highlight h5 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.3rem;
}
.guest-highlight p {
    font-size: 0.85rem;
    color: var(--text-mid);
    margin: 0;
    line-height: 1.5;
}

/* ===== RESTAURANT DETAIL SLIDE (guest-slide-app) ===== */
.resto-detail-header {
    background: var(--navy);
    color: white;
    padding: 32px 14px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}
.resto-detail-header > i,
.resto-detail-header > span {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    cursor: pointer;
}
.resto-detail-header > span:not(.heart-icon) {
    font-size: 0.82rem;
    font-weight: 700;
    color: white;
}
.resto-detail-header .heart-icon {
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
}
.resto-hero {
    height: 130px;
    background-size: cover;
    background-position: center;
    background-color: var(--cream);
    position: relative;
    flex-shrink: 0;
}
.resto-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.78) 100%);
}
.resto-name-block {
    position: absolute;
    bottom: 10px;
    left: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: white;
    z-index: 2;
}
.resto-logo {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--gold) 0%, #d4b96a 100%);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.85);
    box-shadow: 0 3px 10px rgba(0,0,0,0.4);
}
.resto-name-info {
    flex: 1;
    min-width: 0;
}
.resto-name-info strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.15;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.resto-name-info > span {
    font-size: 0.66rem;
    color: rgba(255,255,255,0.92);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.resto-name-info i {
    color: var(--gold);
    font-size: 0.62rem;
}
.resto-content {
    padding: 12px;
    flex: 1;
    overflow-y: auto;
    background: white;
}
.resto-section-label {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 6px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.resto-section-label:first-child { margin-top: 0; }
.resto-section-label i {
    color: var(--gold);
    font-size: 0.7rem;
}
.resto-gallery {
    display: flex;
    gap: 5px;
    margin-bottom: 4px;
}
.gallery-thumb {
    flex: 1;
    height: 50px;
    background-size: cover;
    background-position: center;
    border-radius: 7px;
    background-color: var(--cream);
    border: 1px solid rgba(13,27,42,0.05);
}
.gallery-thumb.gallery-more {
    background: rgba(13,27,42,0.85);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    border: none;
}
.resto-video {
    height: 90px;
    background-size: cover;
    background-position: center;
    background-color: var(--navy);
    border-radius: 9px;
    position: relative;
    margin-bottom: 4px;
    overflow: hidden;
}
.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.5) 100%);
}
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
    z-index: 2;
}
.video-play-btn i {
    margin-left: 2px;
}
.video-duration {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgba(0,0,0,0.75);
    color: white;
    font-size: 0.58rem;
    padding: 1px 5px;
    border-radius: 3px;
    z-index: 2;
    font-weight: 600;
}
.resto-desc {
    font-size: 0.7rem;
    color: var(--text-mid);
    line-height: 1.5;
    margin: 8px 0 10px;
}
.resto-actions {
    display: flex;
    gap: 5px;
}
.resto-btn {
    background: var(--cream);
    border: 1px solid var(--border);
    color: var(--navy);
    padding: 0;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 34px;
    cursor: pointer;
    width: 34px;
    transition: all 0.2s;
}
.resto-btn:hover {
    background: var(--white);
    border-color: var(--gold);
}
.resto-btn.primary {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    flex: 1;
    width: auto;
    padding: 0 10px;
}
.resto-btn.primary:hover {
    background: #d4b96a;
}
.resto-btn i {
    font-size: 0.85rem;
}

/* ===== FEATURES SLIDE ===== */
.features-content {
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    background: white;
    flex: 1;
    overflow-y: auto;
}
.feature-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 11px;
    background: var(--cream);
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: all 0.2s;
}
.feature-row:hover {
    background: white;
    border-color: rgba(201,168,76,0.3);
}
.feature-icon {
    width: 32px;
    height: 32px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.95rem;
    flex-shrink: 0;
}
.feature-text {
    flex: 1;
    min-width: 0;
}
.feature-text strong {
    display: block;
    font-size: 0.75rem;
    color: var(--navy);
    font-weight: 700;
    line-height: 1.15;
}
.feature-text span {
    font-size: 0.6rem;
    color: var(--text-light);
    margin-top: 1px;
    display: block;
}
.feature-flags {
    font-size: 0.7rem;
    letter-spacing: -1px;
}
.feature-pill {
    background: var(--gold);
    color: var(--navy);
    font-size: 0.62rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 10px;
    flex-shrink: 0;
}
.feature-arrow {
    color: var(--text-light);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ===== FAQ ===== */
.section-faq { padding: 6rem 0; background: var(--white); }
.faq-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.faq-tab {
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    border: 2px solid var(--border);
    background: transparent;
    color: var(--text-mid);
    cursor: pointer;
    transition: all 0.3s;
}
.faq-tab.active-driver {
    background: var(--driver-accent);
    border-color: var(--driver-accent);
    color: white;
}
.faq-tab.active-biz {
    background: var(--biz-accent);
    border-color: var(--biz-accent);
    color: white;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item:hover { border-color: var(--gold); }
.faq-question {
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--navy);
    background: transparent;
    transition: background 0.3s;
}
.faq-question:hover { background: var(--cream); }
.faq-question i {
    transition: transform 0.3s;
    color: var(--gold);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer-inner {
    padding: 0 1.5rem 1.2rem;
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.7;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }

/* ===== FINAL CTA ===== */
.section-cta {
    background:
        radial-gradient(ellipse 700px 350px at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 70%),
        linear-gradient(180deg, var(--navy) 0%, #0a1525 100%);
    padding: 7rem 0 6rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-cta::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-tag {
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
}
.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
}
.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.78);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    position: relative;
}
.cta-trust-mini {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.65rem 1.6rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}
.cta-trust-mini i {
    color: var(--gold);
    font-size: 0.9rem;
    margin-right: 4px;
}
.cta-trust-divider {
    color: rgba(255,255,255,0.2);
}
.cta-login-note {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    position: relative;
}
.cta-login-note a {
    color: var(--gold);
    transition: color 0.3s;
    text-decoration: none;
}
.cta-login-note a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* ===== PREVIEW SECTION (Anasayfa için kısa özet bölümleri) ===== */
.preview-section {
    padding: 5rem 0;
}
.preview-cta-row {
    background: var(--navy);
    border-radius: 20px;
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}
.preview-cta-row::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.preview-driver-card,
.preview-biz-card {
    border-radius: 20px;
    padding: 3rem 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.preview-driver-card {
    background: linear-gradient(135deg, var(--driver-accent) 0%, #155a3e 100%);
    color: white;
}
.preview-biz-card {
    background: linear-gradient(135deg, var(--biz-accent) 0%, #1e3a5f 100%);
    color: white;
}
.preview-driver-card:hover,
.preview-biz-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.preview-driver-card::after,
.preview-biz-card::after {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
/* ===== AUDIENCE HEADER (Driver/Business identifier) ===== */
.audience-header {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    position: relative;
    z-index: 2;
}
.audience-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.audience-text {
    flex: 1;
    min-width: 0;
}
.audience-greeting {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1.5px;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
.audience-subtitle {
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    line-height: 1.3;
}
.preview-driver-card:hover .audience-icon,
.preview-biz-card:hover .audience-icon {
    background: rgba(255,255,255,0.22);
    border-color: var(--gold);
    transform: scale(1.05);
}
.preview-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    position: relative;
}
.preview-card-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
}
.preview-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem 0;
    position: relative;
}
.preview-card-features li {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}
.preview-card-features i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}
.preview-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.92rem;
    transition: gap 0.3s;
    position: relative;
}
.preview-card-link:hover {
    color: var(--gold-light);
    gap: 0.8rem;
}

/* ===== STORY/PROCESS PAGE ===== */
.story-image-block {
    background: var(--cream);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
}
.story-image-block i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
}
.story-step {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}
.story-step:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}
.story-step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-soft);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--gold);
    font-size: 1.1rem;
}
.story-step h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.story-step p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin: 0;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
}
.form-label-custom {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.4rem;
    display: block;
}
.form-control-custom {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.92rem;
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--cream);
}
.form-control-custom:focus {
    outline: none;
    border-color: var(--gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
textarea.form-control-custom {
    min-height: 130px;
    resize: vertical;
}
.contact-info-block {
    background: var(--navy);
    color: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}
.contact-info-item i {
    font-size: 1.3rem;
    color: var(--gold);
    margin-top: 2px;
}
.contact-info-item .label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.2rem;
}
.contact-info-item .value {
    font-size: 0.95rem;
    color: white;
    font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero { min-height: auto; padding: 110px 0 80px; }
    .hero-visual { margin-top: 2rem; }
    .step-connector { display: none; }
    .preview-cta-row { padding: 2rem; }
    .contact-form-wrap { padding: 2rem; }
}
@media (max-width: 767px) {
    .hero h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(10,21,37,0.92) 0%, rgba(10,21,37,0.85) 60%, rgba(10,21,37,0.95) 100%);
    }
    .hero-cta-group { flex-direction: column; align-items: stretch; }
    .hero-cta-group a { text-align: center; justify-content: center; width: 100%; }
    .hero-trust-mini { font-size: 0.78rem; }
    .hero-phone-mockup { width: 260px; height: 520px; }
    .pin-tooltip { width: 110px; }
    /* Trust strip mobile */
    .trust-strip { padding: 2.8rem 0 3rem; }
    .trust-number { font-size: 2.1rem; }
    .trust-icon-wrap { width: 50px; height: 50px; font-size: 1.25rem; margin-bottom: 0.9rem; }
    .trust-label { font-size: 0.85rem; }
    .col-md-3:not(:last-child) .trust-item::after { display: none; }
    /* How it works mobile */
    .section-how { padding: 4rem 0 3rem; }
    .step-card { padding: 2rem 1.5rem; margin-bottom: 1rem; }
    .step-number { width: 50px; height: 50px; font-size: 1.2rem; margin-bottom: 1rem; }
    .step-icon { font-size: 2.2rem; }
    .step-card h4 { font-size: 1.15rem; }
    .step-takeaway { font-size: 0.72rem; padding: 0.5rem 1rem; letter-spacing: 1px; }
    /* Philosophy band mobile */
    .philosophy-band { padding: 2.5rem 1.5rem 2rem; margin: 3rem 0 1.5rem; border-radius: 16px; }
    .philosophy-icon { width: 54px; height: 54px; font-size: 1.4rem; margin-bottom: 1.2rem; }
    .philosophy-statement { font-size: 1.3rem; margin-bottom: 1.5rem; }
    .philosophy-statement em { font-size: 1.05rem; }
    .philosophy-trio { flex-direction: column; gap: 0.7rem; font-size: 0.88rem; padding: 1rem 0; }
    .trio-divider { display: none; }
    /* Testimonials mobile */
    .section-testimonials { padding: 4rem 0; }
    .testimonial-card { padding: 1.8rem 1.5rem; }
    .testimonials-summary { gap: 1.5rem; margin-top: 2.5rem; padding-top: 1.5rem; }
    .summary-item strong { font-size: 1.4rem; }
    .summary-item span { font-size: 0.72rem; }
    .summary-divider { height: 28px; }
    /* Guest experience mobile */
    .section-guest { padding: 4rem 0; }
    .guest-phone.hero-phone-mockup { width: 280px; height: 560px; }
    .resto-hero { height: 110px; }
    .resto-content { padding: 10px; }
    .gallery-thumb { height: 44px; }
    .resto-video { height: 80px; }
    .resto-desc { font-size: 0.66rem; }
    .feature-row { padding: 8px 10px; }
    .feature-icon { width: 28px; height: 28px; font-size: 0.85rem; }
    /* Final CTA mobile */
    .section-cta { padding: 4.5rem 0 3.5rem; }
    .cta-title { font-size: 1.9rem; }
    .cta-subtitle { font-size: 0.95rem; margin-bottom: 2rem; }
    .cta-trust-mini { font-size: 0.72rem; padding: 0.55rem 1rem; gap: 0.45rem; }
    .cta-trust-divider { display: none; }
    /* Other mobile rules */
    .faq-tabs { flex-direction: column; align-items: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .preview-driver-card, .preview-biz-card { padding: 2rem 1.5rem; }
    .preview-card-title { font-size: 1.4rem; }
    /* Audience header mobile */
    .audience-header { gap: 0.9rem; padding-bottom: 1.2rem; margin-bottom: 1.2rem; }
    .audience-icon { width: 56px; height: 56px; font-size: 1.5rem; border-radius: 12px; }
    .audience-greeting { font-size: 1.4rem; letter-spacing: 0.8px; }
    .audience-subtitle { font-size: 0.65rem; letter-spacing: 1.2px; }
}

/* ===== AUTH PAGES (Faz 3) ===== */
.auth-section-v2 {
    padding: 110px 0 80px;
    background: var(--cream);
    min-height: 60vh;
}
.auth-card-v2 { max-width: 100%; }
.auth-card-v2 h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
}
.auth-card-v2 .auth-subtitle {
    text-align: center;
    color: var(--text-mid);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.auth-card-v2 .auth-subtitle a { color: var(--gold); font-weight: 600; }
.page-hero-compact { padding: 110px 0 50px; }
.legal-content-v2 {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-mid);
}
.legal-content-v2 h1,
.legal-content-v2 h2,
.legal-content-v2 h3 {
    color: var(--navy);
    font-family: 'Playfair Display', serif;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.legal-content-v2 ul,
.legal-content-v2 ol { padding-left: 1.25rem; margin-bottom: 1rem; }
.register-chooser-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
    background: var(--white);
}
.register-chooser-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.register-chooser-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; }
.circular-chart { display: block; margin: 0 auto; max-width: 120px; max-height: 120px; }
.circle-bg { fill: none; stroke: #eee; stroke-width: 3.8; }
.circle { fill: none; stroke-width: 2.8; stroke-linecap: round; stroke: var(--gold); }
.auth-card-v2 .percentage {
    fill: var(--navy);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.45em;
    text-anchor: middle;
}
.percentage-expired { font-size: 0.28em; }
.timer-container {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    margin: 1rem 0;
}
.info-text-v2 {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 1.25rem;
    border-left: 3px solid var(--gold);
    font-size: 0.9rem;
    color: var(--text-mid);
}
.info-text-v2 .info-title {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}
