/* ═══════════════════════════════════════════════
   SafeLife Landing V2
   ═══════════════════════════════════════════════ */

:root {
    --v2-green: #2A9D5E;
    --v2-green-dark: #218049;
    --v2-green-light: #e7f5ed;
    --v2-green-soft: #f0faf3;
    --v2-blue: #1d6df0;
    --v2-blue-dark: #1857c2;
    --v2-blue-light: #e7f0fd;
    --v2-blue-soft: #eef4fe;
    --v2-bg: #f5f6f7;
    --v2-white: #fff;
    --v2-text: #1a1a1a;
    --v2-text-muted: #8a8a8a;
    --v2-border: #ececec;
}

* { box-sizing: border-box; }

body.v2 {
    background: #fff;
    color: var(--v2-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.v2-main { flex: 1; display: flex; flex-direction: column; }

a { text-decoration: none; }
img { max-width: 100%; }

.v2-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── HEADER ────────────────────────────────── */
.v2-header {
    background: #fff;
    border-bottom: 1px solid var(--v2-border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.v2-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.v2-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--v2-text);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.v2-logo-box {
    height: 56px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v2-logo-img {
    height: 96px;
    width: auto;
    display: block;
}

.v2-logo-shield {
    width: 36px;
    height: 36px;
    background: var(--v2-green);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.v2-header-nav {
    display: flex;
    gap: 4px;
}

.v2-header-nav a {
    color: var(--v2-text);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
}
.v2-header-nav a:hover { color: var(--v2-green); }

.v2-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.v2-phone-block {
    text-align: right;
    line-height: 1.1;
    color: var(--v2-text);
}
.v2-phone-block strong {
    color: var(--v2-green);
    font-size: 18px;
    font-weight: 700;
    display: block;
}
.v2-phone-block small {
    color: var(--v2-text-muted);
    font-size: 10px;
}

.v2-btn-green {
    background: var(--v2-green);
    color: #fff !important;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}
.v2-btn-green:hover { background: var(--v2-green-dark); }
.v2-btn-green:disabled,
.v2-btn-green[disabled] {
    background: #cfd5d1 !important;
    color: #8a8a8a !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    pointer-events: none;
    opacity: 0.8;
}

.v2-btn-blue {
    background: var(--v2-blue);
    color: #fff !important;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}
.v2-btn-blue:hover { background: var(--v2-blue-dark); }

/* ── HERO ──────────────────────────────────── */
.v2-hero {
    padding: 32px 0 0;
    min-height: calc(100vh - 65px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}
.v2-hero > .v2-wrap {
    width: 100%;
}
.v2-hero .v2-hero-top {
    flex: 1;
    display: flex;
    align-items: center;
}

.v2-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.v2-hero h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.18;
    color: var(--v2-text);
    margin: 0 0 16px;
    letter-spacing: -0.8px;
}
.v2-hero h1 .green { color: var(--v2-green); }

.v2-typewriter {
    min-height: 168px;
}
.v2-tw-cursor {
    display: inline-block;
    width: 3px;
    height: 0.9em;
    background: var(--v2-text);
    margin-left: 4px;
    vertical-align: -3px;
    animation: v2-tw-blink 0.9s steps(2, start) infinite;
}
@keyframes v2-tw-blink {
    to { visibility: hidden; }
}

@media (max-width: 991px) {
    .v2-typewriter { min-height: 140px; }
}
@media (max-width: 575px) {
    .v2-typewriter { min-height: 130px; }
}

.v2-hero-desc {
    color: var(--v2-text-muted);
    font-size: 14px;
    margin: 0 0 24px;
    max-width: 480px;
}

.v2-hero-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.v2-hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--v2-text);
}

.v2-feature-dot {
    width: 22px;
    height: 22px;
    background: var(--v2-green);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    flex-shrink: 0;
}

.v2-feature-icon {
    color: var(--v2-green);
    font-size: 18px;
    width: 22px;
    text-align: center;
}

.v2-product-select-label {
    text-align: center;
    color: var(--v2-text-muted);
    font-size: 12px;
    margin: 0 0 12px;
}

.v2-product-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.v2-product-card {
    background: #fff;
    border: none;
    border-radius: 16px;
    padding: 28px 20px 24px;
    text-align: center;
    transition: all .2s ease;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.03);
}
.v2-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(42,157,94,0.14), 0 4px 12px rgba(0,0,0,0.05);
}

.v2-product-card-icon {
    width: 52px;
    height: 52px;
    background: var(--v2-green-light);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.v2-product-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--v2-text);
}

.v2-product-card p {
    color: var(--v2-text-muted);
    font-size: 11px;
    line-height: 1.4;
    margin: 0 0 14px;
    min-height: 30px;
}

.v2-product-card .v2-btn-green {
    display: block;
    width: 100%;
    padding: 9px;
}

/* ── COVERAGE ─────────────────────────────── */
.v2-coverage {
    border-top: 1px solid var(--v2-border);
    padding: 28px 0 20px;
}

.v2-coverage-title {
    text-align: center;
    color: var(--v2-text);
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 20px;
}

.v2-coverage-row {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 8px;
}

.v2-coverage-item {
    text-align: center;
    cursor: pointer;
    transition: transform .3s ease;
    padding: 8px 4px;
    border-radius: 12px;
    position: relative;
}

.v2-coverage-icon-wrap {
    color: var(--v2-green);
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    position: relative;
    z-index: 1;
    transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1), color .25s ease;
}

.v2-coverage-icon-wrap::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--v2-green-light);
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
    transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .25s ease;
    z-index: -1;
}

.v2-coverage-name {
    color: var(--v2-text-muted);
    font-size: 11px;
    line-height: 1.25;
    transition: color .25s ease, font-weight .25s ease;
}

/* Hover effects */
.v2-coverage-item:hover {
    transform: translateY(-4px);
}

.v2-coverage-item:hover .v2-coverage-icon-wrap {
    color: var(--v2-green-dark);
    transform: scale(1.2);
    animation: v2-icon-wiggle 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes v2-icon-wiggle {
    0%   { transform: scale(1) rotate(0); }
    18%  { transform: scale(1.28) rotate(-12deg); }
    36%  { transform: scale(1.15) rotate(10deg); }
    54%  { transform: scale(1.25) rotate(-6deg); }
    72%  { transform: scale(1.18) rotate(4deg); }
    100% { transform: scale(1.2) rotate(0); }
}

.v2-coverage-item:hover .v2-coverage-icon-wrap::before {
    transform: scale(1);
    opacity: 1;
}

.v2-coverage-item:hover .v2-coverage-name {
    color: var(--v2-text);
    font-weight: 600;
}

/* ── CTA BANNER ───────────────────────────── */
.v2-cta-wrap { padding: 0 0 24px; }

.v2-cta {
    background: var(--v2-green);
    border-radius: 14px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.v2-cta-text h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 4px;
}
.v2-cta-text p {
    color: rgba(255,255,255,0.85);
    margin: 0;
    font-size: 13px;
}

.v2-btn-white-call {
    background: #fff;
    color: var(--v2-green) !important;
    border-radius: 8px;
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
}
.v2-btn-white-call:hover { background: #f0faf3; }

/* ── CONTACT BAR ──────────────────────────── */
.v2-contact-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 22px 0;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--v2-text-muted);
}
.v2-contact-bar a {
    color: var(--v2-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.v2-contact-bar a:hover { color: var(--v2-green); }

.v2-social-icons {
    display: inline-flex;
    gap: 14px;
}
.v2-social-icons a { color: var(--v2-text-muted); font-size: 14px; }
.v2-social-icons a:hover { color: var(--v2-green); }

/* ── PRODUCT SECTION (Fərdi / Korporativ) ─ */
.v2-product-section {
    padding: 32px 0;
    background: #fff;
    min-height: calc(100vh - 65px);
    display: flex;
    align-items: center;
    scroll-margin-top: 65px;
}
.v2-product-section > .v2-wrap {
    width: 100%;
}

/* Section switch button (Fərdi ⇄ Korporativ) — smooth gradient border */
.v2-section-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 999px;
    color: var(--v2-text);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
    background-repeat: no-repeat, repeat-x;
    background-size: 100% 100%, 200% 100%;
    animation: v2-switch-border 5s linear infinite;
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
}

/* Korporativ-ə yönləndirən — YAŞIL gradient */
.v2-section-switch {
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg,
            #c4ecd4 0%,
            #2A9D5E 25%,
            #218049 50%,
            #2A9D5E 75%,
            #c4ecd4 100%
        ) border-box;
}

/* Fərdi-yə yönləndirən — MAVİ gradient */
.v2-section-switch.blue {
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg,
            #c1d6f7 0%,
            #1d6df0 25%,
            #1857c2 50%,
            #1d6df0 75%,
            #c1d6f7 100%
        ) border-box;
}

@keyframes v2-switch-border {
    0%   { background-position: 0 0, 0 0; }
    100% { background-position: 0 0, -200% 0; }
}

.v2-section-switch:hover {
    transform: translateY(-3px) scale(1.03);
}
.v2-section-switch i {
    transition: transform .25s ease;
    color: var(--v2-green);
}
.v2-section-switch.blue i { color: var(--v2-blue); }

.v2-section-switch-down { margin: 24px 0 0; }
.v2-section-switch-up { margin: 0 0 24px; }

.v2-product-section .v2-section-switch {
    align-self: center;
    display: inline-flex;
}
/* Center via wrapper */
.v2-product-section > .v2-wrap { text-align: center; }
.v2-product-section > .v2-wrap > * { text-align: left; }
.v2-product-section > .v2-wrap > a.v2-section-switch { text-align: center; }

html { scroll-behavior: smooth; }

.v2-product-card-big {
    background: #fff;
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}
.v2-product-card-big.blue-theme {
    background: #e7f0fc;
    box-shadow: 0 4px 32px rgba(29,109,240,0.10);
    border: 1px solid #d4e3f7;
}

.v2-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 32px;
    align-items: start;
}

.v2-product-section-title {
    color: var(--v2-green);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}
.v2-product-section-title.blue { color: var(--v2-blue); }

.v2-section-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 8px;
}

.v2-copy-link {
    background: transparent;
    border: 1.5px solid var(--v2-border);
    color: var(--v2-text-muted);
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all .2s ease;
    flex-shrink: 0;
    padding: 0;
}
.v2-copy-link:hover {
    background: var(--v2-green-light);
    border-color: var(--v2-green);
    color: var(--v2-green);
    transform: translateY(-1px);
}
.v2-copy-link.blue:hover {
    background: var(--v2-blue-light);
    border-color: var(--v2-blue);
    color: var(--v2-blue);
}
.v2-copy-link.copied {
    background: var(--v2-green-light);
    border-color: var(--v2-green);
    color: var(--v2-green);
}
.v2-copy-link.copied.blue {
    background: var(--v2-blue-light);
    border-color: var(--v2-blue);
    color: var(--v2-blue);
}

.v2-product-section-quote {
    color: var(--v2-text-muted);
    font-size: 13px;
    margin: 0 0 22px;
    font-style: italic;
}

.v2-product-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.v2-product-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--v2-text);
    line-height: 1.4;
}

.v2-bullet-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--v2-green);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 9px;
}
.v2-bullet-icon.blue { background: var(--v2-blue); }

/* Image skeleton — KIÇIK və SABİT ÖLÇÜLƏR */
.v2-image-area {
    display: flex;
    justify-content: center;
    padding: 0 8px 36px;
}

.v2-image-wrap {
    position: relative;
    width: 100%;
    max-width: 240px;
}

.v2-image-wrap.v2-image-wrap-lg .v2-real-image {
    transform: scale(1.1);
}


.v2-img-skeleton {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #e8eaed 0%, #f3f5f7 50%, #e8eaed 100%);
    border-radius: 14px;
    position: relative;
}

.v2-img-skeleton::before {
    content: 'Şəkil yeri';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #b5b8bc;
    font-size: 12px;
    font-weight: 500;
}

.v2-image-frame {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
    line-height: 0;
}

.v2-real-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.v2-price-card {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    padding: 14px 24px;
    text-align: center;
    white-space: nowrap;
    animation: v2-price-float 3.5s ease-in-out infinite;
}

@keyframes v2-price-float {
    0%, 100% {
        translate: 0 0;
        box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    }
    50% {
        translate: 0 -10px;
        box-shadow: 0 16px 36px rgba(0,0,0,0.18);
    }
}
.v2-price-card .label {
    color: var(--v2-text-muted);
    font-size: 11px;
    margin-bottom: 2px;
}
.v2-price-card .amount {
    color: var(--v2-text);
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}
.v2-price-card .sub {
    color: var(--v2-text-muted);
    font-size: 11px;
    margin-top: 3px;
}

/* Form card */
.v2-calc-form {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: none;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06), 0 2px 12px rgba(0, 0, 0, 0.04);
}

.v2-calc-form.blue-theme {
    background: #fff;
    border: 1px solid #d4e3f7;
}

.v2-calc-form-title {
    color: var(--v2-text);
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 18px;
}

.v2-form-group { margin-bottom: 14px; }
.v2-form-group:last-child { margin-bottom: 0; }

.v2-form-label {
    display: block;
    color: var(--v2-text);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
}

.v2-required::after,
.v2-form-label.v2-required::after {
    content: ' *';
    color: #e53e3e;
    font-weight: 700;
}

.v2-form-control {
    width: 100%;
    background: var(--v2-bg);
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--v2-text);
    outline: none;
    transition: all .15s;
    font-family: inherit;
}
.v2-form-control:focus {
    background: #fff;
    border-color: var(--v2-green);
    box-shadow: 0 0 0 3px rgba(42,157,94,0.08);
}
.v2-calc-form.blue-theme .v2-form-control:focus {
    border-color: var(--v2-blue);
    box-shadow: 0 0 0 3px rgba(29,109,240,0.08);
}

select.v2-form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238a8a8a'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px;
    padding-right: 36px;
}

.v2-date-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238a8a8a'%3E%3Cpath d='M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20a2 2 0 002 2h14a2 2 0 002-2V6a2 2 0 00-2-2zm0 16H5V10h14v10zM9 14H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px;
    padding-right: 36px;
    cursor: pointer;
}

.v2-radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.v2-radio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--v2-text);
}
.v2-radio-item input[type=radio] {
    accent-color: var(--v2-green);
    width: 16px;
    height: 16px;
    margin: 0;
}
.v2-calc-form.blue-theme .v2-radio-item input[type=radio] {
    accent-color: var(--v2-blue);
}

.v2-btn-form {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    margin-top: 4px;
}

/* Info strip (alt) */
.v2-info-strip {
    background: var(--v2-green-soft);
    border-radius: 10px;
    padding: 14px 20px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.v2-info-strip-icon {
    width: 32px;
    height: 32px;
    background: var(--v2-green-light);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--v2-green);
    flex-shrink: 0;
}

.v2-info-strip-text strong {
    color: var(--v2-text);
    font-size: 13px;
    display: block;
    margin-bottom: 2px;
}
.v2-info-strip-text small {
    color: var(--v2-text-muted);
    font-size: 12px;
}

/* Korporativ benefits strip */
.v2-benefits-strip {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.v2-benefits-strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--v2-text);
}

.v2-benefits-strip-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(29,109,240,0.10);
    color: var(--v2-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── FAQ ────────────────────────────────── */
.v2-faq-section {
    background: var(--v2-bg);
    padding: 56px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.v2-section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--v2-text);
    margin: 0 0 12px;
    letter-spacing: -0.4px;
}
.v2-section-accent {
    width: 40px;
    height: 3px;
    background: var(--v2-green);
    border-radius: 2px;
    margin: 0 auto 32px;
}
.v2-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: start;
}
.v2-faq-item {
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: 10px;
    padding: 16px 20px;
    transition: border-color .2s, box-shadow .2s;
}
.v2-faq-item.open {
    border-color: var(--v2-green-light);
    box-shadow: 0 4px 20px rgba(42,157,94,0.08);
}
.v2-faq-q {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--v2-text);
}
.v2-faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--v2-green-light);
    color: var(--v2-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 1px;
    transition: transform .3s ease;
}
.v2-faq-item.open .v2-faq-icon {
    transform: rotate(45deg);
}
.v2-faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .35s ease;
    padding-left: 34px;
    font-size: 12px;
    color: var(--v2-text-muted);
    line-height: 1.5;
}
.v2-faq-a > div {
    overflow: hidden;
    min-height: 0;
}
.v2-faq-a > div > div {
    padding-top: 12px;
}
.v2-faq-item.open .v2-faq-a {
    grid-template-rows: 1fr;
}

/* ── Zəng formu ─────────────────────────── */
.v2-callme-section {
    background: var(--v2-bg);
    padding: 56px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.v2-muraciet-section {
    background: var(--v2-bg);
    padding: 40px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.v2-muraciet-summary {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    background: #fff;
    border-radius: 14px;
    padding: 18px 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid var(--v2-border);
}

.v2-muraciet-summary-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 6px 0 6px 14px;
    border-left: 3px solid var(--v2-green);
}

.v2-muraciet-summary-item .label {
    font-size: 11px;
    color: var(--v2-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 500;
}

.v2-muraciet-summary-item .value {
    font-size: 15px;
    font-weight: 700;
    color: var(--v2-text);
}

/* Editable controls within summary */
.v2-muraciet-control {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--v2-text);
    cursor: pointer;
    font-family: inherit;
    outline: none;
    width: 100%;
    appearance: none;
}
.v2-muraciet-control:focus {
    color: var(--v2-green);
}
select.v2-muraciet-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232A9D5E'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 16px;
    padding-right: 20px;
}

/* Price highlight column */
.v2-muraciet-summary-price {
    background: linear-gradient(135deg, var(--v2-green-light), #fff);
    border-radius: 10px;
    border-left: 3px solid var(--v2-green-dark);
    padding: 10px 14px;
}
.v2-muraciet-summary-price .value {
    color: var(--v2-green);
    font-size: 18px;
}

@media (max-width: 991px) {
    .v2-muraciet-summary { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 575px) {
    .v2-muraciet-summary { grid-template-columns: 1fr 1fr; }
    .v2-muraciet-summary-price { grid-column: span 2; }
}
.v2-callme-wrap {
    max-width: 540px;
    margin: 0 auto;
}

.v2-callme-wrap-wide {
    max-width: 720px;
}

.v2-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.v2-form-row .v2-form-group { margin-bottom: 14px; }

@media (max-width: 575px) {
    .v2-form-row { grid-template-columns: 1fr; gap: 0; }
}

/* FAQ link və mobil telefon — yalnız tablet və mobildə görünür */
.v2-faq-link-bottom,
.v2-phone-mobile {
    display: none;
    color: var(--v2-text-muted);
    font-size: 13px;
    align-items: center;
    gap: 6px;
    text-align: center;
}
.v2-faq-link-bottom:hover { color: var(--v2-green); }

.v2-phone-mobile {
    flex-direction: column;
    line-height: 1.1;
    gap: 2px;
}
.v2-phone-mobile strong {
    color: var(--v2-green);
    font-size: 18px;
    font-weight: 700;
}
.v2-phone-mobile small {
    color: var(--v2-text-muted);
    font-size: 10px;
}

@media (max-width: 991px) {
    .v2-contact-bar {
        flex-wrap: wrap;
        gap: 10px 18px;
        padding: 16px 0;
        border-top: 1px solid var(--v2-border);
        margin-top: 24px;
        justify-content: center;
    }
    .v2-phone-mobile {
        display: inline-flex;
        order: 4;
        flex-basis: 100%;
        justify-content: center;
        margin-top: 6px;
    }
    .v2-phone-mobile strong { font-size: 16px; }
    .v2-phone-mobile small { font-size: 10px; }
    .v2-contact-bar > a[href^="tel:"]:not(.v2-phone-mobile) { order: 0; font-size: 13px; }
    .v2-contact-bar > a[href^="mailto:"] { order: 1; font-size: 13px; }
    .v2-faq-link-bottom {
        display: inline-flex;
        order: 2;
        font-size: 13px;
        flex-basis: 100%;
        justify-content: center;
    }
    .v2-social-icons {
        order: 3;
        gap: 18px;
        flex-basis: 100%;
        justify-content: center;
        margin-bottom: 4px;
    }
    .v2-social-icons a { font-size: 16px; }

    /* Header-də telefon blokunu gizlət */
    .v2-header .v2-phone-block { display: none; }
}

/* Alert */
#v2_alert {
    position: fixed;
    bottom: 24px;
    left: 50%;
    z-index: 9999;
    min-width: 280px;
    max-width: 90vw;
    padding: 14px 44px 14px 18px;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    box-shadow: 0 10px 32px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-50%) translateY(40px);
    pointer-events: none;
    transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .25s ease;
}
#v2_alert.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}
.v2-alert-icon {
    font-size: 18px;
    flex-shrink: 0;
}
.v2-alert-msg {
    flex: 1;
    line-height: 1.4;
    word-break: break-word;
}
.v2-alert-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    cursor: pointer;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 14px;
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}
.v2-alert-close:hover { background: rgba(255,255,255,0.3); }
.v2-alert-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255,255,255,0.7);
    width: 100%;
    transform-origin: left;
}
#v2_alert.show .v2-alert-progress {
    animation: v2-alert-progress 5s linear forwards;
}
@keyframes v2-alert-progress {
    from { transform: scaleX(1); }
    to   { transform: scaleX(0); }
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 991px) {
    .v2-hero-grid { grid-template-columns: 1fr; }
    .v2-hero h1 { font-size: 30px; }
    .v2-product-grid { grid-template-columns: 1fr; gap: 28px; }
    .v2-product-card-big { padding: 24px; }
    .v2-coverage-row { grid-template-columns: repeat(4, 1fr); }
    .v2-benefits-strip { grid-template-columns: 1fr 1fr; }
    .v2-faq-grid { grid-template-columns: 1fr; }
    .v2-header-nav { display: none; }
}

@media (max-width: 575px) {
    .v2-wrap { padding: 0 16px; }
    .v2-hero { padding: 24px 0 0; min-height: auto; }
    .v2-product-section, .v2-faq-section, .v2-callme-section { min-height: auto; }
    .v2-hero h1 { font-size: 24px; }
    .v2-product-card-big { padding: 18px; }
    .v2-coverage-row { grid-template-columns: repeat(3, 1fr); }
    .v2-benefits-strip { grid-template-columns: 1fr; }
    .v2-product-cards-grid { grid-template-columns: 1fr; gap: 16px; }

    /* Mobil: ikon sol, mətn sağ, button alt */
    .v2-product-card {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto auto;
        gap: 4px 16px;
        text-align: left;
        padding: 20px;
        align-items: center;
    }
    .v2-product-card-icon {
        grid-column: 1;
        grid-row: 1 / span 2;
        margin: 0;
        border-radius: 12px;
        width: 56px;
        height: 56px;
        align-self: center;
    }
    .v2-product-card h3 {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
        align-self: end;
        font-size: 18px;
    }
    .v2-product-card p {
        grid-column: 2;
        grid-row: 2;
        margin: 0;
        align-self: start;
        min-height: 0;
        font-size: 13px;
    }
    .v2-product-card .v2-btn-green {
        grid-column: 1 / -1;
        grid-row: 3;
        margin-top: 12px;
        padding: 14px;
        font-size: 15px;
    }
    .v2-cta { padding: 20px; flex-direction: column; text-align: center; }
    /* Şəkil mobil-də horizontal (landscape) */
    .v2-image-area { padding: 0 0 32px; }
    .v2-image-wrap { max-width: 100%; }
    .v2-img-skeleton {
        height: 200px;
        width: 100%;
        border-radius: 16px;
    }
    .v2-real-image {
        height: 200px;
        border-radius: 16px;
    }
    /* Yalnız Fərdi mobil: üzlər görünsün */
    .v2-image-wrap.v2-image-wrap-lg .v2-real-image {
        object-position: center 22%;
        transform: none;
    }
    .v2-price-card {
        bottom: 14px;
        left: 14px;
        transform: none;
        text-align: left;
        padding: 12px 18px;
        border-radius: 10px;
    }
    .v2-price-card .amount { font-size: 20px; }
    .v2-header-nav { display: none; }

    /* Mobil header */
    .v2-header { padding: 10px 0; }
    .v2-header-inner { flex-wrap: nowrap; gap: 10px; }
    .v2-logo-shield { width: 32px; height: 32px; }
    .v2-logo-box { height: 40px; }
    .v2-logo-img { height: 70px; }
    .v2-logo span:not(.v2-logo-shield) { font-size: 13px; }
    .v2-header-nav { display: none; }
    .v2-header-actions { gap: 10px; }
    .v2-btn-green { padding: 8px 12px; font-size: 12px; }
}
