/* =====================================================
   TRAVEL SMART — Stylesheet
   ===================================================== */

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

:root {
    --navy:        #0d1b2a;
    --navy-light:  #162033;
    --navy-mid:    #1a2a40;
    --teal:        #00b4b0;
    --teal-dark:   #008a87;
    --amber:       #e8923a;
    --white:       #ffffff;
    --text-muted:  #8a9bb0;
    --border:      rgba(255, 255, 255, 0.08);

    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    --pad: 100px 0;
    --max: 1200px;
    --r:   16px;
    --r-lg: 24px;
    --ease: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* =====================================================
   UTILITIES
   ===================================================== */

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

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--font-head);
    font-size: clamp(30px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
}

.btn-primary {
    display: inline-block;
    background: var(--teal);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 180, 176, 0.35);
}

.btn-primary.large {
    font-size: 16px;
    padding: 20px 48px;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    padding: 16px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--ease);
}

.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* =====================================================
   NAVBAR
   ===================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(13, 27, 42, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    width: 100%;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 58px;
    width: auto;
    object-fit: contain;
    transition: height 0.4s ease;
}

.navbar.scrolled .logo-img {
    height: 46px;
}

.logo-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 3px;
}

.wordmark-travel {
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.wordmark-smart {
    font-family: var(--font-head);
    font-size: 21px;
    font-weight: 800;
    color: #c9a84c;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    margin-left: auto;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--ease);
}

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

.nav-cta {
    display: inline-block;
    background: var(--teal);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    padding: 10px 22px;
    border-radius: 50px;
    white-space: nowrap;
    transition: background var(--ease), transform var(--ease);
}

.nav-cta:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
}

.nav-quiz {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    color: var(--teal);
    border: 1px solid rgba(0, 180, 176, 0.3);
    padding: 7px 16px;
    border-radius: 50px;
    transition: all var(--ease);
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-quiz:hover { background: rgba(0,180,176,0.1); border-color: rgba(0,180,176,0.55); }

.nav-guide {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    color: #c9a84c;
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 7px 16px;
    border-radius: 50px;
    transition: all var(--ease);
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-guide:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.55);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    transform-origin: center;
}

/* =====================================================
   MOBILE MENU
   ===================================================== */

.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    opacity: 0.7;
    transition: opacity var(--ease);
}

.mobile-close:hover { opacity: 1; }

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-menu ul a {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 700;
    transition: color var(--ease);
}

.mobile-menu ul a:hover { color: var(--teal); }

.mobile-cta { font-size: 16px; padding: 14px 40px; }

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

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

.hero-bg {
    position: absolute;
    inset: -12% 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 124%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 27, 42, 0.88) 0%,
        rgba(13, 27, 42, 0.55) 55%,
        rgba(13, 27, 42, 0.35) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 140px 24px 0;
}

.hero-tag {
    display: inline-block;
    background: rgba(0, 180, 176, 0.12);
    border: 1px solid rgba(0, 180, 176, 0.35);
    color: var(--teal);
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(44px, 8vw, 92px);
    font-weight: 900;
    line-height: 1.03;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title .highlight { color: var(--teal); }

.hero-subtitle {
    font-size: clamp(15px, 2vw, 19px);
    color: rgba(255, 255, 255, 0.72);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.75;
    opacity: 0;
    transform: translateY(20px);
}

.hero-subtitle strong { color: var(--amber); font-weight: 700; }

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

.hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 0;
    margin-top: 28px;
    animation: trustIn 0.9s ease 1.6s both;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
}

.trust-item i { color: var(--teal); font-size: 11px; }

.trust-sep {
    color: rgba(255, 255, 255, 0.18);
    margin: 0 14px;
    font-size: 13px;
    line-height: 1;
}

.scarcity-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 146, 58, 0.08);
    border: 1px solid rgba(232, 146, 58, 0.22);
    color: var(--amber);
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    margin-top: 14px;
    letter-spacing: 0.02em;
}

.scarcity-note i { font-size: 10px; }

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
}

.hero-scroll span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-head);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50%       { opacity: 1; }
}

/* =====================================================
   PROCESS
   ===================================================== */

.process {
    padding: var(--pad);
    background: var(--navy-light);
}

.process-steps {
    display: flex;
    align-items: flex-start;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 28px;
    position: relative;
}

.step-icon {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 24px;
    box-shadow: 0 12px 36px rgba(0, 180, 176, 0.28);
    flex-shrink: 0;
    transition: transform var(--ease), box-shadow var(--ease);
    cursor: default;
}

.step-icon:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 48px rgba(0, 180, 176, 0.4);
}

.step-content h3 {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

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

.process-connector {
    width: 70px;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), rgba(0, 180, 176, 0.15));
    margin-top: 38px;
    flex-shrink: 0;
    position: relative;
}

.process-connector::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -4px;
    width: 9px;
    height: 9px;
    border-top: 2px solid var(--teal);
    border-right: 2px solid var(--teal);
    transform: rotate(45deg);
}

/* =====================================================
   PRICING
   ===================================================== */

.pricing {
    position: relative;
    padding: var(--pad);
    overflow: hidden;
}

.pricing-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.pricing-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
}

.pricing-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 42, 0.9);
    z-index: 1;
}

.pricing .container { position: relative; z-index: 2; }

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background: rgba(22, 32, 51, 0.9);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 40px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    backdrop-filter: blur(8px);
}

.pricing-card:hover {
    border-color: rgba(0, 180, 176, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
}

.pricing-card.featured {
    border-color: var(--teal);
    background: rgba(0, 180, 176, 0.06);
    box-shadow: 0 0 0 1px var(--teal), 0 24px 64px rgba(0, 180, 176, 0.12);
}

.pricing-card.featured:hover {
    transform: translateY(-12px);
    box-shadow: 0 0 0 1px var(--teal), 0 48px 96px rgba(0, 180, 176, 0.22);
}

.card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    white-space: nowrap;
}

.card-header { margin-bottom: 28px; }

.card-icon {
    font-size: 34px;
    display: block;
    margin-bottom: 14px;
}

.card-header h3 {
    font-family: var(--font-head);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 14px;
}

.card-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price {
    font-family: var(--font-head);
    font-size: 46px;
    font-weight: 900;
    line-height: 1;
}

.pricing-card.featured .price { color: var(--teal); }

.price-note {
    font-size: 12px;
    color: var(--text-muted);
}

.card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    margin-bottom: 28px;
}

.card-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.card-features li i {
    color: var(--teal);
    font-size: 11px;
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-card.featured .card-features li { color: rgba(255, 255, 255, 0.82); }

.card-cta {
    display: block;
    text-align: center;
    background: rgba(255, 255, 255, 0.07);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    padding: 14px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all var(--ease);
    margin-top: auto;
    letter-spacing: 0.5px;
}

.card-cta:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.featured-cta {
    background: var(--teal);
    border-color: var(--teal);
}

.featured-cta:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    box-shadow: 0 8px 28px rgba(0, 180, 176, 0.38);
}

/* =====================================================
   SIMULATOR
   ===================================================== */

.simulator {
    padding: var(--pad);
    background: var(--navy);
}

.sim-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    background: var(--navy-light);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.sim-controls {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    border-right: 1px solid var(--border);
}

.sim-label {
    display: block;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
}

.dest-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dest-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    cursor: pointer;
    transition: all var(--ease);
}

.dest-chip:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.dest-chip.active {
    background: rgba(0, 180, 176, 0.15);
    border-color: var(--teal);
    color: var(--teal);
    font-weight: 600;
}

/* ── CITY SELECT ── */
.city-select {
    width: 100%;
    background-color: rgba(0, 180, 176, 0.07);
    border: 1.5px solid rgba(0, 180, 176, 0.45);
    border-radius: 14px;
    padding: 14px 44px 14px 18px;
    color: var(--white);
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath fill='%2300b4b0' d='M6 7L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    transition: border-color var(--ease);
}
.city-select:focus { border-color: var(--teal); outline: none; }
.city-select option { background: #1a2a40; color: var(--white); font-size: 16px; }

.sim-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.sim-field { display: flex; flex-direction: column; }

.slider-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--teal);
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(0, 180, 176, 0.2);
    transition: box-shadow var(--ease);
}

input[type="range"]::-webkit-slider-thumb:hover {
    box-shadow: 0 0 0 6px rgba(0, 180, 176, 0.3);
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    font-family: var(--font-head);
}

.btn-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.group-btn {
    flex: 1;
    min-width: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 8px;
    cursor: pointer;
    transition: all var(--ease);
    white-space: nowrap;
}

.group-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.group-btn.active {
    background: rgba(0, 180, 176, 0.15);
    border-color: var(--teal);
    color: var(--teal);
}

.style-group .group-btn { font-size: 12px; }

.style-info-box {
    margin-top: 10px;
    padding: 11px 14px;
    background: rgba(0,180,176,0.06);
    border: 1px solid rgba(0,180,176,0.18);
    border-radius: 10px;
    min-height: 42px;
    transition: opacity 0.25s ease;
}

.style-info-box p {
    font-size: 12px;
    color: rgba(255,255,255,0.58);
    line-height: 1.55;
    margin: 0;
}

.style-info-box p strong {
    color: var(--teal);
    font-weight: 600;
}

/* Results panel */
.sim-results {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sim-total-block { text-align: center; }

.sim-total-label {
    display: block;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.sim-total-val {
    display: block;
    font-family: var(--font-head);
    font-size: 56px;
    font-weight: 900;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.sim-total-sub {
    font-size: 12px;
    color: var(--text-muted);
}

.sim-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-bottom: 1px solid var(--border);
    transition: background var(--ease);
}

.breakdown-item:last-child { border-bottom: none; }

.breakdown-item:hover { background: rgba(255, 255, 255, 0.03); }

.bi-icon { font-size: 16px; flex-shrink: 0; }

.bi-label {
    flex: 1;
    font-size: 13px;
    color: var(--text-muted);
}

.bi-val {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    transition: all 0.3s ease;
}

.sim-savings {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.saving-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 180, 176, 0.08);
    border: 1px solid rgba(0, 180, 176, 0.2);
    border-radius: 12px;
    padding: 14px 16px;
}

.saving-chip i {
    font-size: 18px;
    color: var(--teal);
    flex-shrink: 0;
}

.chip-val {
    display: block;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
}

.chip-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 1px;
}

.sim-recommendation {
    background: rgba(232, 146, 58, 0.08);
    border: 1px solid rgba(232, 146, 58, 0.25);
    border-radius: var(--r);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sim-rec-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.sim-rec-text strong {
    display: block;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--amber);
    margin-bottom: 2px;
}

.sim-rec-btn {
    display: inline-block;
    background: var(--amber);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 12px;
    padding: 10px 18px;
    border-radius: 50px;
    white-space: nowrap;
    transition: background var(--ease), transform var(--ease);
    flex-shrink: 0;
}

.sim-rec-btn:hover {
    background: #d4822e;
    transform: translateY(-1px);
}

.sim-disclaimer {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
    text-align: center;
}

/* =====================================================
   DESTINATIONS
   ===================================================== */

.destinations {
    padding: var(--pad);
    background: var(--navy);
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 240px 240px;
    gap: 14px;
    margin-bottom: 36px;
}

.dest-card {
    background-image: var(--img);
    background-size: cover;
    background-position: center;
    border-radius: var(--r);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dest-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    border-radius: var(--r);
    transition: border-color 0.3s ease;
}

.dest-card:hover { transform: scale(1.02); }
.dest-card:hover::after { border-color: rgba(0, 180, 176, 0.4); }

.dest-card.large { grid-column: span 2; }

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.88) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    transition: background 0.35s ease;
}

.dest-card:hover .dest-overlay {
    background: linear-gradient(to top, rgba(13, 27, 42, 0.92) 0%, rgba(13, 27, 42, 0.2) 60%, rgba(0, 180, 176, 0.08) 100%);
}

.dest-overlay h3 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 3px;
}

.dest-overlay span {
    font-size: 12px;
    color: var(--teal);
    font-weight: 500;
    letter-spacing: 1px;
}

/* Carousel mobil */
.dest-carousel {
    display: none;
    overflow: hidden;
    margin: 0 -24px 36px;
}

.dest-track {
    display: flex;
    gap: 12px;
    padding: 0 24px;
    width: max-content;
    animation: destScroll 30s linear infinite;
}

.dest-track:hover { animation-play-state: paused; }

@keyframes destScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.dest-card-m {
    width: 160px;
    height: 210px;
    background-image: var(--img);
    background-size: cover;
    background-position: center;
    border-radius: var(--r);
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.dest-card-m .dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.88) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
}

.dest-card-m .dest-overlay h3 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 2px;
}

.dest-card-m .dest-overlay span {
    font-size: 11px;
    color: var(--teal);
    font-weight: 500;
    letter-spacing: 1px;
}

.dest-note { text-align: center; }

.dest-note p {
    font-size: 15px;
    color: var(--text-muted);
}

.dest-note a {
    color: var(--teal);
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color var(--ease);
}

.dest-note a:hover { border-bottom-color: var(--teal); }

/* =====================================================
   ABOUT
   ===================================================== */

.about {
    padding: var(--pad);
    background: var(--navy-light);
}

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

.about-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.about-photo-wrap {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(201, 168, 76, 0.35);
    box-shadow: 0 0 80px rgba(201, 168, 76, 0.12), 0 32px 64px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.about-socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 280px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    transition: all var(--ease);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

.social-btn i { font-size: 18px; }
.social-btn.tiktok i { color: var(--white); }
.social-btn.instagram i { color: #e1306c; }

.about-content .section-tag { display: block; margin-bottom: 14px; }

.about-content h2 {
    font-family: var(--font-head);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 18px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 28px 0 32px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.about-stat {
    text-align: center;
}

.about-stat:last-child {
    grid-column: 1 / -1;
}

.stat-val {
    display: block;
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 900;
    color: #c9a84c;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 480px) {
    .about-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-val { font-size: 24px; }
}

.about-content .btn-primary { margin-top: 8px; }

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

.testimonials {
    padding: var(--pad);
    background: var(--navy);
}

/* ── Grid wrapper ───────────────────────────────────────────────── */
.testi-wrap { position: relative; }

/* Desktop — grid layout */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: start;
    gap: 20px;
    margin-bottom: 0;
    padding-bottom: 8px;
}

.testimonials-grid .testimonial-card {
    grid-column: span 2;
    width: 100%;
}

/* Ultimele 2 carduri: câte 3 coloane → centrate pe rândul 2 */
.testimonials-grid .testimonial-card:nth-child(4),
.testimonials-grid .testimonial-card:nth-child(5) {
    grid-column: span 3;
}

.testi-dots { display: none; }

/* ── Card base ──────────────────────────────────────────────────── */
.testimonial-card {
    position: relative;
    background: linear-gradient(160deg, rgba(22,35,54,1) 0%, rgba(14,24,38,1) 100%);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(0,0,0,0.45);
}

/* Text card specific */
.testi-text-card {
    padding: 36px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-top: none;
    background: linear-gradient(120deg, rgba(22,35,54,1) 60%, rgba(0,180,176,0.06) 100%);
    border: 1px solid rgba(255,255,255,0.07);
}

.testi-text-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(201,168,76,0.07) 0%, transparent 60%);
    pointer-events: none;
}

/* Decorative quote mark */
.testi-deco-quote {
    font-family: Georgia, serif;
    font-size: 80px;
    line-height: 1;
    color: rgba(201,168,76,0.15);
    pointer-events: none;
    user-select: none;
    flex-shrink: 0;
    margin: 0 0 8px;
}

.testi-text-body {
    flex: 1;
}

.testimonial-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.85;
    margin-bottom: 28px;
    font-style: italic;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 16px;
    color: #fff;
}

.testi-avatar-1 { background: linear-gradient(135deg, #00b4b0, #c9a84c); }
.testi-avatar-2 { background: linear-gradient(135deg, #c9a84c, #00b4b0); }

.author-name {
    display: block;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.author-dest {
    display: block;
    font-size: 11px;
    color: var(--teal);
    margin-top: 3px;
    letter-spacing: 0.04em;
}

/* ── Proof image cards ──────────────────────────────────────────── */
.testi-with-proof {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.testi-platform-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.testi-platform-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.testi-proof-img {
    width: 100%;
    display: block;
    border-radius: 20px 20px 0 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.testi-with-proof .testimonial-author {
    padding: 18px 22px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── Dots ───────────────────────────────────────────────────────── */
.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding-bottom: 4px;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.25s;
}

.testi-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

.testimonials-cta { text-align: center; }

/* =====================================================
   RECAP MODAL
   ===================================================== */

.recap-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.recap-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.recap-modal {
    background: var(--navy-light);
    border: 1px solid rgba(0, 180, 176, 0.25);
    border-radius: var(--r-lg);
    padding: 40px 36px;
    max-width: 480px;
    width: 100%;
    position: relative;
    transform: translateY(24px) scale(0.98);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.recap-overlay.open .recap-modal {
    transform: translateY(0) scale(1);
}

.recap-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color var(--ease);
}

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

.recap-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.recap-icon {
    font-size: 40px;
    flex-shrink: 0;
    line-height: 1;
}

.recap-name {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
}

.recap-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.recap-price {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 900;
    color: var(--teal);
    line-height: 1;
}

.recap-note {
    font-size: 12px;
    color: var(--text-muted);
}

.recap-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 32px;
}

.recap-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.recap-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
    margin-top: 6px;
}

.recap-actions { text-align: center; }

.recap-proceed {
    display: block;
    font-size: 15px;
    padding: 16px 32px;
    margin-bottom: 12px;
}

.recap-sub {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 480px) {
    .recap-modal { padding: 32px 24px; }
    .recap-icon { font-size: 32px; }
    .recap-name { font-size: 18px; }
    .recap-price { font-size: 28px; }
}

.testimonials-cta p { font-size: 15px; color: var(--text-muted); }

.testimonials-cta a {
    color: var(--teal);
    font-weight: 600;
}

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

.faq {
    padding: var(--pad);
    background: var(--navy-light);
}

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

.faq-item {
    background: rgba(13, 27, 42, 0.5);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color var(--ease);
}

.faq-item.open { border-color: rgba(0, 180, 176, 0.28); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 26px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    gap: 16px;
}

.faq-question i {
    flex-shrink: 0;
    font-size: 13px;
    color: var(--teal);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question i { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

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

/* =====================================================
   CTA FINAL
   ===================================================== */

.cta-final {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.92), rgba(0, 90, 88, 0.65));
    z-index: 1;
}

.cta-final .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-head);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
    margin-bottom: 18px;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 36px;
}

/* =====================================================
   CONTACT
   ===================================================== */

.contact {
    padding: var(--pad);
    background: var(--navy);
}

.contact-strip {
    background: var(--navy-l);
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 28px 0;
}
.contact-strip .container {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.contact-strip-label {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    font-family: var(--fb);
    white-space: nowrap;
}
.contact-strip-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.contact-strip-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 50px;
    font-family: var(--fb);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.contact-strip-btn:hover { color: #fff; border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.06); }
.contact-strip-btn.wa:hover  { border-color: #25d366; color: #25d366; }
.contact-strip-btn.ig:hover  { border-color: #e1306c; color: #e1306c; }
.contact-strip-btn.mail:hover { border-color: var(--teal); color: var(--teal); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}
.contact-grid--centered {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--navy-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 13px 17px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    width: 100%;
    transition: border-color var(--ease), background var(--ease);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    background: rgba(0, 180, 176, 0.04);
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath fill='%2300b4b0' d='M6 7L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option { background: var(--navy-light); color: var(--white); }

.form-group textarea { resize: vertical; min-height: 130px; }

.btn-primary.full-width {
    width: 100%;
    text-align: center;
    font-size: 15px;
    padding: 16px;
    border: none;
}

.contact-card {
    background: var(--navy-light);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px;
}

.contact-card h3 {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    transition: all var(--ease);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateX(4px);
}

.contact-method i {
    font-size: 22px;
    width: 26px;
    text-align: center;
    flex-shrink: 0;
}

.contact-method.whatsapp i { color: #25D366; }
.contact-method.email i    { color: var(--teal); }
.contact-method.insta i    { color: #e1306c; }

.method-label {
    display: block;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
}

.method-desc {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 1px;
}

/* =====================================================
   COMPARATOR
   ===================================================== */

.comparator {
    padding: var(--pad);
    background: linear-gradient(180deg, var(--navy-dark) 0%, #0a1929 100%);
}

.comp-table {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 48px;
}

/* ---- DESKTOP HEADER ---- */
.comp-head {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border);
}

.comp-label-col { padding: 24px 28px; }

.comp-col-head {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    border-left: 1px solid var(--border);
    position: relative;
}

.comp-col-head.solo  { color: rgba(255,255,255,0.45); }
.comp-col-head.nicolas { color: #c9a84c; background: rgba(201,168,76,0.06); }
.comp-col-head i { font-size: 20px; margin-bottom: 2px; }

.comp-badge {
    position: absolute;
    top: -1px; right: 20px;
    background: #c9a84c;
    color: #07101a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 0 0 8px 8px;
}

/* ---- ROWS ---- */
.comp-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.25s ease;
}

.comp-row:last-child { border-bottom: none; }
.comp-row:hover { background: rgba(255,255,255,0.025); }

.comp-label {
    padding: 20px 28px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    gap: 10px;
}

.comp-label i {
    color: var(--teal);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.comp-cell {
    padding: 20px 28px;
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
}

.comp-cell.nicolas { background: rgba(201,168,76,0.04); }

.comp-cell small {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    line-height: 1.4;
}

/* Mobile context headers — hidden on desktop */
.cell-mob-head {
    display: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 4px;
}
.cell-mob-head.nic { color: rgba(201,168,76,0.7); }

.c-bad {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    color: rgba(255,100,100,0.8);
    display: flex;
    align-items: center;
    gap: 6px;
}

.c-good {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    color: #c9a84c;
    display: flex;
    align-items: center;
    gap: 6px;
}

.comp-cta-wrap {
    text-align: center;
    margin-top: 40px;
}

/* =====================================================
   GARANTIE STRIP
   ===================================================== */

.guarantee-strip {
    background: rgba(201,168,76,0.07);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 28px 0;
}

.guarantee-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.g-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 40px;
    flex: 1;
    min-width: 220px;
    max-width: 320px;
}

.g-item i {
    font-size: 22px;
    color: #c9a84c;
    flex-shrink: 0;
}

.g-item strong {
    display: block;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
}

.g-item span {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

.g-sep {
    width: 1px;
    height: 48px;
    background: rgba(201,168,76,0.2);
}

/* =====================================================
   COOKIE BANNER
   ===================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: rgba(7,16,26,0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(201,168,76,0.2);
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    flex-wrap: wrap;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-content {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.cookie-icon {
    font-size: 20px;
    color: #c9a84c;
    flex-shrink: 0;
}

.cookie-content p {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
    margin: 0;
}

.cookie-content a {
    color: #c9a84c;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn-decline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn-decline:hover {
    border-color: rgba(255,255,255,0.4);
    color: rgba(255,255,255,0.8);
}

.cookie-btn-accept {
    background: #c9a84c;
    border: none;
    color: #07101a;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn-accept:hover { background: #b8962e; }

/* Footer legal link */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-legal a {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover { color: rgba(255,255,255,0.6); }

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

.footer {
    background: #07101a;
    padding: 56px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--border);
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.footer-logo {
    height: 58px;
    width: auto;
    object-fit: contain;
}

.footer-wordmark .wordmark-travel {
    color: rgba(255, 255, 255, 0.5);
}

.footer-wordmark .wordmark-smart {
    font-size: 18px;
}

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

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 2px; }
.footer-social { display: flex; flex-direction: column; gap: 2px; }

.footer-links a,
.footer-social a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    padding: 5px 0;
    transition: color var(--ease);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover,
.footer-social a:hover { color: var(--teal); }

.footer-social a i { font-size: 14px; }

.footer-bottom { text-align: center; }

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
}

/* =====================================================
   WHATSAPP FLOAT
   ===================================================== */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

/* =====================================================
   PAIN STRIP
   ===================================================== */

.pain-strip {
    background: rgba(232, 146, 58, 0.04);
    border-top: 1px solid rgba(232, 146, 58, 0.1);
    border-bottom: 1px solid rgba(232, 146, 58, 0.1);
    padding: 36px 0;
}

.pain-items {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 240px;
    line-height: 1.6;
}

.pain-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }

.pain-conclusion {
    text-align: center;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--amber);
    letter-spacing: 0.01em;
}

/* Pricing WA link */
.pricing-wa-wrap { text-align: center; margin-top: 32px; }

.pricing-wa-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 13px;
    font-family: var(--font-head);
    font-weight: 600;
    transition: color var(--ease);
    letter-spacing: 0.01em;
}

.pricing-wa-link i { color: #25D366; font-size: 17px; }
.pricing-wa-link:hover { color: rgba(255, 255, 255, 0.7); }

@media (max-width: 768px) {
    .pain-items { flex-direction: column; align-items: center; gap: 20px; text-align: center; }
    .pain-item { max-width: 100%; justify-content: center; }
    .nav-guide { display: none; }
    .nav-quiz  { display: none; }
}

/* =====================================================
   TARGET AUDIENCE
   ===================================================== */

.target {
    padding: var(--pad);
    background: var(--navy-light);
}

.target-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.target-card {
    border-radius: var(--r-lg);
    padding: 36px;
}

.target-card.yes-card {
    background: rgba(0, 180, 176, 0.06);
    border: 1px solid rgba(0, 180, 176, 0.2);
}

.target-card.no-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.target-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.target-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 800;
    font-family: var(--font-head);
    flex-shrink: 0;
}

.yes-card .target-icon-wrap { background: rgba(0, 180, 176, 0.15); color: var(--teal); }
.no-card .target-icon-wrap  { background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.3); }

.target-card-title {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 800;
}

.yes-card .target-card-title { color: var(--teal); }
.no-card .target-card-title  { color: rgba(255, 255, 255, 0.4); }

.target-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.target-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

.target-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    font-family: var(--font-head);
    flex-shrink: 0;
    margin-top: 1px;
}

.yes-card .target-dot { background: rgba(0, 180, 176, 0.15); color: var(--teal); }
.no-card .target-dot  { background: rgba(255, 255, 255, 0.07); color: rgba(255, 255, 255, 0.3); }

.personas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.persona-card {
    background: rgba(13, 27, 42, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 24px 20px;
    text-align: center;
    transition: border-color var(--ease), transform var(--ease);
    cursor: default;
}

.persona-card:hover {
    border-color: rgba(0, 180, 176, 0.25);
    transform: translateY(-4px);
}

.persona-emoji {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.persona-name {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--white);
}

.persona-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.65;
}

.target-cta-wrap {
    text-align: center;
    padding: 36px;
    background: rgba(0, 180, 176, 0.04);
    border: 1px solid rgba(0, 180, 176, 0.12);
    border-radius: var(--r-lg);
}

.target-cta-wrap p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
}

.target-cta-wrap strong { color: var(--white); }

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

/* Mobile total peek — only when sim is stacked */
.sim-peek-mobile { display: none; }

@media (max-width: 1024px) {
    .personas { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .target-grid { grid-template-columns: 1fr; }
    .target-card  { padding: 24px 20px; }
    .personas     { grid-template-columns: 1fr 1fr; }
    .target-cta-wrap { padding: 24px 20px; }
    .target-cta-wrap p { font-size: 15px; }
}

@media (max-width: 1024px) {
    .sim-peek-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(0,180,176,.07);
        border: 1px solid rgba(0,180,176,.22);
        border-radius: 14px;
        padding: 14px 20px;
        margin-bottom: 8px;
        font-family: var(--font-head);
    }
    .sim-peek-mobile > span {
        font-size: 13px;
        color: rgba(255,255,255,.55);
        font-weight: 600;
    }
    .sim-peek-mobile > strong {
        font-size: 28px;
        font-weight: 900;
        color: var(--teal);
    }
}

@media (max-width: 1024px) {
    .sim-wrapper {
        grid-template-columns: 1fr;
    }

    .sim-controls { border-right: none; border-bottom: 1px solid var(--border); }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }

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

    .dest-card.large { grid-column: span 2; }
    .dest-grid .dest-card { height: 220px; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .about-socials { margin: 0 auto; }

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

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
    :root { --pad: 70px 0; }

    .logo-img    { height: 44px; }
    .footer-logo { height: 44px; }
    .navbar.scrolled .logo-img { height: 36px; }
    .wordmark-smart { font-size: 17px; }
    .about-photo-wrap { width: 240px; height: 240px; }

    .sim-row-2 { grid-template-columns: 1fr; }
    .sim-savings { grid-template-columns: 1fr; }
    .sim-controls, .sim-results { padding: 28px 20px; }
    .sim-total-val { font-size: 44px; }

    /* Comparator — tabel continuu 2 coloane pe mobile */
    .comp-head {
        grid-template-columns: 1fr 1fr;
    }
    .comp-label-col { display: none; }
    .comp-col-head { padding: 14px 12px; font-size: 12px; gap: 4px; }
    .comp-col-head i { font-size: 15px; }
    .comp-badge { font-size: 8px; padding: 2px 7px; right: 8px; }

    .comp-row {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    .comp-label {
        grid-column: 1 / -1;
        padding: 9px 14px;
        font-size: 11px;
        font-weight: 600;
        background: rgba(255,255,255,0.025);
        border-bottom: 1px solid rgba(255,255,255,0.05);
        border-right: none;
        justify-content: flex-start;
    }
    .comp-cell {
        border-left: none;
        padding: 12px 12px;
        align-items: flex-start;
        text-align: left;
    }
    .comp-cell.solo { border-right: 1px solid var(--border); }
    .comp-cell small { font-size: 10px; }
    .cell-mob-head { display: none; }
    .c-bad, .c-good { font-size: 12px; flex-wrap: wrap; gap: 4px; }

    .g-item { padding: 12px 20px; min-width: 160px; }
    .g-sep { display: none; }
    .guarantee-items { gap: 8px; }

    .cookie-banner { flex-direction: column; align-items: flex-start; padding: 16px 20px; }
    .cookie-actions { width: 100%; justify-content: flex-end; }

    .nav-container { padding: 0 20px; }
    .nav-links  { display: none; }
    .nav-cta    { display: none; }
    .nav-toggle { display: flex; }

    .process-steps { flex-direction: column; align-items: center; gap: 32px; }

    .process-connector {
        width: 2px;
        height: 36px;
        background: linear-gradient(to bottom, var(--teal), rgba(0, 180, 176, 0.15));
    }

    .process-connector::after {
        right: -4px;
        top: auto;
        bottom: -5px;
        border-top: none;
        border-right: none;
        border-bottom: 2px solid var(--teal);
        border-left: 2px solid var(--teal);
        transform: rotate(-45deg);
    }

    .dest-grid { display: none; }
    .dest-carousel { display: block; }

    /* Testimonials — carusel cu snap scroll pe mobile */
    .testimonials-grid {
        display: flex;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 16px;
        padding: 4px 20px 16px;
        margin: 0 -20px;
        align-items: stretch;
    }
    .testimonials-grid::-webkit-scrollbar { display: none; }

    .testimonials-grid .testimonial-card {
        scroll-snap-align: start;
        flex-shrink: 0;
        width: calc(100vw - 72px);
        grid-column: unset;
    }

    .testimonials-grid .testimonial-card:nth-child(4),
    .testimonials-grid .testimonial-card:nth-child(5) {
        grid-column: unset;
    }

    .testi-dots { display: flex; }

    .testi-text-card {
        padding: 28px 22px 22px;
    }
    .testi-deco-quote { font-size: 64px; margin: 0 0 10px; line-height: 1; }
    .testi-text-card .testimonial-text { font-size: 13px; line-height: 1.75; margin-bottom: 20px; }

    .testi-with-proof .testimonial-author { padding: 14px 18px; }
    .form-row           { grid-template-columns: 1fr; }

    .footer-grid        { grid-template-columns: 1fr; }
    .footer-brand       { grid-column: span 1; }

    .hero-ctas { flex-direction: column; gap: 12px; }
    .hero-ctas .btn-primary,
    .hero-ctas .btn-secondary { text-align: center; width: 100%; }
    .trust-sep { display: none; }

    /* Hero ocupă ecranul, conținut centrat vertical ținând cont de nav */
    .hero        { height: 100svh; min-height: 0; align-items: center; }
    .hero-content { padding: 80px 24px 40px; }
    .hero-tag     { margin-bottom: 14px; font-size: 10px; padding: 6px 16px; }
    .hero-title   { margin-bottom: 14px; }
    .hero-subtitle { margin-bottom: 24px; font-size: 15px; }

    /* Trust items: badge-uri stivuite vertical */
    .hero-trust {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 28px;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
        flex-wrap: unset;
    }
    .trust-sep { display: none; }
    .trust-item {
        flex-direction: row;
        gap: 12px;
        font-size: 13px;
        font-weight: 600;
        color: rgba(255,255,255,0.8);
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 12px;
        padding: 11px 16px;
        justify-content: flex-start;
        text-align: left;
    }
    .trust-item i { font-size: 15px; width: 18px; text-align: center; flex-shrink: 0; }

    /* iOS: previne zoom-ul la focus pe input < 16px */
    .form-group input,
    .form-group select,
    .form-group textarea { font-size: 16px; }

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

    .whatsapp-float { bottom: 20px; right: 16px; width: 44px; height: 44px; font-size: 20px; }

    .btn-primary.large { padding: 16px 36px; font-size: 15px; }
}

/* =====================================================
   GUIDE STRIP (Free guide lead magnet)
   ===================================================== */

.guide-strip {
    background: #f4f0e6;
    padding: 64px 0;
}

.guide-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.guide-strip-badge {
    display: inline-block;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    color: #9a7828;
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.guide-strip-title {
    font-family: var(--font-head);
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 800;
    color: #0d1b2a;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.guide-strip-sub {
    font-size: 14.5px;
    color: #5a6b7a;
    line-height: 1.75;
}

.guide-strip-perks {
    list-style: none;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.guide-strip-perks li {
    font-size: 14px;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
}

.guide-strip-perks li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c9a84c;
    flex-shrink: 0;
}

.guide-strip-btn {
    display: inline-block;
    background: #0d1b2a;
    color: #fff;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 40px;
    transition: background 0.2s, transform 0.15s;
}

.guide-strip-btn:hover {
    background: #c9a84c;
    color: #0d1b2a;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .guide-strip-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .guide-strip { padding: 48px 0; }
    .guide-strip-btn { display: block; text-align: center; }
}

/* ===================================================== */

@media (max-width: 480px) {
    .about-photo-wrap { width: 210px; height: 210px; }
    .pricing-card    { padding: 28px 22px; }
    .container       { padding: 0 16px; }
    .sim-controls, .sim-results { padding: 20px 14px; }
    .hero-title      { font-size: 34px; line-height: 1.08; }
    .hero-content    { padding: 72px 20px 36px; }
    .hero-trust .trust-item { font-size: 12px; }
}

/* ── PRICING TAGLINE ─────────────────────────────────── */
.pricing-tagline-main {
    font-family: var(--font-head);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

/* ── MOBILE GHID GRATUIT IN MENU ─────────────────────── */
.mobile-quiz-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--teal);
    border: 1.5px solid rgba(0,180,176,0.4);
    border-radius: 50px;
    padding: 10px 24px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.mobile-quiz-btn:hover { background: rgba(0,180,176,0.1); border-color: var(--teal); }

.mobile-ghid-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    border: 1.5px solid rgba(201,168,76,0.4);
    border-radius: 50px;
    padding: 10px 24px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.mobile-ghid-btn:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }

/* ── CONTACT STRIP MOBILE ────────────────────────────── */
@media (max-width: 768px) {
    .contact-strip .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .contact-strip-links { gap: 10px; }
    .contact-strip-btn { font-size: 12px; padding: 8px 14px; }
}

/* ── CITY CHIPS (smaller than country chips) ─────────── */
.dest-chip--sm {
    font-size: 12px;
    padding: 7px 13px;
}

/* ── CHIPS ȚĂRI PE MOBILE — wrap ca desktop, înălțime fixă ── */
@media (max-width: 768px) {
    /* Țările: wrap identic cu desktop-ul, min-height fix ca să nu sară layout-ul când schimbi continentul */
    .dest-chips--country {
        flex-wrap: wrap;
        min-height: 240px;
        align-content: flex-start;
        overflow: visible;
    }

    /* Chip-uri mai mari pentru touch */
    .dest-chip { padding: 9px 16px; font-size: 13px; min-height: 38px; }

    /* Simulator controls mai compact */
    .sim-controls { gap: 22px; }

    /* Slider thumb mai mare pe mobil */
    input[type="range"]::-webkit-slider-thumb { width: 24px; height: 24px; }

    /* Butoane grup (persoane / stil) mai mari pe touch */
    .group-btn { padding: 10px 14px; font-size: 13px; min-height: 40px; }

    /* Stil group pe mobil — 3 butoane pe un rând */
    .style-group { display: grid; grid-template-columns: repeat(3, 1fr); }
    .style-group .group-btn { text-align: center; }

    /* Section header mai compact pe mobil */
    .section-header { margin-bottom: 32px; }
    .section-header p { font-size: 14px; }

    /* Simulator label — letter-spacing mai mic pe mobile */
    .sim-label { letter-spacing: 1.2px; font-size: 10px; }

    /* Pricing cards — nu mai larg de viewport */
    .pricing-cards { max-width: 100%; }

    /* Footer links mai mari pe touch */
    .footer-links a { padding: 4px 0; display: inline-block; }

    /* Testimonials — prevent overflow */
    .testimonials { overflow: hidden; }

    /* Process step text */
    .process-step-title { font-size: 16px; }
    .process-step-desc  { font-size: 13px; }
}

@media (max-width: 480px) {
    /* Chip-uri continent compacte pe ecrane mici */
    #contChips .dest-chip { font-size: 12px; padding: 8px 12px; }

    /* Evită overflow orizontal pe pagină */
    .simulator { overflow: hidden; }
    .sim-wrapper { border-radius: 16px; }

    /* Hero trust items pe 480 — badge-uri, text lizibil */
    .trust-item { font-size: 12px; padding: 10px 14px; }
    .trust-item i { display: inline; }

    /* Saving chips pe rând */
    .sim-savings { gap: 10px; }
    .saving-chip { padding: 12px 14px; }
    .chip-val { font-size: 20px; }

    /* Recomandare simulator */
    .sim-rec-btn { white-space: nowrap; }
}

