/* assets/css/style.css */
:root {
    --navy-blue: #0A2F2F;       /* Deep Teal from the logo */
    --navy-dark: #072424;
    --gold: #A6803F;            /* Gold from the logo */
    --gold-light: #C5A059;
    --white: #ffffff;
    --gray-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --yellow: var(--gold);      /* Legacy mapping */
    --cyan: var(--gold);
    --primary: #3b82f6;
    --font-main: 'Inter', sans-serif;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   GLOBAL INTERACTION & TRANSITIONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
a, button, .btn-action, .menu-item, .card, .stat-card {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-lift:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 35px rgba(10, 47, 47, 0.1);
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(166, 128, 63, 0.3);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   END GLOBAL INTERACTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

* { margin:0; padding:0; box-sizing: border-box; }
body { font-family: var(--font-main); color: var(--text-dark); background: var(--white); overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

/* NAVBAR */
.main-nav { background: #fff; padding: 1.25rem 0; box-shadow: 0 1px 0 rgba(0,0,0,0.05); position: sticky; top:0; z-index: 1000; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; position: relative; }
.brand { text-decoration: none; display: flex; align-items: center; gap: 0.75rem; color: var(--text-dark); }
.brand-logotype { display: flex; align-items: center; gap: 0.8rem; font-weight: 800; font-size: 1.3rem; color: var(--navy-blue); }
.brand-logotype img { height: 42px; width: auto; object-fit: contain; }
.mock-logo { background: var(--navy-blue); color: #fff; width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a { 
    text-decoration: none; 
    color: var(--text-muted); 
    font-weight: 600; 
    font-size: 0.95rem; 
    position: relative;
    padding: 0.2rem 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-links a:hover {
    color: var(--navy-blue);
}

.nav-links a:hover::after {
    width: 100%;
}
.nav-btns { display: flex; align-items: center; gap: 1rem; }
.mobile-menu-btn {
    display: none;
    background: #f1f5f9;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: var(--navy-dark);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
.mobile-menu-btn i { width: 20px; height: 20px; }
body.nav-open { overflow: hidden; }
.theme-switch { background: #f1f5f9; border:none; padding: 0.5rem; border-radius: 50%; color: orange; cursor: pointer; }
.btn-outline-sm { 
    text-decoration: none; 
    padding: 0.65rem 1.6rem; 
    border: 1.5px solid #cbd5e1; 
    border-radius: 14px; 
    font-weight: 700; 
    color: var(--text-dark); 
    font-size: 0.9rem; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-outline-sm:hover { 
    background: #f8fafc; 
    border-color: var(--gold); 
    color: var(--gold);
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.04);
}

.btn-dark-sm { 
    text-decoration: none; 
    padding: 0.7rem 1.8rem; 
    background: var(--navy-dark); 
    color: #fff; 
    border-radius: 14px; 
    font-weight: 700; 
    font-size: 0.9rem; 
    box-shadow: 0 4px 12px rgba(10, 47, 47, 0.15); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
}
.btn-dark-sm:hover { 
    background: var(--navy-blue); 
    transform: translateY(-3px) scale(1.02); 
    box-shadow: 0 15px 30px rgba(166, 128, 63, 0.3); /* Sarı ışık glow */
    border-color: var(--gold);
}

/* â•â•â• HERO â•â•â• */
.hero-section {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #0d3d3d 60%, #0a2f2f 100%);
    color: #fff;
    padding: 5rem 0 0;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg-glow {
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(166,128,63,0.15) 0%, transparent 60%);
    top: -100px; right: -100px;
    pointer-events: none;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}
.badge-premium {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    backdrop-filter: blur(4px);
}
.badge-premium i { width: 16px; height: 16px; color: var(--gold); }
.hero-text-block h1 { font-size: 3.6rem; line-height: 1.1; font-weight: 900; margin-bottom: 1.75rem; letter-spacing: -1px; }
.highlight-gold { color: var(--gold); }
.highlight-yellow { color: var(--gold); }
.hero-text-block p { font-size: 1.1rem; opacity: 0.8; margin-bottom: 2.5rem; line-height: 1.7; max-width: 500px; }
.hero-actions { display: flex; gap: 1.25rem; margin-bottom: 3rem; flex-wrap: wrap; }
.btn-cta-primary {
    background: #fff;
    color: var(--navy-blue);
    text-decoration: none;
    padding: 1.1rem 2.2rem;
    border-radius: 14px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1rem;
}
.btn-cta-primary:hover { transform: translateY(-4px); box-shadow: 0 15px 35px rgba(166,128,63,0.35); border: 1px solid var(--gold); }
.btn-cta-primary i { width: 18px; height: 18px; transition: transform 0.3s; }
.btn-cta-primary:hover i { transform: translateX(4px); }
.btn-cta-ghost {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.25);
    padding: 1.1rem 2rem;
    border-radius: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s;
    font-size: 1rem;
}
.btn-cta-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); transform: translateY(-3px); }
.btn-cta-ghost i { width: 18px; height: 18px; }
.hero-trust-badges { display: flex; gap: 2rem; font-size: 0.88rem; opacity: 0.65; flex-wrap: wrap; }
.hero-trust-badges span { display: flex; align-items: center; gap: 0.5rem; }
.hero-trust-badges i { width: 16px; height: 16px; }

/* Entrance Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes floatY {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-14px); }
}
@keyframes floatLeft {
    0%, 100% { transform: translate(-180px, -40px) rotate(-5deg); }
    50% { transform: translate(-180px, -55px) rotate(-5deg); }
}
@keyframes floatRight {
    0%, 100% { transform: translate(195px, 65px) rotate(4deg); }
    50% { transform: translate(195px, 50px) rotate(4deg); }
}
@keyframes cardInLeft {
    from { opacity: 0; transform: translate(-40px, 0) rotate(0deg); }
    to { opacity: 1; transform: translate(-180px, -40px) rotate(-5deg); }
}
@keyframes cardInRight {
    from { opacity: 0; transform: translate(40px, 80px) rotate(0deg); }
    to { opacity: 1; transform: translate(195px, 65px) rotate(4deg); }
}
.hero-text-block > * { opacity: 0; animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
.hero-text-block .badge-premium { animation-delay: 0.1s; }
.hero-text-block h1 { animation-delay: 0.25s; }
.hero-text-block p { animation-delay: 0.4s; }
.hero-actions { animation-delay: 0.55s; }
.hero-trust-badges { animation-delay: 0.7s; }

/* ─── Hero Visual ─── */
.hero-visual-block {
    position: relative;
    height: 560px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}
.hero-phone-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

/* Arka Kart Animasyonları kaldırıldı */
.hvc-accent-bar { position: absolute; top:0; left:0; right:0; height: 4px; background: linear-gradient(to right, var(--navy-blue), var(--gold)); }
.hvc-r-name { font-size: 1.35rem; font-weight: 800; color: var(--navy-blue); margin-top: 0.25rem; }
.hvc-r-sub { font-size: 0.8rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 0.1rem; }
.hvc-r-desc { font-size: 0.88rem; color: #64748b; line-height: 1.6; margin-top: 0.5rem; }
.hvc-r-qr { width: 36px; height: 36px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-top: auto; }
.hvc-r-qr i { width: 20px; height: 20px; color: var(--navy-blue); }

/* Telefon */
.v-phone {
    position: relative;
    width: 230px; height: 430px;
    background: #082424;
    border-radius: 38px;
    padding: 6px;
    z-index: 10;
    /* Metallic Bright Frame */
    border: 3px solid transparent;
    background-image: linear-gradient(#082424, #082424), linear-gradient(135deg, #FFEFBF 0%, #D4AF37 40%, #8A6428 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(166, 128, 63, 0.2);
    animation: fadeInUp 1s ease 0.8s forwards;
    opacity: 0;
}
.v-phone::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 40%;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
    border-radius: 40px;
    pointer-events: none;
    z-index: 15;
}
.v-phone-island {
    position: absolute;
    top: 10px; left: 50%;
    transform: translateX(-50%);
    width: 70px; height: 20px;
    background: #000;
    border-radius: 14px;
    z-index: 20;
    box-shadow: inset 0 -2px 5px rgba(255,255,255,0.06);
}
.v-phone-screen {
    width: 100%; height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, #071f1f 0%, var(--navy-blue) 40%, #0d3d3d 100%);
    position: relative;
}
.v-profile-view, .v-card-view {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center;
    opacity: 0;
    transition: opacity 0.6s ease;
    padding: 0;
    pointer-events: none;
}
.v-profile-view.active, .v-card-view.active {
    opacity: 1;
    pointer-events: auto;
}
/* App Status Bar */
.app-statusbar {
    position: absolute;
    top: 0; left: 0; right: 0;
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    color: #fff; font-size: 0.72rem; font-weight: 700;
    padding: 0.8rem 1.4rem 0;
    z-index: 10;
}
.app-statusbar-icons { display: flex; gap: 4px; align-items: center; }
.app-statusbar-icons i { width: 13px; height: 13px; }
/* ── Premium Phone Screen Essentials (Kartvizit Sync) ── */
.v-profile-card-inner {
    padding: 1.8rem 0.75rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.v-avatar-wrapper {
    position: relative;
    width: 64px; height: 64px;
    margin-bottom: 0.6rem;
}
.v-avatar-ring {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #F7E9BF, var(--gold), var(--gold-light), var(--gold), #F7E9BF);
    z-index: 1;
}
@keyframes ringShimmer {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.v-avatar-inner {
    position: relative;
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 2px solid var(--gold);
    overflow: hidden;
    background: #fff;
    z-index: 2;
}
.v-avatar-inner img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.premium-text-glow {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 0.1rem !important;
}
.premium-subtitle {
    color: var(--gold-light) !important;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    font-weight: 700 !important;
}

/* Actions Bar */
.v-actions-bar {
    display: flex;
    gap: 8px;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
}
.v-btn-icon {
    width: 32px; height: 32px;
    border-radius: 9px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
}
.v-btn-icon i { width: 14px; height: 14px; }
.v-btn-main {
    flex: 1;
    max-width: 100px;
    height: 32px;
    background: linear-gradient(135deg, var(--gold), #8a6830);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    gap: 5px; color: #fff; font-size: 0.65rem; font-weight: 700;
}
.v-btn-main i { width: 12px; height: 12px; }

/* Contact Grid */
.app-contact-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
    margin-top: 1.25rem !important;
}
.app-contact-tile {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(166,128,63,0.15);
    border-radius: 10px;
    padding: 0.5rem 0.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
}
.app-contact-tile:hover {
    background: rgba(166,128,63,0.08);
    border-color: var(--gold);
    transform: translateY(-2px);
}
.tile-icon-wrap {
    width: 32px; height: 32px;
    background: rgba(0,0,0,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}
.tile-icon-wrap i { width: 16px; height: 16px; color: var(--gold-light); }
.app-contact-tile strong {
    font-size: 0.65rem;
    color: #fff;
    font-weight: 600;
}

.premium-glow-badge {
    box-shadow: 0 10px 25px rgba(166, 128, 63, 0.2) !important;
    border: 1px solid rgba(166, 128, 63, 0.2);
    animation: badgeFloat 4s ease-in-out infinite !important;
}
@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.app-save-btn i { width: 16px; height: 16px; font-weight: 900; }
/* Card View */
.v-card-view {
    padding-top: 4rem;
}
.card-screen-label { color: #f8fafc; font-size: 1rem; font-weight: 700; margin: 1.5rem 0 1rem; }
.v-mock-card {
    width: calc(100% - 1.5rem);
    background: linear-gradient(135deg, var(--navy-blue), #0c3c3c);
    border-radius: 12px; padding: 1rem 1.1rem;
    display: flex; flex-direction: column; gap: 0.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}
.vmc-top { display: flex; justify-content: space-between; align-items: flex-start; }
.vmc-logo-img { width: 32px; height: 32px; border-radius: 7px; overflow: hidden; background: rgba(255,255,255,0.1); padding: 3px; }
.vmc-logo-img img { width: 100%; height: 100%; object-fit: contain; }
.vmc-nfc { font-size: 0.5rem; color: rgba(255,255,255,0.3); border: 1px solid rgba(255,255,255,0.2); padding: 2px 5px; border-radius: 4px; font-weight: 800; letter-spacing: 1px; }
.vmc-name { font-size: 0.9rem; color: #fff; font-weight: 800; letter-spacing: 0.5px; }
.vmc-role { font-size: 0.6rem; color: var(--gold); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.vmc-bottom { display: flex; justify-content: space-between; align-items: flex-end; }
.vmc-contact { font-size: 0.55rem; color: #94a3b8; display: flex; flex-direction: column; gap: 3px; }
.vmc-contact span { display: flex; align-items: center; gap: 4px; }
.vmc-contact i { width: 10px; height: 10px; color: var(--gold); }
.vmc-qr { width: 28px; height: 28px; background: #fff; border-radius: 5px; display: flex; align-items: center; justify-content: center; }
.vmc-qr i { width: 20px; height: 20px; color: var(--navy-dark); }
.card-screen-hint { color: #475569; font-size: 0.7rem; display: flex; align-items: center; gap: 0.4rem; margin-top: 1rem; }
.card-screen-hint i { width: 14px; height: 14px; }

/* Floating Badge */
.hero-float-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #fff;
    color: var(--navy-dark);
    padding: 0.75rem 1.25rem;
    border-radius: 20px;
    display: flex; align-items: center; gap: 0.7rem;
    font-size: 0.88rem; font-weight: 700;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    z-index: 20;
    animation: fadeInUp 1s ease 1.5s forwards;
    opacity: 0;
}
.hero-float-badge i { color: var(--gold); width: 18px; height: 18px; }

/* Hero Wave */
.hero-wave {
    position: absolute; bottom: 0; left: 0; width: 100%;
    line-height: 0; z-index: 20; pointer-events: none;
}
.hero-wave svg { display: block; width: 100%; height: 28px; }








/* ─── STATS ─── */
.stats-section { padding: 4rem 0 5rem; background: #fff; position: relative; z-index: 5; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.stat-card {
    text-align: center; padding: 2.5rem 1.5rem;
    border: 1px solid #eef2f6; border-radius: 24px;
    background: #fff; position: relative; overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.stat-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(10,47,47,0.08); border-color: var(--gold); }
.stat-icon-wrap {
    width: 56px; height: 56px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
}
.stat-icon-wrap i { width: 26px; height: 26px; }
.stat-num { font-size: 2.6rem; font-weight: 900; color: var(--navy-blue); margin-bottom: 0.4rem; letter-spacing: -1px; }
.stat-label { font-size: 0.95rem; color: #64748b; font-weight: 500; }

/* ─── FEATURES ─── */
/* --- FEATURES ELEGANT GRID --- */
.features-section { padding: 8rem 0; background: #fff; position: relative; z-index: 5; }
.section-label { text-align: center; font-size: 0.75rem; font-weight: 800; letter-spacing: 2px; color: var(--gold); margin-bottom: 1rem; text-transform: uppercase; }
.section-title { text-align: center; font-size: 2.5rem; font-weight: 900; color: var(--navy-dark); margin-bottom: 1.25rem; letter-spacing: -1px; }
.section-desc { text-align: center; font-size: 1.05rem; color: #64748b; max-width: 600px; margin: 0 auto 5rem; line-height: 1.7; }
.gold-text { color: var(--gold); }

.features-elegant-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 3rem;
}

.elegant-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    transition: transform 0.4s ease;
}

.elegant-feature:hover {
    transform: translateY(-5px);
}

.ef-icon-ring {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: var(--navy-dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: all 0.4s ease;
    position: relative;
}

.ef-icon-ring::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.elegant-feature:hover .ef-icon-ring {
    color: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(166,128,63,0.1);
}

.elegant-feature:hover .ef-icon-ring::before {
    border-color: rgba(166,128,63,0.25);
    transform: scale(1.03);
}

.ef-icon-ring i {
    width: 28px;
    height: 28px;
    stroke-width: 2px;
}

.elegant-feature h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 0.85rem;
    letter-spacing: -0.2px;
    transition: color 0.3s ease;
}

.elegant-feature:hover h3 {
    color: var(--gold);
}

.elegant-feature p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 1024px) {
    .features-elegant-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 2rem; }
}

@media (max-width: 640px) {
    .features-elegant-grid { grid-template-columns: 1fr; gap: 3rem 0; }
}
/* HOW IT WORKS GRID WITH PROGRESS LINE */
.how-it-works-section { padding: 8rem 0; background: var(--white); }
.steps-grid-line { 
    display: grid; 
    grid-template-columns: repeat(5, 1fr); 
    gap: 2rem; 
    position: relative; 
    margin-top: 4rem;
}

.progress-track {
    position: absolute;
    top: 2.5rem;
    left: 10%;
    right: 10%;
    height: 4px;
    background: #f1f5f9;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: var(--yellow);
    transition: width 0.3s linear;
}

.step-card { 
    text-align: center; 
    position: relative; 
    z-index: 2; 
    transition: all 0.5s ease;
}

.step-badge { 
    width: 50px; 
    height: 50px; 
    background: #e2e8f0; 
    color: #64748b; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 2rem; 
    font-weight: 800; 
    font-size: 1.2rem; 
    border: 6px solid #fff; 
    transition: all 0.5s ease;
}

.step-card.active .step-badge, .step-card:hover .step-badge {
    background: var(--gold);
    color: #fff;
    transform: scale(1.2);
    box-shadow: 0 10px 30px rgba(166, 128, 63, 0.4);
    border-color: rgba(166,128,63,0.2);
}

.step-card h4 { 
    font-size: 1.1rem; 
    font-weight: 800; 
    margin-bottom: 1rem; 
    color: var(--text-dark);
    transition: color 0.5s ease;
}

.step-card.active h4 {
    color: var(--navy-dark);
}

.step-card p { 
    font-size: 0.9rem; 
    color: #64748b; 
    line-height: 1.6; 
    transition: color 0.5s ease;
}

.step-card.active p {
    color: #64748b;
}

@media (max-width: 1024px) {
    .steps-grid-line { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
    .progress-track { display: none; }
}

@media (max-width: 768px) {
    .steps-grid-line { grid-template-columns: 1fr; gap: 4rem; }
}



/* ─── EXAMPLES - ELEGANT ─── */
.examples-section { padding: 8rem 0; background: #fafbfc; border-top: 1px solid #f1f5f9; }
.examples-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4rem; margin-top: 5rem; }

.ex-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.ex-card-wrapper {
    width: 100%;
    aspect-ratio: 1.586; /* Standard business card ratio */
    border-radius: 12px;
    position: relative;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.ex-card-wrapper:hover {
    transform: translateY(-10px) scale(1.03);
}

/* Dark Card */
.ex-dark {
    background: #0f172a;
    color: #fff;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(255,255,255,0.05);
}
.ex-dark:hover { box-shadow: 0 35px 60px rgba(15, 23, 42, 0.3); }

/* Light Card */
.ex-light {
    background: #ffffff;
    color: var(--navy-dark);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border: 1px solid #eef2f6;
}
.ex-light:hover { box-shadow: 0 35px 60px rgba(0,0,0,0.12); }

/* Digital Card Variant */
.ex-digital {
    background: linear-gradient(135deg, var(--navy-dark) 0%, #0c3c3c 100%);
    color: #fff;
    box-shadow: 0 20px 40px rgba(10, 47, 47, 0.15);
    border: 1px solid rgba(255,255,255,0.08);
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}
.ex-digital:hover { box-shadow: 0 35px 60px rgba(10, 47, 47, 0.3); }

.ex-header { display: flex; justify-content: space-between; align-items: flex-start; width: 100%; }
.ex-logo { width: 36px; height: 36px; opacity: 0.9; }
.ex-logo img { width: 100%; height: 100%; object-fit: contain; }
.ex-dark .ex-logo img { filter: brightness(0) invert(1); }
.ex-nfc { font-size: 0.6rem; font-weight: 800; letter-spacing: 2px; color: currentcolor; opacity: 0.3; }

.ex-body { width: 100%; }
.ex-name { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 0.2rem; }
.ex-title { font-size: 0.65rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; }

.ex-footer { display: flex; justify-content: space-between; align-items: flex-end; width: 100%; }
.ex-contact { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.72rem; font-weight: 500; color: currentcolor; opacity: 0.7; }
.ex-contact span { display: flex; align-items: center; gap: 0.6rem; }
.ex-contact i { width: 14px; height: 14px; color: var(--gold); stroke-width: 2.5px; }

.ex-qr { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; opacity: 0.5; border: 1px dashed currentcolor; border-radius: 8px; }
.ex-qr i { width: 22px; height: 22px; }

/* Digital Card Specifics */
.ex-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.3rem; color: #fff; border: 3px solid rgba(255,255,255,0.2); margin-top: -1rem; }
.ex-digital-links { display: flex; gap: 0.6rem; margin-top: 1rem; }
.ex-digital-links span { padding: 0.4rem 0.9rem; background: rgba(255,255,255,0.1); border-radius: 30px; font-size: 0.7rem; font-weight: 700; display: flex; align-items: center; gap: 0.4rem; letter-spacing: 0.3px; border: 1px solid rgba(255,255,255,0.05); }
.ex-digital-links i { width: 14px; height: 14px; color: var(--gold); }

/* Item Label */
.ex-item-label {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--navy-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .examples-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}
.pricing-section { padding: 8rem 0; background: var(--gray-bg); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; margin-top: 4rem; align-items: start; }
.pricing-card {
    background: #fff; border-radius: 28px; padding: 2.5rem 2rem;
    border: 1px solid #eef2f6;
    position: relative; overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 30px 70px rgba(10,47,47,0.1); border-color: var(--gold); z-index: 5; }
.pricing-card.featured {
    background: linear-gradient(145deg, #083030 0%, #0f4a44 100%);
    color: #fff; border-color: transparent;
    transform: scale(1.04);
    box-shadow: 0 30px 80px rgba(10,47,47,0.35);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.pricing-best-badge {
    position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: #fff;
    font-size: 0.65rem; font-weight: 900; letter-spacing: 1.5px;
    padding: 0.4rem 1.2rem; border-radius: 0 0 12px 12px;
    text-transform: uppercase;
}
.pricing-card-header { margin-bottom: 1.75rem; padding-top: 1rem; }
.pricing-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(10,47,47,0.08); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.pricing-icon.gold { background: rgba(166,128,63,0.15); }
.pricing-icon i { width: 24px; height: 24px; color: var(--navy-blue); }
.pricing-icon.gold i { color: var(--gold); }
.pricing-card.featured .pricing-icon { background: rgba(255,255,255,0.1); }
.pricing-card.featured .pricing-icon i { color: var(--gold); }
.pricing-card-header h3 { font-size: 1.35rem; font-weight: 900; color: var(--navy-blue); margin-bottom: 0.25rem; }
.pricing-card.featured .pricing-card-header h3 { color: #fff; }
.pricing-card-header p { font-size: 0.88rem; color: #64748b; }
.pricing-card.featured .pricing-card-header p { color: rgba(255,255,255,0.6); }
.pricing-price { margin-bottom: 2rem; }
.price-amount { font-size: 2.2rem; font-weight: 900; color: var(--navy-blue); display: block; }
.pricing-card.featured .price-amount { color: #fff; }
.price-period { font-size: 0.82rem; color: #64748b; }
.pricing-card.featured .price-period { color: rgba(255,255,255,0.55); }
.pricing-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.7rem; }
.pricing-features li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: #334155; }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.85); }
.pricing-features li i { width: 18px; height: 18px; flex-shrink: 0; }
.pricing-features li.included i { color: #22c55e; }
.pricing-features li.excluded { opacity: 0.45; }
.pricing-features li.excluded i { color: #ef4444; }
.pricing-btn-outline {
    display: block; width: 100%; text-align: center; text-decoration: none;
    padding: 1rem; border-radius: 14px;
    border: 1.5px solid #e2e8f0; background: #fff; color: var(--navy-blue);
    font-weight: 800; font-size: 0.95rem;
    transition: all 0.3s ease;
}
.pricing-btn-outline:hover { border-color: var(--navy-blue); background: var(--gray-bg); }
.pricing-btn-primary {
    display: block; width: 100%; text-align: center; text-decoration: none;
    padding: 1rem; border-radius: 14px;
    background: var(--gold); color: #fff;
    font-weight: 800; font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(166,128,63,0.35);
}
.pricing-btn-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 16px 35px rgba(166, 128, 63, 0.45); border: 1px solid var(--gold); }

/* ─── FOOTER CTA ─── */
.footer-cta { padding: 4rem 0 5rem; }
.footer-cta-box {
    background: linear-gradient(140deg, var(--navy-blue) 0%, #0d3d3d 60%, #093030 100%);
    border-radius: 32px; padding: 5rem 4rem;
    text-align: center; color: #fff; position: relative; overflow: hidden;
}
.fcta-glow {
    position: absolute; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(166,128,63,0.18) 0%, transparent 60%);
    top: -150px; right: -100px;
    pointer-events: none;
}
.fcta-content { position: relative; z-index: 2; }
.footer-cta-box h2 { font-size: 3.2rem; font-weight: 900; margin: 1rem 0 1.25rem; letter-spacing: -1px; }
.footer-cta-box p { font-size: 1.1rem; opacity: 0.75; margin-bottom: 2.5rem; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.fcta-actions { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-fcta-primary {
    display: inline-flex; align-items: center; gap: 0.75rem;
    background: var(--gold); color: #fff;
    text-decoration: none; padding: 1.1rem 2.5rem;
    border-radius: 14px; font-weight: 800; font-size: 1rem;
    box-shadow: 0 10px 25px rgba(166,128,63,0.35);
    transition: all 0.35s ease;
}
.btn-fcta-primary:hover { background: var(--gold-light); transform: translateY(-4px); box-shadow: 0 18px 40px rgba(166,128,63,0.5); }
.btn-fcta-primary i { width: 18px; height: 18px; transition: transform 0.3s; }
.btn-fcta-primary:hover i { transform: translateX(4px); }
.btn-fcta-ghost {
    display: inline-flex; align-items: center;
    color: rgba(255,255,255,0.8);
    text-decoration: none; border: 1.5px solid rgba(255,255,255,0.25);
    padding: 1.1rem 2.2rem; border-radius: 14px;
    font-weight: 700; font-size: 1rem;
    transition: all 0.3s;
}
.btn-fcta-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.fcta-trust { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.fcta-trust span { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; opacity: 0.6; }
.fcta-trust i { width: 16px; height: 16px; }

/* ─── MAIN FOOTER ─── */
.main-footer { padding: 6rem 0 3rem; background: var(--navy-dark); border-top: none; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-logo { display: inline-flex; align-items: center; gap: 0.85rem; margin-bottom: 1.5rem; }
.footer-logo img { height: 38px; width: auto; object-fit: contain; background: #fff; padding: 4px; border-radius: 8px; opacity: 0.95; }
.footer-logo span { font-size: 1.4rem; font-weight: 900; color: #fff; letter-spacing: -0.5px; }
.f-brand p { color: rgba(255,255,255,0.6); line-height: 1.8; font-size: 0.95rem; max-width: 90%; }
.footer-socials { display: flex; gap: 0.75rem; margin-top: 2rem; }
.social-btn {
    width: 42px; height: 42px; border-radius: 12px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.8); text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-4px); box-shadow: 0 10px 20px rgba(166,128,63,0.3); }
.social-btn svg, .social-btn i { width: 18px !important; height: 18px !important; }
.f-nav h5 { font-size: 0.8rem; font-weight: 800; color: var(--gold); margin-bottom: 1.75rem; letter-spacing: 2px; text-transform: uppercase; }
.f-nav ul { list-style: none; }
.f-nav ul li { margin-bottom: 1rem; }
.f-nav ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.f-nav ul li a:hover { color: #fff; }
.f-bot { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.f-bot p { margin: 0; }

@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero-section { min-height: auto; padding: 5rem 0 0; }
    .hero-actions { justify-content: center; }
    .hero-trust-badges { justify-content: center; }
    .hero-text-block p { margin-left: auto; margin-right: auto; }
    .hero-visual-block { height: 480px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .examples-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-6px); }
    .hv-card-back-left, .hv-card-back-right { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .f-brand { grid-column: span 2; }
    .footer-cta-box { padding: 4rem 2rem; }
    .footer-cta-box h2 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: inline-flex; }
    .nav-btns .btn-outline-sm { display: none; }
    .hero-text-block h1 { font-size: 2.6rem; }
    .hero-visual-block { height: 380px; }
    .v-phone { transform: scale(0.8); }
    .steps-grid-line { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .progress-track { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .examples-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .pricing-grid { max-width: 100%; }
}

@media (max-width: 480px) {
    .hero-text-block h1 { font-size: 2.1rem; }
    .hero-actions { flex-direction: column; }
    .btn-cta-primary, .btn-cta-ghost { width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .steps-grid-line { grid-template-columns: 1fr; }
    .hero-visual-block { height: 340px; }
    .v-phone { transform: scale(0.72); }
    .footer-grid { grid-template-columns: 1fr; }
    .f-brand { grid-column: span 1; }
    .footer-cta-box { padding: 3rem 1.5rem; }
    .footer-cta-box h2 { font-size: 1.9rem; }
    .fcta-actions { flex-direction: column; }
    .btn-fcta-primary, .btn-fcta-ghost { width: 100%; justify-content: center; }
    .container { padding-left: 1rem; padding-right: 1rem; }
}

/* TESTIMONIAL SLIDER STYLES */
.testimonials-section {
    padding: 10rem 0;
    background: #f8fafc;
    overflow: hidden;
}

.testimonial-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.testimonial-slider {
    position: relative;
    height: 400px; /* Base height, will adjust or item will be absolute */
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(50px);
}

.testimonial-item.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.testimonial-card {
    background: #fff;
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid rgba(0,0,0,0.02);
}

.quote-icon {
    position: absolute;
    top: -30px;
    left: 4rem;
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(166, 128, 63, 0.3);
}

.testimonial-content p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 3rem;
    font-style: italic;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f1f5f9;
}

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

.user-info h5 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.user-info span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 4rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 3rem 2rem;
    }
    .testimonial-content p {
        font-size: 1.1rem;
    }
    .testimonial-slider {
        height: 450px;
    }
}

/* Mobile Form & Touch Consistency */
html {
    scroll-padding-top: 84px;
}

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

@media (max-width: 768px) {
    .form-control,
    input,
    select,
    textarea,
    button {
        font-size: 16px !important;
    }

    .btn-auth-submit,
    .btn-outline-sm,
    .btn-dark-sm,
    .mobile-menu-btn {
        min-height: 44px;
        min-width: 44px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (hover: none) and (pointer: coarse) {
    .btn-outline-sm:hover,
    .btn-dark-sm:hover,
    .btn-auth-submit:hover,
    .btn-white-hero:hover,
    .btn-ghost-hero:hover {
        transform: none !important;
        box-shadow: none !important;
    }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   GLOBAL: ORTAK YARDIMCI STİLLER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark, #1e293b);
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.section-desc {
    text-align: center;
    color: var(--text-muted, #64748b);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Testimonials */
.testimonial-item { display: none; }
.testimonial-item.active { display: block; }
.testimonial-card {
    padding: 3rem 3.5rem;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
    max-width: 820px;
    margin: 0 auto 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(10,47,47,0.05);
    border-color: var(--gold);
    z-index: 5;
}
.quote-mark {
    font-size: 5rem;
    line-height: 1;
    color: var(--gold);
    font-family: Georgia, serif;
    font-weight: 900;
    margin-bottom: -1rem;
    opacity: 0.35;
}
.testimonial-text {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 2rem;
}
.testimonial-user { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; }
.user-img { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; background: #f1f5f9; flex-shrink: 0; }
.user-img img { width: 100%; height: 100%; object-fit: cover; }
.user-info { flex: 1; }
.user-info h5 { font-size: 1rem; font-weight: 800; color: #1e293b; margin-bottom: 0.2rem; }
.user-info span { font-size: 0.85rem; color: #64748b; }
.testimonial-stars { display: flex; gap: 2px; margin-left: auto; }
.testimonial-stars span { font-size: 1rem; color: var(--gold); line-height: 1; }
.slider-dots { display: flex; justify-content: center; gap: 0.6rem; margin-top: 2rem; }
.dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #e2e8f0; cursor: pointer;
    transition: all 0.3s; border: none; padding: 0;
}
.dot.active { background: var(--gold, #A6803F); transform: scale(1.3); }

/* ─── 📱 ENHANCED MOBILE RESPONSIVENESS SYSTEM ─── */

@media (max-width: 1024px) {
    .container { padding: 0 1.5rem; }
    .hero-text-block h1 { font-size: 3rem; }
    .features-elegant-grid { gap: 2rem; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-5px); }
}

@media (max-width: 768px) {
    /* Global Section Tightening */
    .container { padding: 0 1.125rem; }
    section { padding: 3.25rem 0 !important; }
    .main-nav { padding: 0.9rem 0; }
    .nav-flex { gap: 0.6rem; }
    .brand {
        min-width: 0;
        flex: 1 1 auto;
    }
    .brand-logotype {
        gap: 0.65rem;
        font-size: 1rem;
        min-width: 0;
    }
    .brand-logotype img { height: 38px; }
    .brand-logotype span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .nav-btns { gap: 0.55rem; flex-shrink: 0; }
    .btn-dark-sm {
        padding: 0.82rem 0.95rem;
        border-radius: 12px;
        font-size: 0.84rem;
        white-space: nowrap;
    }
    .section-label { margin-bottom: 0.75rem; font-size: 0.68rem; letter-spacing: 1.8px; }
    .section-title { font-size: 1.85rem !important; margin-bottom: 0.65rem; line-height: 1.18 !important; letter-spacing: -0.04em; }
    .section-desc { font-size: 0.98rem; margin-bottom: 2rem !important; opacity: 0.86 !important; line-height: 1.65; }

    /* Navbar Mobile */
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 0.8rem);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0.2rem;
        padding: 0.7rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(226, 232, 240, 0.9);
        box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
        backdrop-filter: blur(16px);
        z-index: 20;
    }
    .nav-links.mobile-open { display: flex; }
    .nav-links a {
        color: var(--navy-dark);
        font-size: 0.96rem;
        font-weight: 700;
        padding: 0.95rem 1rem;
        border-radius: 14px;
        background: transparent;
    }
    .nav-links a:hover {
        background: #f8fafc;
        color: var(--navy-blue);
    }
    .nav-links a::after { display: none; }
    .mobile-menu-btn { display: flex; }
    .nav-btns .btn-outline-sm { display: none; }
    
    /* Hero Refinement */
    .hero-section {
        padding: 2rem 0 1rem !important;
        min-height: auto;
    }
    .hero-bg-glow {
        width: 360px;
        height: 360px;
        top: -80px;
        right: -140px;
        opacity: 0.8;
    }
    .hero-inner { grid-template-columns: 1fr; text-align: left; gap: 1.35rem; }
    .hero-text-block { display: flex; flex-direction: column; align-items: flex-start; }
    .badge-premium {
        margin-bottom: 1rem;
        padding: 0.55rem 0.9rem;
        font-size: 0.74rem;
        border-radius: 999px;
    }
    .hero-text-block h1 { font-size: 2.2rem; margin-bottom: 1rem; }
    .hero-text-block p {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 1.35rem;
        font-size: 1rem;
        line-height: 1.65;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: none;
        gap: 0.7rem;
        margin-bottom: 1rem;
    }
    .btn-cta-primary, .btn-cta-ghost {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.1rem !important;
        border-radius: 16px;
    }
    .hero-trust-badges {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
        justify-content: flex-start;
    }
    .hero-trust-badges span {
        min-height: 0;
        padding: 0.72rem 0.8rem;
        border-radius: 16px;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.08);
        font-size: 0.78rem;
        line-height: 1.35;
        justify-content: flex-start;
    }
    .hero-trust-badges span:last-child {
        grid-column: 1 / -1;
    }
    .hero-visual-block {
        min-height: 220px;
        height: 220px;
        margin-top: -0.35rem;
    }
    .hero-phone-wrap {
        transform: scale(0.62);
        transform-origin: center top;
    }
    .hero-float-badge { display: none; }

    /* Stats Grid - Tighter */
    .stats-section { padding-top: 0.75rem !important; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .stat-card { padding: 1.1rem 0.8rem; border-radius: 18px; }
    .stat-icon-wrap {
        width: 44px;
        height: 44px;
        margin-bottom: 0.9rem;
        border-radius: 14px;
    }
    .stat-icon-wrap i { width: 20px; height: 20px; }
    .stat-num { font-size: 1.45rem; margin-bottom: 0.2rem; }
    .stat-label { font-size: 0.78rem; line-height: 1.35; }
    
    /* Features - Tighter */
    .features-elegant-grid { gap: 0.9rem; }
    .elegant-feature {
        padding: 1.2rem 1rem;
        border-radius: 20px;
        border: 1px solid #edf2f7;
        background: #fff;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
        align-items: flex-start;
        text-align: left;
    }
    .ef-icon-ring { width: 46px; height: 46px; margin-bottom: 0.85rem; }
    .ef-icon-ring i { width: 20px; height: 20px; }
    .elegant-feature h3 { font-size: 1.02rem; margin-bottom: 0.45rem; }
    .elegant-feature p { font-size: 0.88rem; line-height: 1.55; }

    /* How It Works - Tighter Path */
    .steps-grid-line {
        grid-template-columns: 1fr;
        gap: 0.9rem;
        margin-top: 2rem;
    }
    .progress-track { display: none; }
    .step-card {
        text-align: left;
        padding: 1.15rem 1rem 1.15rem 4rem;
        border: 1px solid #eef2f6;
        border-radius: 20px;
        background: #fff;
        box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
    }
    .step-badge {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        margin: 0;
        position: absolute;
        left: 1rem;
        top: 1rem;
        border-width: 4px;
    }
    .step-card h4 { font-size: 1rem; margin-bottom: 0.35rem; }
    .step-card p { font-size: 0.87rem; line-height: 1.55; }

    /* Pricing - CONSOLIDATED MOBILE UI */
    .pricing-grid { grid-template-columns: 1fr; gap: 1rem; margin-top: 1.5rem; }
    .pricing-card {
        padding: 1.35rem;
        border-radius: 24px;
        display: grid;
        grid-template-columns: 1fr;
        border: 1px solid #eef2f6;
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
    }
    .pricing-card.featured {
        background: linear-gradient(160deg, #083030 0%, #0d4542 100%);
        box-shadow: 0 16px 36px rgba(10,47,47,0.16);
    }
    .pricing-card-header { text-align: left; margin-bottom: 0.5rem; position: relative; }
    .pricing-icon { width: 36px; height: 36px; font-size: 0.8rem; margin: 0 0 0.65rem 0; float: none; }
    .pricing-card h3 { font-size: 1.2rem; }
    .pricing-card p { font-size: 0.82rem; margin-bottom: 0.25rem; }
    .pricing-price { margin: 0.5rem 0 1rem; text-align: left; border-bottom: 1px solid #f1f5f9; padding-bottom: 0.75rem; }
    .price-amount { font-size: 1.6rem; }
    .pricing-features { margin-bottom: 1.25rem; opacity: 0.9; }
    .pricing-features li { font-size: 0.82rem; margin-bottom: 0.4rem; }
    .pricing-btn-primary, .pricing-btn-outline { padding: 0.95rem !important; font-size: 0.95rem; border-radius: 14px; }
    .pricing-best-badge {
        font-size: 0.62rem;
        top: 1rem;
        right: 1rem;
        left: auto;
        transform: none;
        padding: 0.28rem 0.65rem;
        border-radius: 999px;
    }
    
    /* Showcase / Examples */
    .examples-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem !important;
        margin-top: 2rem !important;
    }
    .ex-card-wrapper { padding: 1.1rem !important; border-radius: 18px; }
    .ex-item {
        gap: 0.7rem;
        align-items: stretch;
    }
    .ex-name { font-size: 1.05rem; }
    .ex-contact { gap: 0.35rem; font-size: 0.68rem; }
    .ex-item-label { font-size: 0.76rem; opacity: 0.8; text-align: left; }
    
    /* Testimonials */
    .testimonials-section { overflow: hidden; }
    .testimonial-card { padding: 1.5rem !important; margin-bottom: 1rem; }
    .testimonial-text { font-size: 0.95rem; line-height: 1.65; margin-bottom: 1.25rem; }

    /* Footer */
    .footer-cta-box {
        padding: 2.25rem 1.1rem;
        border-radius: 24px;
    }
    .footer-cta-box h2 { font-size: 2rem; }
    .footer-cta-box p { font-size: 0.94rem; margin-bottom: 1.5rem; }
    .fcta-actions { gap: 0.75rem; margin-bottom: 1.25rem; }
    .btn-fcta-primary, .btn-fcta-ghost {
        width: 100%;
        justify-content: center;
        padding: 0.95rem 1rem;
        border-radius: 14px;
    }
    .fcta-trust {
        gap: 0.6rem;
        justify-content: flex-start;
    }
    .fcta-trust span {
        width: 100%;
        justify-content: flex-start;
        padding: 0.7rem 0.85rem;
        border-radius: 14px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.08);
    }
    .footer-grid { gap: 2.5rem; }
    .f-brand p { font-size: 0.88rem; }
    .f-nav h5 { font-size: 0.9rem; margin-bottom: 1.25rem; }
    .f-nav ul li { margin-bottom: 0.6rem; }
}

@media (max-width: 480px) {
    .container { padding-left: 1rem; padding-right: 1rem; }
    .main-nav { padding: 0.75rem 0; }
    .nav-flex { gap: 0.45rem; }
    .brand-logotype { gap: 0.5rem; font-size: 0.92rem; }
    .brand-logotype img { height: 34px; }
    .brand-logotype span {
        max-width: 112px;
        font-size: 0.88rem;
        line-height: 1.05;
    }
    .mobile-menu-btn {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }
    .btn-dark-sm {
        padding: 0.78rem 0.8rem;
        font-size: 0.78rem;
        border-radius: 12px;
    }
    .hero-text-block h1 { font-size: 1.95rem; }
    .section-title { font-size: 1.7rem !important; }
    .hero-phone-wrap { transform: scale(0.58); margin-top: -2.35rem; }
    .hero-visual-block { min-height: 170px; height: 170px; }
    .hero-trust-badges {
        grid-template-columns: 1fr 1fr;
        gap: 0.55rem;
    }
    .hero-trust-badges span {
        width: auto;
        padding: 0.68rem 0.75rem;
        font-size: 0.75rem;
    }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-card { padding: 1rem 0.7rem; }
    .pricing-card { padding: 1.2rem; }
    .fcta-content h2 { font-size: 1.7rem; }
    .fcta-trust { flex-direction: column; align-items: stretch; gap: 0.65rem; }
}

/* Fix for Touch Targets */
@media (pointer: coarse) {
    .btn-cta-primary, .btn-cta-ghost, .pricing-btn-primary, .pricing-btn-outline, .btn-dark-sm { min-height: 52px; }
    .nav-links a, .f-nav a { padding: 0.5rem 0; display: inline-block; }
}

/* ─── 320px Ultra-Small Devices (iPhone SE 1st gen, small Androids) ─── */
@media (max-width: 360px) {
    .container { padding-left: 0.75rem; padding-right: 0.75rem; }
    .hero-text-block h1 { font-size: 1.72rem; }
    .section-title { font-size: 1.5rem !important; }
    .hero-actions { gap: 0.55rem; }
    .btn-cta-primary, .btn-cta-ghost {
        font-size: 0.9rem;
        padding: 0.9rem 0.85rem !important;
    }
    .footer-cta-box { padding: 2rem 0.85rem; border-radius: 18px; }
    .footer-cta-box h2 { font-size: 1.55rem; }
    .stats-grid { gap: 0.6rem; }
    .stat-card { padding: 0.85rem 0.6rem; border-radius: 16px; }
    .stat-num { font-size: 1.3rem; }
    .pricing-card { padding: 1rem; }
    .f-bot { flex-direction: column; gap: 0.5rem; text-align: center; }
}
