@font-face {
    font-family: "Kahroba";
    src: url("../fonts/Kahroba-VF.woff2") format("woff2");
    font-display: swap;
    font-weight: 100 900;
}

@font-face {
    font-family: "Kahroba FD";
    src: url("../fonts/Kahroba-VF-FD.woff2") format("woff2");
    font-display: swap;
    font-weight: 100 900;
}

@font-face {
    font-family: "Kahroba OA";
    src: url("../fonts/Kahroba-VF-OA.woff2") format("woff2");
    font-display: swap;
    font-weight: 100 900;
}

:root {
    --bg: #ffffff;
    --surface: rgba(255, 255, 255, 0.56);
    --surface-strong: rgba(255, 255, 255, 0.8);
    --surface-solid: #ffffff;
    --line: rgba(148, 163, 184, 0.2);
    --line-strong: rgba(148, 163, 184, 0.35);
    --text: #151821;
    --muted: #5d6472;
    --muted-2: #7f8796;

    --pastel-blue: #bfe6ff;
    --pastel-green: #cff7d8;
    --pastel-red: #ffd1d8;
    --pastel-orange: #ffdcb8;
    --pastel-violet: #dccfff;
    --pastel-sky: #d9f4ff;
    --pastel-mint: #d7f8ee;
    --pastel-peach: #ffe6d5;

    --primary: #83cfff;
    --primary-strong: #4ab6ff;
    --secondary: #8de0b0;
    --accent: #ffae91;
    --danger: #ff7d97;
    --success: #4caf7d;

    --shadow-sm: 0 10px 30px rgba(34, 41, 57, 0.05);
    --shadow-md: 0 18px 50px rgba(34, 41, 57, 0.08);
    --shadow-lg: 0 28px 80px rgba(34, 41, 57, 0.12);

    --radius-xs: 14px;
    --radius-sm: 18px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-xl: 40px;

    --blur: 20px;
    --transition: 240ms ease;
    --container: 1240px;
}

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

html {
    scroll-behavior: smooth;
}

body.kardon-body {
    margin: 0;
    direction: rtl;
    font-family: "Kahroba", "Kahroba FD", "Kahroba OA", Vazirmatn, Tahoma, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 10%, rgba(191, 230, 255, 0.45), transparent 24%),
        radial-gradient(circle at 85% 14%, rgba(207, 247, 216, 0.45), transparent 20%),
        radial-gradient(circle at 20% 78%, rgba(255, 220, 184, 0.42), transparent 24%),
        radial-gradient(circle at 88% 80%, rgba(255, 209, 216, 0.36), transparent 20%),
        linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

body.modal-opened {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    font-family: inherit;
}

.container {
    max-width: var(--container);
}

.object-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.d-none {
    display: none !important;
}

.page-orbs {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    opacity: 0.6;
    transition: transform 0.35s ease;
}

.orb-1 {
    width: 320px;
    height: 320px;
    top: 40px;
    right: -40px;
    background: radial-gradient(circle, rgba(191, 230, 255, 0.85), rgba(191, 230, 255, 0.12));
}

.orb-2 {
    width: 260px;
    height: 260px;
    left: -70px;
    top: 520px;
    background: radial-gradient(circle, rgba(255, 220, 184, 0.8), rgba(255, 220, 184, 0.08));
}

.orb-3 {
    width: 280px;
    height: 280px;
    right: 8%;
    top: 58%;
    background: radial-gradient(circle, rgba(207, 247, 216, 0.82), rgba(207, 247, 216, 0.08));
}

.orb-4 {
    width: 230px;
    height: 230px;
    left: 10%;
    bottom: 2%;
    background: radial-gradient(circle, rgba(255, 209, 216, 0.8), rgba(255, 209, 216, 0.08));
}

.page-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(17, 24, 39, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 24, 39, 0.025) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: radial-gradient(circle at center, black 28%, transparent 86%);
    -webkit-mask-image: radial-gradient(circle at center, black 28%, transparent 86%);
    opacity: 0.4;
}

.site-shell {
    position: relative;
    z-index: 2;
}


.glass-panel {
    position: relative;
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.72);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    overflow: hidden;
}

.glass-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.08));
}

.glass-random-green::after,
.glass-random-orange::after,
.glass-random-red::after,
.glass-random-blue::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 999px;
    top: -38px;
    left: -30px;
    filter: blur(16px);
    opacity: 0.8;
}

.glass-random-green::after {
    background: rgba(141, 224, 176, 0.42);
}

.glass-random-orange::after {
    background: rgba(255, 174, 145, 0.38);
}

.glass-random-red::after {
    background: rgba(255, 125, 151, 0.3);
}

.glass-random-blue::after {
    background: rgba(131, 207, 255, 0.34);
}

.glass-xl {
    border-radius: var(--radius-xl);
}

.glass-lg {
    border-radius: var(--radius-lg);
}

.glass-md {
    border-radius: var(--radius-md);
}

.glass-sm {
    border-radius: var(--radius-sm);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 16px 0;
    transition: var(--transition);
}

.site-header.is-scrolled {
    padding: 10px 0;
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
}

.brand-logo-img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(34, 41, 57, 0.08);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.15;
}

.brand-copy strong {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--text);
}

.brand-copy small {
    margin-top: 3px;
    font-size: 0.82rem;
    color: var(--muted);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-actions {
    display: none;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.hamburger-btn {
    background: transparent;
    border: 0;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0 8px;
}

.hamburger-btn span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: #253041;
}



.btn-kardon,
.btn-kardon-outline,
.btn-kardon-ghost,
.btn-purple-glow {
    border: 0;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-kardon {
    color: #1a1f2b;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255,255,255,0.16)),
        linear-gradient(135deg, var(--pastel-orange), var(--pastel-red));
    box-shadow: 0 16px 34px rgba(255, 153, 120, 0.22);
}

.btn-kardon:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(255, 153, 120, 0.26);
    color: #151821;
}

.btn-kardon-outline {
    color: var(--text);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(16px);
}

.btn-kardon-outline:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.92);
}

.btn-kardon-ghost {
    min-height: 42px;
    padding: 0 10px;
    background: transparent;
    color: var(--muted);
}

.btn-kardon-ghost:hover {
    color: var(--text);
}

.btn-purple-glow {
    position: relative;
    background: linear-gradient(45deg, #8a2be2, #d100d1);
    color: #fff;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
    animation: pulse-purple 2s infinite;
    overflow: hidden;
}

.btn-purple-glow:hover {
    transform: translateY(-2px);
}

.btn-purple-glow .stars {
    font-size: 1.1rem;
    animation: twinkle 1.5s infinite alternate;
}

.hero {
    position: relative;
    padding: 42px 0 58px;
}

.creative-hero {
    overflow: hidden;
}

.hero-container {
    position: relative;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 34px;
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    max-width: 820px;
    padding-top: 28px;
}

.hero-eyebrow {
    width: fit-content;
    margin-bottom: 18px;
    position: relative;
    z-index: 3;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-sm);
    color: #1c2432;
    font-size: 0.88rem;
    font-weight: 800;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.eyebrow-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-strong), var(--secondary));
    box-shadow: 0 0 0 6px rgba(131, 207, 255, 0.14);
}

.hero-title {
    position: relative;
    z-index: 3;
    margin: 0 0 28px;
    color: var(--text);
    font-weight: 950;
    letter-spacing: -0.085em;
}

.hero-title-wide {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.95rem, 2.75vw, 3rem);
    line-height: 1.08;
    white-space: nowrap;
}

.gradient-text {
    background: linear-gradient(135deg, #3aaef7, #65c8a0, #ff9b7c, #ff7f9f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text {
    position: relative;
    z-index: 3;
    margin: 0;
    color: var(--muted);
}

.hero-text-wide {
    max-width: 720px;
    font-size: 1.08rem;
    line-height: 2;
}


.hero-actions {
    position: relative;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
    align-items: center;
}

.hero-actions-refined {
    align-items: stretch;
}

.hero-primary-btn {
    min-height: 70px;
    padding: 0 28px;
    font-size: 1.02rem;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow:
        0 14px 34px rgba(209, 0, 209, 0.22),
        0 0 24px rgba(138, 43, 226, 0.16);
}

.btn-employer-entry {
    min-height: 70px;
    padding: 0 28px;
    border: 1px solid rgba(131, 207, 255, 0.30);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(191, 230, 255, 0.42), rgba(207, 247, 216, 0.34)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
    color: var(--text);
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 12px 28px rgba(131, 207, 255, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn-employer-entry:hover {
    transform: translateY(-2px);
    border-color: rgba(74, 182, 255, 0.42);
    box-shadow:
        0 16px 34px rgba(131, 207, 255, 0.16),
        0 0 20px rgba(141, 224, 176, 0.08);
}

.btn-employer-entry-text {
    position: relative;
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 560px;
}

.hero-visual-clean {
    background: transparent;
}

.hero-image-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrap-clean {
    background: transparent;
}

.hero-main-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-main-img-clean {
    max-width: 680px;
    filter: drop-shadow(0 18px 40px rgba(34, 41, 57, 0.07));
}

.hero-visual-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(28px);
    opacity: 0.82;
    pointer-events: none;
}

.hero-visual-glow-blue {
    width: 210px;
    height: 210px;
    top: 42px;
    right: 48px;
    background: rgba(131, 207, 255, 0.18);
}

.hero-visual-glow-orange {
    width: 180px;
    height: 180px;
    left: 36px;
    bottom: 80px;
    background: rgba(255, 174, 145, 0.16);
}

.hero-visual-glow-green {
    width: 170px;
    height: 170px;
    left: 96px;
    top: 112px;
    background: rgba(141, 224, 176, 0.14);
}

.hero-floating-badges {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-float-card {
    position: absolute;
    min-width: 150px;
    max-width: 220px;
    min-height: 58px;
    padding: 12px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 14px 34px rgba(34, 41, 57, 0.05);
    opacity: 0.96;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-float-card::before {
    content: "";
    position: absolute;
    width: 76px;
    height: 76px;
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.42;
    z-index: 0;
}

.hero-float-card strong,
.hero-float-card span {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    text-align: center;
}

.hero-float-card strong {
    font-size: 0.92rem;
    font-weight: 900;
    color: var(--text);
}

.hero-float-card span {
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--muted);
}

.hero-float-card-1 {
    top: 28px;
    left: 18px;
    animation: heroFloatOne 7s ease-in-out infinite;
    background:
        linear-gradient(135deg, rgba(191, 230, 255, 0.62), rgba(255, 255, 255, 0.74));
}

.hero-float-card-1::before {
    top: -16px;
    left: -8px;
    background: rgba(131, 207, 255, 0.30);
}

.hero-float-card-2 {
    bottom: 20px;
    left: 15px;
    animation: heroFloatTwo 8s ease-in-out infinite;
    background:
        linear-gradient(135deg, rgba(207, 247, 216, 0.60), rgba(255, 255, 255, 0.74));
}

.hero-float-card-2::before {
    bottom: -18px;
    right: -8px;
    background: rgba(141, 224, 176, 0.28);
}

.hero-float-card-3 {
    top: 60px;
    right: 600px;
    animation: heroFloatThree 7.8s ease-in-out infinite;
    background:
        linear-gradient(135deg, rgba(255, 220, 184, 0.60), rgba(255, 255, 255, 0.74));
}

.hero-float-card-3::before {
    top: -12px;
    right: -10px;
    background: rgba(255, 174, 145, 0.28);
}

.hero-float-card-4 {
    bottom: 30px;
    right: 600px;
    animation: heroFloatFour 8.5s ease-in-out infinite;
    background:
        linear-gradient(135deg, rgba(220, 207, 255, 0.58), rgba(255, 255, 255, 0.74));
}

.hero-float-card-4::before {
    bottom: -16px;
    left: -10px;
    background: rgba(220, 207, 255, 0.24);
}


@keyframes heroFloatOne {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

@keyframes heroFloatTwo {
    0%, 100% {
        transform: translateY(0) rotate(1deg);
    }
    50% {
        transform: translateY(-12px) rotate(-1deg);
    }
}

@keyframes heroFloatThree {
    0%, 100% {
        transform: translateY(0) rotate(-1deg);
    }
    50% {
        transform: translateY(-9px) rotate(2deg);
    }
}

@keyframes heroFloatFour {
    0%, 100% {
        transform: translateY(0) rotate(2deg);
    }
    50% {
        transform: translateY(-11px) rotate(-1deg);
    }
}

@media (min-width: 1200px) {
    .hero-title-wide {
        white-space: nowrap;
        font-size: clamp(2rem, 2.7vw, 2.95rem);
    }
}

@media (max-width: 1199.98px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-visual {
        order: -1;
        min-height: 420px;
    }

    .hero-main-img-clean {
        max-width: 460px;
    }

    .hero-floating-badges {
        display: block;
    }

    .hero-title-wide {
        white-space: nowrap;
        font-size: clamp(1.6rem, 4vw, 2.8rem);
        line-height: 1.12;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding: 26px 0 40px;
    }

    .hero-grid {
        gap: 20px;
    }

    .hero-copy {
        text-align: right;
        padding-top: 10px;
    }

    .hero-eyebrow {
        margin-bottom: 14px;
    }

    .hero-title {
        margin-bottom: 20px;
    }

    .hero-text-wide {
        max-width: 100%;
        font-size: 0.96rem;
        line-height: 1.9;
    }

    .hero-actions {
        margin-top: 26px;
    }

    .hero-actions-refined {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-primary-btn,
    .btn-employer-entry {
        width: 100%;
        min-height: 60px;
        font-size: 0.96rem;
    }

    .hero-visual {
        min-height: 300px;
    }

    .hero-main-img-clean {
        max-width: 320px;
    }
}

@media (max-width: 575.98px) {
    .hero-title-wide {
        white-space: nowrap !important; 
        font-size: clamp(1rem, 4.2vw, 1.6rem);
        line-height: 1.16;
    }

    .hero-main-img-clean {
        max-width: 260px;
    }

    .hero-visual-glow-blue {
        width: 130px;
        height: 130px;
        top: 20px;
        right: 8px;
    }

    .hero-visual-glow-orange {
        width: 110px;
        height: 110px;
        left: 4px;
        bottom: 22px;
    }

    .hero-visual-glow-green {
        width: 100px;
        height: 100px;
        left: 34px;
        top: 52px;
    }
}
@media (max-width: 360px) {
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .hero-title-wide {
        white-space: nowrap !important;
        font-size: 4.2vw !important; 
    }
}


@media (max-width: 767.98px) {
    .hero-float-card {
        min-width: unset !important;
        width: max-content;
        max-width: 110px;
        min-height: auto;
        padding: 6px 10px;
        border-radius: 12px;
        bottom: auto !important; 
        transform: scale(0.9);
        white-space: normal !important; 
        word-wrap: break-word !important;
    }
    
    .hero-float-card strong {
        font-size: 0.75rem !important; 
        line-height: 1.4 !important; 
        display: block; 
    }
    .hero-float-card span {
        font-size: 0.65rem !important;
        line-height: 1.4 !important;
        display: block;
    }
    
    
    .hero-float-card-1 { 
        top: 2% !important; 
        left: 2% !important; 
    }
    
    .hero-float-card-2 { 
        top: 28% !important; 
        left: 2% !important; 
    }
    
    .hero-float-card-3 { 
        top: 10% !important; 
        right: 2% !important; 
    }
    
    .hero-float-card-4 { 
        top: 35% !important; 
        right: 2% !important; 
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
   
    .hero-float-card {
        bottom: auto !important; 
        max-width: 150px; 
        padding: 10px 14px;
    }
    
    .hero-float-card strong {
        font-size: 0.85rem !important;
    }
    
    .hero-float-card span {
        font-size: 0.75rem !important;
    }

    
    .hero-float-card-1 { 
        top: 5% !important; 
        left: 5% !important; 
    }

    .hero-float-card-2 { 
        top: 35% !important; 
        left: 2% !important; 
    }

    .hero-float-card-3 { 
        top: 10% !important; 
        right: 5% !important; 
    }

    .hero-float-card-4 { 
        top: 40% !important; 
        right: 2% !important; 
    }
}


.section {
    padding: 34px 0;
}

.section-head {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 24px;
}

.section-head h2 {
    margin: 0 0 10px;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: 1.25;
    font-weight: 900;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    line-height: 2;
    font-size: 1rem;
}

.why-kardon-section {
    position: relative;
    padding-top: 52px;
    padding-bottom: 56px;
}

.why-head {
    max-width: 790px;
    margin-inline: auto;
    margin-bottom: 34px;
}

.why-eyebrow {
    width: fit-content;
    margin-inline: auto;
    margin-bottom: 16px;
}

.why-title {
    margin: 0 0 14px;
    font-size: clamp(1.85rem, 3vw, 2.8rem);
    line-height: 1.3;
    font-weight: 950;
    letter-spacing: -0.03em;
    color: var(--text);
}

.why-subtitle {
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 2;
}

.why-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 24px;
    align-items: stretch;
}

.why-feature-card {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    padding: 20px 18px 16px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 42px rgba(34, 41, 57, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
    cursor: pointer;
    outline: none;
}

.why-feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.26), rgba(255,255,255,0.05));
    pointer-events: none;
}

.why-feature-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    top: -70px;
    left: -40px;
    border-radius: 999px;
    background: rgba(131, 207, 255, 0.30);
    filter: blur(28px);
    opacity: 0.9;
    pointer-events: none;
}

.why-feature-card:hover,
.why-feature-card:focus-visible {
    transform: translateY(-10px) scale(1.015);
    box-shadow: 0 28px 56px rgba(34, 41, 57, 0.10);
    border-color: rgba(131, 207, 255, 0.42);
    background: rgba(255, 255, 255, 0.92);
}

.why-feature-top,
.why-feature-content,
.why-feature-points {
    position: relative;
    z-index: 1;
}

.why-feature-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.why-feature-icon {
    width: 78px;
    height: 78px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.95rem;
    background: linear-gradient(135deg, var(--pastel-sky), #ffffff);
    border: 1px solid rgba(131, 207, 255, 0.54);
    box-shadow: 0 14px 28px rgba(131, 207, 255, 0.24);
    transition: transform 0.3s ease;
}

.why-feature-card:hover .why-feature-icon,
.why-feature-card:focus-visible .why-feature-icon {
    transform: scale(1.08) rotate(-6deg);
}

.why-feature-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(131, 207, 255, 0.26);
    color: var(--text);
    font-size: 0.84rem;
    font-weight: 850;
    box-shadow: var(--shadow-sm);
}

.why-feature-content h3 {
    margin: 0 0 14px;
    font-size: 1.45rem;
    line-height: 1.45;
    font-weight: 950;
    color: var(--text);
}

.why-feature-content p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 2.05;
}

.why-feature-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.why-point {
    padding: 16px 16px 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 24px rgba(34, 41, 57, 0.04);
}

.why-point strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.94rem;
    font-weight: 900;
    color: var(--text);
}

.why-point span {
    display: block;
    font-size: 0.84rem;
    line-height: 1.8;
    color: var(--muted);
}


.why-side-stack {
    display: grid;
    gap: 16px;
    align-content: start;
}

.why-mini-card {
    position: relative;
    overflow: hidden;
    min-height: auto;
    padding: 16px 10px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 34px rgba(34, 41, 57, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.why-mini-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 12px;
    z-index: 1;
}

.why-mini-content {
    z-index: 1;
    width: 100%;
}

.why-mini-content h3 {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.45;
    font-weight: 850;
    color: var(--text);
}

.why-mini-content p {
    display: none; 
}

.why-feature-card {
    transition: all 0.3s ease, opacity 0.3s ease !important;
}

.why-mini-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.24), rgba(255,255,255,0.05));
    pointer-events: none;
}

.why-mini-card:hover,
.why-mini-card:focus-visible {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 48px rgba(34, 41, 57, 0.09);
    background: rgba(255, 255, 255, 0.92);
}

.why-mini-card-orange:hover,
.why-mini-card-orange:focus-visible {
    border-color: rgba(255, 174, 145, 0.42);
}

.why-mini-card-green:hover,
.why-mini-card-green:focus-visible {
    border-color: rgba(141, 224, 176, 0.42);
}

.why-mini-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    top: -42px;
    left: -22px;
    border-radius: 999px;
    filter: blur(24px);
    opacity: 0.42;
    pointer-events: none;
}

.why-mini-card-orange .why-mini-glow {
    background: rgba(255, 174, 145, 0.30);
}

.why-mini-card-green .why-mini-glow {
    background: rgba(141, 224, 176, 0.28);
}

.why-mini-icon,
.why-mini-content {
    position: relative;
    z-index: 1;
}

.why-mini-icon {
    width: 66px;
    height: 66px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
    transition: transform 0.3s ease;
}

.why-mini-card-orange .why-mini-icon {
    background: linear-gradient(135deg, var(--pastel-orange), #ffffff);
    border: 1px solid rgba(255, 174, 145, 0.54);
    box-shadow: 0 12px 24px rgba(255, 174, 145, 0.22);
}

.why-mini-card-green .why-mini-icon {
    background: linear-gradient(135deg, var(--pastel-green), #ffffff);
    border: 1px solid rgba(141, 224, 176, 0.54);
    box-shadow: 0 12px 24px rgba(141, 224, 176, 0.22);
}

.why-mini-card:hover .why-mini-icon,
.why-mini-card:focus-visible .why-mini-icon {
    transform: scale(1.08) rotate(-5deg);
}

.why-mini-content h3 {
    margin: 0 0 10px;
    font-size: 1.08rem;
    line-height: 1.5;
    font-weight: 900;
    color: var(--text);
}

.why-mini-content p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.95;
    color: var(--muted);
}

@media (max-width: 1199.98px) {
    .why-layout {
        grid-template-columns: 1fr;
    }

    .why-side-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
    }
}

@media (max-width: 767.98px) {
    .why-kardon-section {
        padding-top: 30px;
        padding-bottom: 34px;
    }

    .why-head {
        margin-bottom: 24px;
    }

    .why-title {
        font-size: 1.55rem;
        line-height: 1.42;
    }

    .why-subtitle {
        font-size: 0.95rem;
        line-height: 1.9;
    }

    .why-layout,
    .why-layout-interactive {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .why-side-stack {
        order: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        margin-bottom: 4px;
    }

    .why-mini-card {
        flex: 0 0 auto;
        width: 72px;
        height: 72px;
        min-height: 72px;
        padding: 0;
        border-radius: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 24px rgba(34, 41, 57, 0.06);
    }

    .why-mini-content {
        display: none;
    }

    .why-mini-glow {
        width: 90px;
        height: 90px;
        top: -20px;
        left: -10px;
        filter: blur(18px);
        opacity: 0.5;
    }

    .why-mini-icon {
        width: 46px;
        height: 46px;
        margin: 0;
        border-radius: 16px;
        font-size: 1.2rem;
    }

    .why-mini-card.is-active {
        transform: scale(1.08);
        box-shadow: 0 16px 30px rgba(34, 41, 57, 0.12);
    }

    .why-mini-card-orange.is-active {
        border-color: rgba(255, 174, 145, 0.55);
        background: rgba(255, 245, 240, 0.95);
    }

    .why-mini-card-green.is-active {
        border-color: rgba(141, 224, 176, 0.55);
        background: rgba(241, 255, 246, 0.95);
    }

    .why-mini-card-blue.is-active {
        border-color: rgba(131, 207, 255, 0.55);
        background: rgba(241, 249, 255, 0.95);
    }

    .why-feature-card {
        order: 2;
        min-height: auto;
        padding: 18px 16px 16px;
        border-radius: 24px;
        gap: 18px;
    }

    .why-feature-top {
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .why-feature-icon {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        font-size: 1.45rem;
        flex-shrink: 0;
    }

    .why-feature-chip {
        min-height: 32px;
        padding: 0 12px;
        font-size: 0.74rem;
    }

    .why-feature-content h3 {
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: 10px;
    }

    .why-feature-content p {
        font-size: 0.88rem;
        line-height: 2;
    }

    .why-feature-points {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .why-point {
        padding: 14px;
        border-radius: 18px;
    }

    .why-point strong {
        font-size: 0.88rem;
    }

    .why-point span {
        font-size: 0.8rem;
        line-height: 1.8;
    }
}


.why-layout-interactive {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: stretch;
}

.why-side-stack {
    display: grid;
    gap: 18px;
    align-content: start;
}

.why-mini-card,
.why-feature-card {
    cursor: pointer;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        opacity 0.3s ease;
}

.why-mini-card {
    position: relative;
    overflow: hidden;
    min-height: 168px;
    padding: 22px 20px 20px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 34px rgba(34, 41, 57, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.why-mini-card:hover,
.why-mini-card:focus-visible {
    transform: translateY(-6px);
    box-shadow: 0 22px 42px rgba(34, 41, 57, 0.08);
}

.why-mini-card.is-active {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 48px rgba(34, 41, 57, 0.10);
}

.why-mini-card-blue.is-active {
    border-color: rgba(131, 207, 255, 0.45);
}

.why-mini-card-orange.is-active {
    border-color: rgba(255, 174, 145, 0.45);
}

.why-mini-card-green.is-active {
    border-color: rgba(141, 224, 176, 0.45);
}

.why-mini-card-blue .why-mini-glow {
    background: rgba(131, 207, 255, 0.26);
}

.why-mini-card-orange .why-mini-glow {
    background: rgba(255, 174, 145, 0.26);
}

.why-mini-card-green .why-mini-glow {
    background: rgba(141, 224, 176, 0.24);
}

.why-mini-glow {
    position: absolute;
    width: 130px;
    height: 130px;
    top: -38px;
    left: -24px;
    border-radius: 999px;
    filter: blur(22px);
    opacity: 0.55;
    pointer-events: none;
}

.why-mini-icon,
.why-mini-content {
    position: relative;
    z-index: 1;
}

.why-mini-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    margin-bottom: 16px;
}

.why-mini-card-blue .why-mini-icon {
    background: linear-gradient(135deg, var(--pastel-sky), #ffffff);
    border: 1px solid rgba(131, 207, 255, 0.5);
    box-shadow: 0 10px 22px rgba(131, 207, 255, 0.22);
}

.why-mini-card-orange .why-mini-icon {
    background: linear-gradient(135deg, var(--pastel-orange), #ffffff);
    border: 1px solid rgba(255, 174, 145, 0.5);
    box-shadow: 0 10px 22px rgba(255, 174, 145, 0.2);
}

.why-mini-card-green .why-mini-icon {
    background: linear-gradient(135deg, var(--pastel-green), #ffffff);
    border: 1px solid rgba(141, 224, 176, 0.5);
    box-shadow: 0 10px 22px rgba(141, 224, 176, 0.2);
}

.why-mini-content h3 {
    margin: 0 0 8px;
    font-size: 1.02rem;
    line-height: 1.5;
    font-weight: 900;
    color: var(--text);
}

.why-mini-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--muted);
}


.why-feature-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 30px 28px 24px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 42px rgba(34, 41, 57, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.24), rgba(255,255,255,0.05));
    pointer-events: none;
}

.why-feature-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    top: -60px;
    left: -36px;
    border-radius: 999px;
    filter: blur(28px);
    opacity: 0.9;
    pointer-events: none;
    background: rgba(255, 174, 145, 0.22);
    transition: background 0.3s ease;
}

.why-feature-theme-blue .why-feature-glow {
    background: rgba(131, 207, 255, 0.24);
}

.why-feature-theme-orange .why-feature-glow {
    background: rgba(255, 174, 145, 0.22);
}

.why-feature-theme-green .why-feature-glow {
    background: rgba(141, 224, 176, 0.22);
}

.why-feature-top,
.why-feature-content,
.why-feature-points {
    position: relative;
    z-index: 1;
}

.why-feature-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.why-feature-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(148, 163, 184, 0.16);
    font-size: 0.84rem;
    font-weight: 850;
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.why-feature-icon {
    width: 74px;
    height: 74px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    transition: all 0.3s ease;
}

.why-feature-theme-blue .why-feature-icon {
    background: linear-gradient(135deg, var(--pastel-sky), #ffffff);
    border: 1px solid rgba(131, 207, 255, 0.54);
    box-shadow: 0 12px 24px rgba(131, 207, 255, 0.22);
}

.why-feature-theme-orange .why-feature-icon {
    background: linear-gradient(135deg, var(--pastel-orange), #ffffff);
    border: 1px solid rgba(255, 174, 145, 0.54);
    box-shadow: 0 12px 24px rgba(255, 174, 145, 0.22);
}

.why-feature-theme-green .why-feature-icon {
    background: linear-gradient(135deg, var(--pastel-green), #ffffff);
    border: 1px solid rgba(141, 224, 176, 0.54);
    box-shadow: 0 12px 24px rgba(141, 224, 176, 0.22);
}

.why-feature-content h3 {
    margin: 0 0 14px;
    font-size: 1.42rem;
    line-height: 1.5;
    font-weight: 950;
    color: var(--text);
}

.why-feature-content p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 2.05;
}

.why-feature-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.why-point {
    padding: 16px 16px 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 22px rgba(34, 41, 57, 0.04);
}

.why-point strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.94rem;
    font-weight: 900;
    color: var(--text);
}

.why-point span {
    display: block;
    font-size: 0.84rem;
    line-height: 1.8;
    color: var(--muted);
}

@media (max-width: 1199.98px) {
    .why-layout-interactive {
        grid-template-columns: 1fr;
    }
}


.why-mobile-tabs {
    display: none;
}

@media (max-width: 767.98px) {
    .why-side-stack {
        display: none !important;
    }

    .why-mobile-tabs {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        order: 1;
        width: 100%;
    }

    .why-mobile-tab {
        appearance: none;
        border: 1px solid rgba(255, 255, 255, 0.88);
        background: rgba(255, 255, 255, 0.74);
        box-shadow: 0 10px 24px rgba(34, 41, 57, 0.06);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-radius: 18px;
        min-height: 96px;
        padding: 10px 6px 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        text-align: center;
        transition: all 0.25s ease;
    }

    .why-mobile-tab.is-active {
        transform: scale(1.04);
        box-shadow: 0 16px 30px rgba(34, 41, 57, 0.12);
    }

    .why-mobile-tab-icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        flex-shrink: 0;
        background: #fff;
    }

    .why-mobile-tab:nth-child(1) .why-mobile-tab-icon {
        background: linear-gradient(135deg, var(--pastel-orange), #ffffff);
        border: 1px solid rgba(255, 174, 145, 0.5);
        box-shadow: 0 10px 22px rgba(255, 174, 145, 0.2);
    }

    .why-mobile-tab:nth-child(2) .why-mobile-tab-icon {
        background: linear-gradient(135deg, var(--pastel-green), #ffffff);
        border: 1px solid rgba(141, 224, 176, 0.5);
        box-shadow: 0 10px 22px rgba(141, 224, 176, 0.2);
    }

    .why-mobile-tab:nth-child(3) .why-mobile-tab-icon {
        background: linear-gradient(135deg, var(--pastel-sky), #ffffff);
        border: 1px solid rgba(131, 207, 255, 0.5);
        box-shadow: 0 10px 22px rgba(131, 207, 255, 0.22);
    }

    .why-mobile-tab-title {
        display: block;
        font-size: 0.64rem;
        line-height: 1.35;
        font-weight: 800;
        color: var(--text);
        text-align: center;
        word-break: break-word;
    }

    .why-feature-card {
        order: 2;
    }
}

.cta-panel {
    padding: 32px;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.cta-title {
    margin: 16px 0 14px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 950;
    line-height: 1.3;
    color: var(--text);
}

.cta-desc {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--muted);
    text-align: justify;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cta-stats-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.cta-stat-box {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: 30px;
    padding: 36px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 220px;
    box-shadow: 0 10px 40px rgba(34, 41, 57, 0.04);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.cta-stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(34, 41, 57, 0.08);
    background: #fff;
}

.stat-ring-clean {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 900;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    position: relative;
    z-index: 1;
}

.stat-ring-clean::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    z-index: -1;
    opacity: 0.65;
}

.glow-orange-soft::before {
    background: linear-gradient(135deg, #fff, #ffe6d5);
}

.glow-green-soft::before {
    background: linear-gradient(135deg, #fff, #cff7d8);
}

.cta-stat-box h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 900;
    color: var(--text);
}

.faq-slider-wrapper {
    width: 100%;
    position: relative;
    padding: 40px 0; 
}

.faq-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    align-items: flex-start;
    gap: 24px;
    padding: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-card-item {
    width: auto;
    min-width: 300px;
    max-width: 450px;
    flex-grow: 1; 
    
    border-radius: 32px; 
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(34, 41, 57, 0.05);
    backdrop-filter: blur(10px);
    
    display: flex;
    flex-direction: column;
    overflow: hidden; 
    
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-radius 0.4s ease;
}

@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}


.faq-card-item:nth-child(1) { 
    background: #f0f7ff; 
    animation: floatAnimation 6s ease-in-out infinite; 
}
.faq-card-item:nth-child(2) { 
    background: #fff0f5; 
    animation: floatAnimation 7s ease-in-out infinite 1s; 
}

.faq-card-item:nth-child(3) { 
    background: #f0fff4; 
    animation: floatAnimation 5.5s ease-in-out infinite 0.5s; 
}

.faq-card-item:nth-child(4) { 
    background: #fffcf0; 
    animation: floatAnimation 8s ease-in-out infinite 2s; 
}

.faq-card-item:nth-child(5) { 
    background: #f5f0ff; 
    animation: floatAnimation 6.5s ease-in-out infinite 1.5s; 
}

.faq-card-item:hover,
.faq-card-item.is-open {
    animation-play-state: paused;
    box-shadow: 0 16px 40px rgba(34, 41, 57, 0.12);
    z-index: 10; 
}

.faq-card-item.is-open {
    border-radius: 32px 32px 20px 20px;
}

.faq-card-summary {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center; 
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: right;
    font-family: inherit;
    outline: none;
    gap: 16px;
    min-height: 80px; 
}

.faq-card-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.5;
    margin: 0;
}

.faq-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--text);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: rgba(255, 255, 255, 0.6); 
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-card-item.is-open .faq-icon {
    transform: rotate(45deg);
    background: #ff7d97;
    color: white;
}

.faq-card-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card-item.is-open .faq-card-content { grid-template-rows: 1fr; }

.faq-content-inner {
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-card-item.is-open .faq-content-inner {
    opacity: 1;
}

.faq-content-inner p {
    padding: 0 24px 24px;
    margin: 0;
    color: var(--text); 
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 2;
    text-align: justify;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    padding-top: 16px;
}

.site-footer { padding: 40px 0; }
.footer-grid {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px; padding: 18px 24px;
}
.footer-brand-wrap { display: flex; align-items: center; gap: 16px; }
.footer-brand-mark {
    width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
    background: #fff; border-radius: 50%; box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}
.footer-brand-mark span { font-size: 1.2rem; font-weight: 900; color: #1a1f2b; }
.footer-copy p { margin: 0; font-weight: 800; font-family: sans-serif; letter-spacing: 0.5px; color: var(--muted); }
.footer-copy span { font-size: 1.1rem; color: var(--text); }

.bale-link {
    display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px;
    background: rgba(255, 255, 255, 0.7); border: 1px solid rgba(131, 207, 255, 0.4);
    border-radius: 999px; font-weight: 850; color: #1a1f2b; font-size: 0.95rem;
    transition: all 0.3s ease; text-decoration: none;
}
.bale-link .link-icon { font-size: 1.1rem; transition: transform 0.3s ease; }
.bale-link:hover {
    background: #fff; border-color: #83cfff;
    box-shadow: 0 8px 20px rgba(131, 207, 255, 0.15);
    transform: translateY(-2px); color: var(--primary-strong);
}
.bale-link:hover .link-icon { transform: translate(-3px, -3px); }

.site-modal,
.success-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    overflow-y: auto;
    overflow-x: hidden;
}

.site-modal {
    padding: 24px 12px;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.modal-backdrop,
.success-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.34);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 90;
}

.modal-dialog,
.success-dialog {
    position: relative;
    z-index: 100;
    margin: 0 auto;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(255,255,255,0.78);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    pointer-events: auto;
}

.modal-dialog {
    width: min(1100px, calc(100vw - 24px));
    border-radius: 34px;
    max-height: min(920px, calc(100vh - 48px));
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.success-dialog {
    width: min(520px, calc(100vw - 24px));
    margin-top: 12vh;
    border-radius: 28px;
    padding: 28px 24px;
    text-align: center;
}

.modal-dialog-scrollable-shell {
    isolation: isolate;
}

.modal-shell {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    min-height: 680px;
    height: 100%;
    align-items: stretch;
}

.modal-aside {
    position: relative;
    padding: 30px 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.24), rgba(255,255,255,0.08)),
        linear-gradient(180deg, rgba(191,230,255,0.45), rgba(207,247,216,0.36), rgba(255,220,184,0.36), rgba(255,209,216,0.34));
    border-left: 1px solid rgba(255,255,255,0.72);
    overflow: hidden;
}

.modal-aside-enhanced {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.modal-aside-top,
.modal-progress-card,
.modal-preview-card {
    position: relative;
    z-index: 1;
}

.modal-aside h3 {
    margin: 0 0 12px;
    font-size: 1.45rem;
    line-height: 1.35;
    font-weight: 900;
}

.modal-aside p {
    margin: 0 0 18px;
    color: #374151;
    line-height: 2;
}

.aside-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    margin-bottom: 14px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: var(--shadow-sm);
    font-size: 0.8rem;
    font-weight: 850;
    color: #263041;
}

.modal-progress-card,
.modal-preview-card {
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,0.62);
    border: 1px solid rgba(255,255,255,0.78);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(16px);
}

.progress-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.progress-card-head strong {
    font-size: 0.95rem;
    font-weight: 900;
}

.progress-card-head span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.modal-progress-track {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.08);
    overflow: hidden;
    margin-bottom: 16px;
}

.modal-progress-track span {
    display: block;
    width: 50%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary-strong), var(--secondary), var(--accent));
    transition: width 0.25s ease;
}

.progress-steps {
    display: grid;
    gap: 12px;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.62);
    border: 1px solid transparent;
    transition: var(--transition);
}

.progress-step .step-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.55);
    box-shadow: 0 0 0 6px rgba(148, 163, 184, 0.1);
    flex: 0 0 auto;
}

.progress-step strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.92rem;
    font-weight: 850;
}

.progress-step small {
    color: var(--muted);
    font-size: 0.8rem;
}

.progress-step.is-active {
    border-color: rgba(74, 182, 255, 0.24);
    background: rgba(255,255,255,0.82);
    box-shadow: 0 10px 24px rgba(131, 207, 255, 0.12);
}

.progress-step.is-active .step-dot {
    background: linear-gradient(135deg, var(--primary-strong), var(--secondary));
    box-shadow: 0 0 0 6px rgba(131, 207, 255, 0.16);
}

.modal-main {
    padding: 24px;
    overflow-y: auto;
    overflow-x: visible;
    min-height: 0;
    max-height: min(920px, calc(100vh - 48px));
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    position: relative !important;
}

.modal-close,
.success-close {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    z-index: 4;
    background: rgba(255,255,255,0.82);
    box-shadow: var(--shadow-sm);
    color: var(--text);
    font-size: 1.4rem;
    line-height: 1;
}

.tab-bar {
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 6px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.66);
    border: 1px solid rgba(255,255,255,0.72);
    box-shadow: var(--shadow-sm);
}

.tab-btn {
    min-width: 136px;
    min-height: 48px;
    border: 0;
    background: transparent;
    border-radius: 999px;
    font-weight: 850;
    color: var(--muted);
    transition: var(--transition);
}

.tab-btn.active {
    background:
        linear-gradient(135deg, rgba(255,255,255,0.7), rgba(255,255,255,0.12)),
        linear-gradient(135deg, var(--pastel-blue), var(--pastel-green));
    color: var(--text);
    box-shadow: 0 12px 22px rgba(131, 207, 255, 0.18);
}

.ajax-feedback {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 18px;
    font-size: 0.94rem;
    line-height: 1.9;
}

.ajax-feedback.success {
    background: rgba(76, 175, 125, 0.1);
    color: #226143;
    border: 1px solid rgba(76, 175, 125, 0.18);
}

.ajax-feedback.error {
    background: rgba(255, 125, 151, 0.1);
    color: #a63d57;
    border: 1px solid rgba(255, 125, 151, 0.2);
}

.panel-head {
    margin-bottom: 18px;
}

.panel-head h3 {
    margin: 0 0 8px;
    font-size: 1.22rem;
    font-weight: 900;
}

.panel-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.95;
}

.form-panel {
    animation: fadeSlide 0.3s ease;
}

.kardon-form .form-label {
    color: var(--text);
    margin-bottom: 8px;
    font-size: 0.92rem;
    font-weight: 800;
}

.kardon-form .form-control,
.kardon-form select,
.kardon-form textarea,
.kardon-form input[type="text"],
.kardon-form input[type="tel"],
.kardon-form input[type="url"],
.kardon-form input[type="date"],
.kardon-form input[type="file"] {
    width: 100%;
    min-height: 56px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(255,255,255,0.74);
    color: var(--text);
    padding: 14px 16px;
    transition: var(--transition);
    outline: none;
    box-shadow: none;
    backdrop-filter: blur(12px);
}

.kardon-form textarea {
    min-height: 132px;
    resize: vertical;
}

.kardon-form .form-control:focus,
.kardon-form select:focus,
.kardon-form textarea:focus {
    background: transparent !important;
    border: none !important;
    box-shadow: 0 0 0 3px rgba(83, 189, 253, 0.3) !important;
}

.kardon-form input[type="checkbox"]:focus {
    outline: 2px solid rgba(83, 189, 253, 0.5);
    outline-offset: 2px;
}


.kardon-form input::placeholder,
.kardon-form textarea::placeholder {
    color: #9299a7;
}

.upload-box,
.choice-box,
.terms-box {
    border-radius: 22px;
    background: rgba(255,255,255,0.58);
    border: 1px solid rgba(255,255,255,0.72);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

.upload-box,
.choice-box {
    padding: 14px;
}

.upload-meta {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.84rem;
}

.choice-title {
    margin-bottom: 12px;
    font-size: 0.94rem;
    font-weight: 850;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.choice-item {
    min-height: 58px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(148, 163, 184, 0.18);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.choice-item:hover,
.terms-box:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,0.88);
}

.choice-item input[type="checkbox"],
.terms-box input[type="checkbox"],
.kardon-form input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    accent-color: #53bdfd !important;
    flex: 0 0 auto;
    cursor: pointer;
    margin: 0;
    box-shadow: none !important; 
}


.terms-box {
    min-height: 58px;
    padding: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: var(--muted);
    line-height: 1.95;
}
.form-control.is-invalid, .form-select.is-invalid {
    border-color: #dc3545 !important;
    background-image: none; 
}

.invalid-text {
    margin-top: 8px;
    min-height: 20px;
    color: #d34668;
    font-size: 0.84rem;
    line-height: 1.75;
}

.invalid-text.block {
    min-height: auto;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 125, 151, 0.08);
    border: 1px solid rgba(255, 125, 151, 0.18);
}

.field-error {
    border-color: rgba(255, 125, 151, 0.4) !important;
    box-shadow: 0 0 0 4px rgba(255, 125, 151, 0.08) !important;
}

.submit-btn.is-loading {
    opacity: 0.8;
    pointer-events: none;
}

.success-icon {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.65), rgba(255,255,255,0.18)),
        linear-gradient(135deg, var(--pastel-green), var(--pastel-blue), var(--pastel-orange));
    box-shadow: var(--shadow-md);
}

.success-dialog h3 {
    margin: 0 0 10px;
    font-size: 1.4rem;
    font-weight: 900;
}

.success-dialog p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.95;
}

.success-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}


.datepicker-container {
    position: absolute !important;
    z-index: 999999 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.datepicker-container *,
.datepicker-plot-area * {
    box-sizing: border-box !important;
    font-family: "Kahroba", "Kahroba FD", "Kahroba OA", Tahoma, sans-serif !important;
}

.datepicker-plot-area {
    width: 260px !important;
    min-width: 260px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    border: 1px solid rgba(255, 255, 255, 0.92) !important;
    border-radius: 20px !important;
    box-shadow: 0 18px 50px rgba(34, 41, 57, 0.14) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    color: #151821 !important;
    padding: 12px !important;
}

.datepicker-plot-area table {
    width: 100% !important;
    table-layout: fixed !important;
    margin: 0 !important;
}

.datepicker-navigator {
    margin-bottom: 12px !important;
}

.datepicker-navigator .pwt-btn-switch {
    font-weight: 800 !important;
    font-size: 0.9rem !important;
    color: #151821 !important;
    border-radius: 14px !important;
    background: transparent !important;
    padding: 4px 6px !important;
}

.datepicker-navigator .pwt-btn-switch:hover {
    background: rgba(131, 207, 255, 0.15) !important;
}

.datepicker-navigator .pwt-btn-next,
.datepicker-navigator .pwt-btn-prev {
    background: rgba(255, 255, 255, 0.76) !important;
    border: 1px solid rgba(148, 163, 184, 0.22) !important;
    border-radius: 12px !important;
    width: 28px !important;
    height: 28px !important;
    line-height: 26px !important;
    text-align: center !important;
    transition: all 0.2s ease !important;
}

.datepicker-navigator .pwt-btn-next:hover,
.datepicker-navigator .pwt-btn-prev:hover {
    background: #83cfff !important;
    color: #fff !important;
    border-color: #83cfff !important;
}

.datepicker-plot-area .table-days th {
    color: #7f8796 !important;
    font-weight: 700 !important;
    font-size: 0.7rem !important;
    border: none !important;
    text-align: center !important;
    padding: 4px 0 8px !important;
}

.datepicker-plot-area .table-days td,
.datepicker-plot-area .table-months td,
.datepicker-plot-area .table-years td {
    background: transparent !important;
    border: none !important;
    text-align: center !important;
    padding: 4px 0 !important;
}

.datepicker-plot-area .table-days td span,
.datepicker-plot-area .table-months td span,
.datepicker-plot-area .table-years td span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    height: 30px !important;
    line-height: 30px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    color: #5d6472 !important;
    background: transparent !important;
    border: none !important;
    text-shadow: none !important;
    transition: all 0.2s ease !important;
}

.datepicker-plot-area .table-days td:hover span,
.datepicker-plot-area .table-months td:hover span,
.datepicker-plot-area .table-years td:hover span {
    background: rgba(131, 207, 255, 0.18) !important;
    color: #151821 !important;
}

.datepicker-plot-area .datepicker-day-view .table-days td.selected span,
.datepicker-plot-area .datepicker-month-view .table-months td.selected span,
.datepicker-plot-area .datepicker-year-view .table-years td.selected span {
    background: linear-gradient(135deg, #4ab6ff, #8de0b0) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(131, 207, 255, 0.28) !important;
    font-weight: 800 !important;
    border-radius: 12px !important;
}

.datepicker-plot-area .table-days td.today span {
    background: rgba(255, 174, 145, 0.14) !important;
    color: #ff7d97 !important;
    border: 1px solid rgba(255, 125, 151, 0.35) !important;
    font-weight: 800 !important;
}

.datepicker-plot-area .table-days td.disabled span,
.datepicker-plot-area .table-months td.disabled span,
.datepicker-plot-area .table-years td.disabled span {
    opacity: 0.35 !important;
    cursor: not-allowed !important;
}

.datepicker-plot-area .toolbox {
    margin-top: 14px !important;
    border-top: 1px solid rgba(148, 163, 184, 0.15) !important;
    padding-top: 10px !important;
}

.datepicker-plot-area .toolbox .btn-today {
    background: rgba(255, 255, 255, 0.78) !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    color: #151821 !important;
    border: 1px solid rgba(148, 163, 184, 0.22) !important;
    padding: 7px 16px !important;
    transition: all 0.2s ease !important;
}

.datepicker-plot-area .toolbox .btn-today:hover {
    background: #83cfff !important;
    color: #fff !important;
    border-color: #83cfff !important;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-purple {
    0% {
        box-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(209, 0, 209, 0.7);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
        transform: scale(1);
    }
}

@keyframes twinkle {
    0% {
        opacity: 0.4;
        transform: scale(0.8) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1.2) rotate(15deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}


@media (max-width: 1199.98px) {
    .hero-grid,
    .cta-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
    }

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

    .modal-shell {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .modal-aside {
        border-left: 0;
        border-bottom: 1px solid rgba(255,255,255,0.7);
    }

    .modal-main {
        max-height: none;
        overflow: visible;
    }

    .modal-dialog {
        max-height: none;
        overflow: visible;
        border-radius: 24px;
    }
}

@media (max-width: 991.98px) {
    .nav-shell {
        padding: 12px 14px;
        border-radius: 24px;
        position: relative; 
        z-index: 99999; 
    }

    .nav-actions {
        display: none;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        padding: 18px;
        border-radius: 22px;
        background: rgba(255,255,255,0.95);
        box-shadow: var(--shadow-md);
        border: 1px solid rgba(255,255,255,0.9);
        z-index: 9999;
    }

    .nav-actions.active {
        display: flex;
    }

    .mobile-actions {
        display: flex;
    }

    .brand-copy small,
    .nav-actions .desktop-submit-btn {
        display: none !important;
    }

    .hero {
        padding-top: 18px;
    }

    .why-grid,
    .cta-stats-wrapper,
    .choice-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .site-header {
        padding-top: 12px;
    }

    .hero-title,
    h1 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }

    h2,
    .section-head h2,
    .cta-title {
        font-size: 1.4rem !important;
        line-height: 1.4 !important;
    }

    .hero-text,
    .section-head p,
    .cta-desc {
        font-size: 0.95rem !important;
        line-height: 1.8 !important;
    }

    .modal-main,
    .modal-aside {
        padding: 20px 16px;
    }

    .site-modal {
        padding: 12px 8px;
        position: fixed; 
        z-index: 999999 !important;
    }

    .modal-close,
    .success-close {
        top: 12px;
        left: 12px;
    }

    .tab-bar {
        width: 100%;
    }

    .tab-btn {
        min-width: 0;
        width: 100%;
    }

    .faq-summary-clean {
        font-size: 1rem;
        padding: 18px 20px;
        padding-left: 50px;
    }

    .faq-summary-clean::after {
        left: 20px;
    }

    .footer-grid {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .brand-logo-img {
        width: 38px;
        height: 38px;
    }

    .brand-copy strong {
        font-size: 0.98rem;
    }

    .hero-title {
        font-size: 1.65rem !important;
    }

    .cta-panel,
    .why-card {
        padding: 18px;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-actions .btn-kardon,
    .success-actions .btn-kardon-outline {
        width: 100%;
    }

    .datepicker-plot-area {
        position: fixed !important; 
        top: 50% !important; 
        left: 50% !important; 
        transform: translate(-50%, -50%) !important;         
        width: 250px !important; 
        min-width: 250px !important;        
        height: auto !important; 
        box-sizing: border-box !important; 
        padding: 10px !important;
        z-index: 9999999 !important; 
    }

    .datepicker-plot-area .table-days td,
    .datepicker-plot-area .table-months td,
    .datepicker-plot-area .table-years td {
        padding: 1px 0 !important;
        height: 28px !important; 
    }

    .datepicker-plot-area .table-days td span,
    .datepicker-plot-area .table-months td span,
    .datepicker-plot-area .table-years td span {
        width: 26px !important;
        height: 26px !important;
        line-height: 26px !important;
        font-size: 0.75rem !important;
    }

    .datepicker-plot-area .table-days th {
        font-size: 0.65rem !important;
        padding: 2px 0 6px !important;
    }
}

@media (max-width: 400px) {
    .hero-title,
    h1 {
        font-size: 1.5rem !important;
    }

    h2,
    .section-head h2,
    .cta-title {
        font-size: 1.2rem !important;
    }
}

p, span, .text-content, .hero-text, .hero-float-card span {
    text-align: justify;
    text-justify: inter-word;
}

#leadModal {
    position: fixed;
    z-index: 9999;
}

#leadModal .modal-dialog,
#leadModal .modal-shell,
#leadModal .modal-main {
    position: relative;
}

.select2-container {
    width: 100% !important;
}

.select2-container .select2-selection--single {
    height: 56px !important;
    display: flex !important;
    align-items: center !important;
    border-radius: 18px !important;
    padding: 0 14px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 56px !important;
    text-align: right !important;
    padding-right: 0 !important;
    padding-left: 24px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 56px !important;
    left: 12px !important;
    right: auto !important;
}

.select2-dropdown {
    z-index: 100000 !important;
}

.select2-results__option {
    direction: rtl;
    text-align: right;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
    cursor: not-allowed !important;
    opacity: 0.7;
}

.select2-container--open {
    z-index: 100000 !important;
}


.kardon-main-footer {
    position: relative;
    padding: 44px 0 34px;
}

.kardon-footer-panel {
    position: relative;
    padding: 26px 28px 20px;
    border-radius: 34px;
    overflow: hidden;
}

.kardon-footer-panel::after {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    left: -70px;
    bottom: -90px;
    border-radius: 999px;
    background: rgba(255, 220, 184, 0.38);
    filter: blur(24px);
    pointer-events: none;
}

.footer-round-actions {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-round-item {
    width: 112px;
    height: 112px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    background:
        linear-gradient(135deg, rgba(255,255,255,0.76), rgba(255,255,255,0.28)),
        rgba(255, 255, 255, 0.68);
    box-shadow: 0 16px 34px rgba(34, 41, 57, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.footer-round-button {
    cursor: pointer;
    padding: 0;
    color: var(--text);
    flex-direction: column;
    gap: 6px;
}

.footer-round-button:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(34, 41, 57, 0.10);
    background:
        linear-gradient(135deg, rgba(255,255,255,0.86), rgba(255,255,255,0.36)),
        rgba(255, 255, 255, 0.86);
}

.footer-round-button:nth-child(1):hover {
    border-color: rgba(255, 174, 145, 0.48);
}

.footer-round-button:nth-child(3):hover {
    border-color: rgba(131, 207, 255, 0.52);
}

.footer-round-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 18px;
    font-size: 1.35rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 18px rgba(34, 41, 57, 0.05);
}

.footer-round-title {
    display: block;
    color: var(--text);
    font-size: 0.82rem;
    line-height: 1.5;
    font-weight: 900;
}

.footer-enamad-wrap {
    position: relative;
    width: 124px;
    height: 124px;
    padding: 12px;
    background:
        linear-gradient(135deg, rgba(207,247,216,0.38), rgba(255,255,255,0.82)),
        rgba(255, 255, 255, 0.72);
    border-color: rgba(141, 224, 176, 0.34);
}

.footer-enamad-wrap:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(34, 41, 57, 0.10);
    border-color: rgba(141, 224, 176, 0.52);
}

.footer-enamad-wrap a {
    width: 100%;
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-enamad-wrap img {
    max-width: 88px;
    max-height: 88px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}


.footer-bottom-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.footer-soft-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(131, 207, 255, 0.30);
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 850;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.footer-soft-link:hover {
    transform: translateY(-2px);
    background: #ffffff;
    border-color: rgba(131, 207, 255, 0.56);
    color: var(--primary-strong);
}

.kardon-footer-panel .footer-copy {
    justify-self: auto;
}

.kardon-footer-panel .footer-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.kardon-footer-panel .footer-copy span {
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 950;
}

@media (max-width: 767.98px) {
    .kardon-main-footer {
        padding: 32px 0 24px;
    }

    .kardon-footer-panel {
        padding: 22px 16px 18px;
        border-radius: 26px;
    }

    .footer-round-actions {
        gap: 12px;
    }

    .footer-round-item {
        width: 92px;
        height: 92px;
    }

    .footer-enamad-wrap {
        width: 104px;
        height: 104px;
        padding: 10px;
    }

    .footer-enamad-wrap img {
        max-width: 76px;
        max-height: 76px;
    }

    .footer-round-icon {
        width: 38px;
        height: 38px;
        border-radius: 14px;
        font-size: 1.08rem;
    }

    .footer-round-title {
        font-size: 0.72rem;
    }

    .footer-bottom-row {
        justify-content: center;
        text-align: center;
        gap: 12px;
    }

    .footer-soft-link,
    .kardon-footer-panel .footer-copy {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 380px) {
    .footer-round-actions {
        gap: 8px;
    }

    .footer-round-item {
        width: 84px;
        height: 84px;
    }

    .footer-enamad-wrap {
        width: 94px;
        height: 94px;
    }

    .footer-enamad-wrap img {
        max-width: 68px;
        max-height: 68px;
    }

    .footer-round-title {
        font-size: 0.68rem;
    }
}


.footer-round-item {
    position: relative;
    isolation: isolate;
}

.footer-round-item::before {
    content: "";
    position: absolute;
    inset: -14px;
    border-radius: 999px;
    z-index: -1;
    filter: blur(18px);
    opacity: 0.92;
    transform: scale(0.96);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        filter 0.25s ease;
    pointer-events: none;
}

.footer-round-actions .footer-round-item:nth-child(1)::before {
    background:
        radial-gradient(circle, rgba(255, 174, 145, 0.62) 0%, rgba(255, 209, 216, 0.34) 42%, transparent 72%);
}

.footer-round-actions .footer-round-item:nth-child(2)::before {
    background:
        radial-gradient(circle, rgba(131, 207, 255, 0.68) 0%, rgba(191, 230, 255, 0.42) 44%, transparent 74%);
}

.footer-round-actions .footer-round-item:nth-child(3)::before {
    background:
        radial-gradient(circle, rgba(141, 224, 176, 0.62) 0%, rgba(207, 247, 216, 0.40) 44%, transparent 74%);
}

.footer-round-item:hover::before {
    opacity: 0.92;
    transform: scale(1.08);
    filter: blur(22px);
}

@media (max-width: 767.98px) {
    .footer-round-item::before {
        inset: -10px;
        filter: blur(15px);
        opacity: 0.68;
    }

    .footer-round-item:hover::before {
        filter: blur(18px);
    }
}
