
    :root {
        --bg: #2e1a53;
        --surface: rgba(36, 18, 72, 0.62);
        --surface-strong: rgba(30, 14, 62, 0.84);
        --text: #eff7ff;
        --muted: rgba(239, 247, 255, 0.7);
        --line: rgba(255, 255, 255, 0.1);
        --cyan: #15f1ff;
        --pink: #ff43d0;
        --lime: #c8ff32;
        --violet: #8a5cff;
        --blue: #3e7bff;
        --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
        --glow-cyan: 0 0 24px rgba(21, 241, 255, 0.32);
        --glow-pink: 0 0 24px rgba(255, 67, 208, 0.28);
        --radius-xl: 34px;
        --max: 1380px;
    }

    html { scroll-behavior: smooth; }

    body {
        margin: 0;
        color: var(--text);
        background:
            radial-gradient(circle at 18% 16%, rgba(118, 74, 255, 0.34) 0%, rgba(118, 74, 255, 0) 24%),
            radial-gradient(circle at 50% 72%, rgba(232, 72, 210, 0.30) 0%, rgba(232, 72, 210, 0.08) 18%, rgba(232, 72, 210, 0) 38%),
            radial-gradient(circle at 86% 12%, rgba(84, 191, 255, 0.20) 0%, rgba(84, 191, 255, 0) 18%),
            linear-gradient(180deg, #2e1a53 0%, #7e59d3 48%, #c14be8 100%);
        background-attachment: fixed;
        font-family: 'Sora', sans-serif;
        font-size: 14px;
    }

    .sante-page {
        position: relative;
        overflow: hidden;
        padding: 18px 0 110px;
    }

    .sante-page::before,
    .sante-page::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        filter: blur(22px);
        opacity: 0.7;
    }

    .sante-page::before {
        top: 80px;
        left: -80px;
        width: 260px;
        height: 260px;
        background: rgba(84, 191, 255, 0.16);
    }

    .sante-page::after {
        top: 560px;
        right: -90px;
        width: 300px;
        height: 300px;
        background: rgba(232, 72, 210, 0.16);
    }

    .sante-shell {
        position: relative;
        z-index: 1;
        width: min(calc(100% - 28px), var(--max));
        margin: 0 auto;
    }

    .sante-topline {
        text-align: center;
        color: rgba(21, 241, 255, 0.88);
        font-size: 12px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        text-shadow: var(--glow-cyan);
    }
.sante-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    backdrop-filter:blur(6px);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:999999;
}

.sante-modal.active{
    display:flex;
}

.sante-modal-content{
    width:min(90%,700px);
    max-height:80vh;
    overflow:auto;
   background: #3877cf;
    border-radius:20px;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
    animation:santeModalIn .25s ease;
}

@keyframes santeModalIn{
    from{
        opacity:0;
        transform:translateY(20px) scale(.96);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

.sante-modal-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 24px;
    border-bottom:1px solid #eee;
}

.sante-modal-header h3{
    margin:0;
}

.sante-modal-header button{
    border:none;
    background:none;
    font-size:28px;
    cursor:pointer;
}

.sante-modal-body{
    padding:24px;
    line-height:1.8;
    color:#444;
}

#santeKvkkLink{
    color:#c4ff35;
    font-weight:600;
    text-decoration:none;
}

#santeKvkkLink:hover{
    text-decoration:underline;
}
    .sante-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        margin-top: 16px;
        padding: 14px 18px;
        border: 1px solid rgba(21, 241, 255, 0.16);
        border-radius: 28px;
        background: rgba(44, 20, 86, 0.5);
        box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(18px);
    }

    .sante-brand {
        display: flex;
        align-items: center;
        gap: 14px;
        color: var(--text);
        text-decoration: none;
    }

    .sante-brand-mark {
        position: relative;
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: linear-gradient(145deg, rgba(10, 18, 32, 0.95), rgba(31, 14, 58, 0.96));
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 0 18px rgba(21, 241, 255, 0.16);
        overflow: hidden;
    }

    .sante-brand-mark::before,
    .sante-brand-mark::after {
        content: "";
        position: absolute;
        inset: 0;
        margin: auto;
    }

    .sante-brand-mark::before {
        width: 22px;
        height: 10px;
        border-radius: 999px;
        background: var(--cyan);
        transform: rotate(-28deg) translateY(-2px);
        box-shadow: var(--glow-cyan);
    }

    .sante-brand-mark::after {
        width: 10px;
        height: 28px;
        border-radius: 999px;
        background: var(--pink);
        transform: rotate(28deg) translateX(-1px);
        box-shadow: var(--glow-pink);
    }

    .sante-brand-copy strong,
    .sante-brand-copy span {
        display: block;
        line-height: 1;
    }

    .sante-brand-copy strong {
        font-size: 16px;
        font-weight: 800;
        letter-spacing: 0.01em;
    }

    .sante-brand-copy span {
        margin-top: 5px;
        color: rgba(239, 247, 255, 0.56);
        font-size: 10px;
    }

    .sante-nav-links {
        display: flex;
        flex-wrap: wrap;
        gap: 12px 16px;
        justify-content: center;
    }

    .sante-nav-links a,
    .sante-nav-action,
    .sante-pill,
    .sante-btn,
    .sante-btn-secondary,
    .sante-badge,
    .sante-faq details,
    .sante-road-card,
    .sante-tile {
        transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
    }

    .sante-nav-links a {
        color: rgba(239, 247, 255, 0.76);
        text-decoration: none;
        font-size: 15px;
    }

    .sante-nav-links a:hover,
    .sante-nav-action:hover,
    .sante-btn:hover,
    .sante-btn-secondary:hover,
    .sante-badge:hover,
    .sante-faq details:hover,
    .sante-road-card:hover,
    .sante-tile:hover {
        transform: translateY(-3px);
    }

    .sante-nav-action {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        min-height: 44px;
        padding: 0 18px;
        border-radius: 16px;
        color: #081018;
        text-decoration: none;
        font-weight: 800;
        background: linear-gradient(135deg, var(--cyan), var(--lime));
        box-shadow: var(--glow-cyan);
    }

    .sante-nav-action::after { content: ">"; font-size: 12px; }

    .sante-hero {
        padding: 38px 0 24px;
        text-align: center;
    }

    .sante-pill,
    .sante-section-tag,
    .sante-step-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        min-height: 38px;
        padding: 0 14px;
        border-radius: 999px;
        border: 1px solid rgba(138, 92, 255, 0.28);
        background: rgba(52, 24, 102, 0.46);
        color: rgba(239, 247, 255, 0.72);
        box-shadow: 0 0 18px rgba(138, 92, 255, 0.12);
    }

    .sante-pill strong,
    .sante-section-tag strong,
    .sante-step-pill strong {
        display: inline-flex;
        align-items: center;
        min-height: 22px;
        padding: 0 10px;
        border-radius: 999px;
        color: #091018;
        background: linear-gradient(135deg, var(--pink), var(--cyan));
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .sante-hero h1,
    .sante-section-head h2,
    .sante-road-header h2,
    .sante-cta h2 {
        margin: 18px auto 0;
        max-width: 12ch;
        font-size: clamp(36px, 6.5vw, 68px);
        line-height: 0.95;
        letter-spacing: -0.05em;
        font-weight: 800;
        text-shadow: 0 0 20px rgba(138, 92, 255, 0.10);
    }

    .sante-section-head,
    .sante-road-header {
        max-width: 1120px;
        margin: 0 auto;
    }

    .sante-section-head h2,
    .sante-road-header h2,
    .sante-cta h2 {
        max-width: 15ch;
    }

    .sante-script {
        display: inline-block;
        margin-left: 8px;
        font-family: 'Cormorant Garamond', serif;
        font-style: italic;
        font-weight: 700;
        color: #43ffc8;
        text-shadow: var(--glow-pink);
        letter-spacing: -0.03em;
    }

    .sante-hero p,
    .sante-section-head p,
    .sante-road-header p,
    .sante-cta p,
    .sante-faq-intro p {
        margin: 18px auto 0;
        max-width: 760px;
        color: white;
        font-size: 15px;
        line-height: 1.6;
    }

    .sante-hero-note {
        margin-top: 14px;
        color: rgba(200, 255, 50, 0.92);
        font-size: 11px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        text-shadow: 0 0 14px rgba(200, 255, 50, 0.2);
    }

    .sante-hero-form {
        display: flex;
        align-items: center;
        gap: 10px;
        width: min(100%, 550px);
        margin: 22px auto 0;
        padding: 10px;
        border-radius: 999px;
        border: 1px solid rgba(21, 241, 255, 0.18);
        background: rgba(42, 20, 86, 0.5);

        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 0 30px rgba(21, 241, 255, 0.08);
    }

    .sante-hero-form input {
        flex: 1 1 auto;
        height: 48px;
        padding: 0 16px;
        border: 0;
        outline: 0;
        color: var(--text);
        background: transparent;
        font: inherit;
    }
.sante-kvkk-checkbox{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-top:18px;
    justify-content:center;
    color:rgba(239,247,255,.8);
    font-size:14px;
}

.sante-kvkk-checkbox input{
    margin-top:2px;
    width:18px;
    height:18px;
}
    .sante-hero-form input::placeholder { color: rgba(239, 247, 255, 0.44); }

    .sante-whatsapp-btn,
    .sante-btn,
    .sante-btn-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        border-radius: 999px;
        text-decoration: none;
        font-size: 15px;
        font-weight: 800;
    }

    .sante-whatsapp-btn {
        width: 46px;
        min-width: 46px;
        color: #081018;
        background: linear-gradient(135deg, var(--lime), #6bffbe);
        box-shadow: 0 0 22px rgba(200, 255, 50, 0.28);
        font-size: 14px;
    }

    .sante-kvkk {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-top: 18px;
        color: rgba(239, 247, 255, 0.6);
        font-size: 14px;
    }

    .sante-kvkk::before {
        content: "";
        width: 18px;
        height: 18px;
        border-radius: 5px;
        border: 1px solid rgba(21, 241, 255, 0.28);
        background: rgba(21, 241, 255, 0.08);
    }

    .sante-gallery {
        display: grid;
        grid-template-columns: repeat(7, minmax(0, 1fr));
        gap: 12px;
        align-items: end;
        margin-top: 20px;
    }

    .sante-tile {
        position: relative;
        min-height: 110px;
        border-radius: 18px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: var(--shadow);
    }

    .sante-tile::before,
    .sante-tile::after {
        content: "";
        position: absolute;
    }

    .sante-tile::before {
        top: -30px;
        right: -20px;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.12);
    }

    .sante-tile::after {
        inset: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(4, 8, 18, 0.36));
    }

 

    .sante-hero-actions,
    .sante-cta-actions {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 26px;
        flex-wrap: wrap;
    }

    .sante-btn,
    .sante-btn-secondary { min-width: 152px; padding: 0 24px; }

    .sante-btn {
        color: #081018;
        background: linear-gradient(135deg, var(--cyan), var(--lime));
        box-shadow: var(--glow-cyan);
    }

    .sante-btn-secondary {
        color: var(--text);
        border: 1px solid rgba(255, 67, 208, 0.24);
        background: rgba(255, 67, 208, 0.08);
        box-shadow: 0 0 20px rgba(255, 67, 208, 0.08);
    }

    .sante-badges {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin-top: 14px;
    }

    .sante-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-height: 44px;
        padding: 0 16px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(47, 22, 93, 0.52);
        color: var(--text);
        font-size: 14px;
    }

    .sante-badge strong {
        display: inline-flex;
        align-items: center;
        min-height: 28px;
        padding: 0 10px;
        border-radius: 999px;
        color: #091018;
        background: linear-gradient(135deg, var(--pink), var(--lime));
        font-size: 13px;
        font-weight: 800;
    }

    .sante-logo-strip {
        margin-top: 38px;
        padding-top: 36px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        text-align: center;
    }

    .sante-logo-strip span {
        display: block;
        margin-bottom: 20px;
        color: rgba(239, 247, 255, 0.48);
        font-size: 13px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
    }

    .sante-logo-row {
        display: grid;
        grid-template-columns: repeat(8, minmax(0, 1fr));
        gap: 18px;
        align-items: center;
        opacity: 0.74;
    }

    .sante-logo {
        color: rgba(239, 247, 255, 0.62);
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .sante-section {
        position: relative;
        padding-top: 108px;
    }

    .sante-section::before {
        content: "";
        position: absolute;
        inset: 40px 2% auto;
        height: 240px;
        border-radius: 40px;
        background:
            radial-gradient(circle at 14% 30%, rgba(21, 241, 255, 0.08), transparent 30%),
            radial-gradient(circle at 84% 22%, rgba(255, 67, 208, 0.1), transparent 28%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
        pointer-events: none;
        z-index: 0;
    }

    .sante-section > * {
        position: relative;
        z-index: 1;
    }

    .sante-section-head,
    .sante-road-header { text-align: center; }

    .sante-faq-intro,
    .sante-faq details,
    .sante-cta,
    .sante-sim-card,
    .sante-sim-result {
        padding: 28px;
        border: 1px solid var(--line);
        border-radius: var(--radius-xl);
        background: var(--surface);
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
    }

    .sante-how-card {
        position: relative;
        margin-top: 34px;
        padding: 28px 28px 26px 100px;
        border: 1px solid rgba(21, 241, 255, 0.14);
        border-radius: var(--radius-xl);
        background: rgba(40, 19, 82, 0.56);
        box-shadow: var(--shadow);
    }

    .sante-how-rail {
        position: absolute;
        left: 32px;
        top: 28px;
        bottom: 28px;
        width: 52px;
        border-right: 1px solid rgba(21, 241, 255, 0.16);
    }

    .sante-how-rail span {
        position: absolute;
        top: 34px;
        left: -8px;
        transform: rotate(-90deg);
        transform-origin: left top;
        color: rgba(21, 241, 255, 0.76);
        font-size: 12px;
        letter-spacing: 0.28em;
        text-transform: uppercase;
    }

    .sante-step-grid { display: grid; gap: 18px; }

    .sante-step-card {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 180px;
        gap: 22px;
        align-items: end;
        padding: 30px 30px 30px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .sante-step-card:first-child { border-top: 0; padding-top: 6px; }

    .sante-step-meta {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-top: 24px;
    }

    .sante-step-index {
        display: inline-grid;
        place-items: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        color: #081018;
        font-weight: 800;
        background: linear-gradient(135deg, var(--pink), var(--cyan));
        box-shadow: var(--glow-pink);
    }

    .sante-step-link { color: var(--cyan); text-decoration: none; font-weight: 700; }

    .sante-step-body h3 {
        margin: 16px 0 0;
        font-size: clamp(34px, 5vw, 62px);
        line-height: 1.03;
        letter-spacing: -0.05em;
    }

    .sante-step-body p {
        margin: 16px 0 0;
        color: var(--muted);
        font-size: 18px;
        line-height: 1.7;
        max-width: 50ch;
    }

    .sante-step-bg {
        justify-self: end;
        color: rgba(21, 241, 255, 0.12);
        font-size: clamp(120px, 18vw, 220px);
        line-height: 0.9;
        font-weight: 800;
        letter-spacing: -0.08em;
    }

    .sante-marquee {
        margin-top: 18px;
        overflow: hidden;
        border-radius: 999px;
        border: 1px solid rgba(200, 255, 50, 0.24);
        background: linear-gradient(90deg, rgba(200, 255, 50, 0.14), rgba(21, 241, 255, 0.14), rgba(255, 67, 208, 0.12));
        white-space: nowrap;
    }

    .sante-marquee-track {
        display: inline-flex;
        gap: 32px;
        padding: 14px 22px;
        color: var(--lime);
        font-size: 18px;
        font-weight: 800;
        text-transform: uppercase;
        animation: sante-marquee 22s linear infinite;
    }

    @keyframes sante-marquee {
        from { transform: translateX(0); }
        to { transform: translateX(-50%); }
    }

    .sante-sim-grid,
    .sante-faq-grid {
        display: grid;
        gap: 22px;
        margin-top: 34px;
    }

    .sante-sim-grid { grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr); }
    .sante-faq-grid { grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr); }

    .sante-sim-card {
        background:
            radial-gradient(circle at top right, rgba(255, 67, 208, 0.14), transparent 24%),
            linear-gradient(180deg, rgba(69, 30, 134, 0.92), rgba(42, 18, 88, 0.94));
        border-color: rgba(255, 67, 208, 0.16);
    }

    .sante-sim-card small {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: rgba(239, 247, 255, 0.78);
        font-size: 13px;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .sante-sim-card small::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--pink);
        box-shadow: var(--glow-pink);
    }

    .sante-sim-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-top: 24px;
        font-size: 15px;
    }

    .sante-sim-header strong {
        color: var(--cyan);
        font-size: 38px;
        text-shadow: var(--glow-cyan);
    }

    .sante-range { width: 100%; margin-top: 20px; accent-color: var(--cyan); }

    .sante-range-points {
        display: flex;
        justify-content: space-between;
        margin-top: 8px;
        color: rgba(239, 247, 255, 0.52);
        font-size: 12px;
    }

    .sante-price-box {
        margin-top: 24px;
        padding: 22px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.03);
    }

    .sante-price-box strong {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        font-size: 22px;
    }

    .sante-price-box strong span:last-child { color: var(--lime); }

    .sante-price-box p {
        margin: 14px 0 0;
        color: rgba(239, 247, 255, 0.62);
        font-size: 13px;
        line-height: 1.8;
    }

    .sante-result-list { display: grid; gap: 18px; }

    .sante-result-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .sante-result-item:last-child { border-bottom: 0; padding-bottom: 0; }

    .sante-result-item div {
        color: rgba(239, 247, 255, 0.58);
        font-size: 13px;
    }

    .sante-result-item strong {
        color: var(--text);
        font-size: clamp(24px, 3vw, 40px);
        line-height: 1;
    }

    .sante-result-item:nth-child(1) strong { color: var(--cyan); }
    .sante-result-item:nth-child(2) strong { color: var(--pink); }
    .sante-result-item:nth-child(3) strong { color: var(--lime); }

    .sante-level {
        margin-top: 22px;
        overflow: hidden;
        border-radius: 18px;
        border: 1px solid rgba(21, 241, 255, 0.16);
        background: linear-gradient(90deg, rgba(255, 67, 208, 0.18), rgba(138, 92, 255, 0.22), rgba(21, 241, 255, 0.2));
    }

    .sante-level-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 18px 20px;
        font-size: 15px;
        font-weight: 700;
    }

    .sante-level-note {
        display: block;
        margin-top: 12px;
        padding: 12px 18px;
        border-radius: 14px;
        color: var(--cyan);
        background: rgba(21, 241, 255, 0.06);
        border: 1px solid rgba(21, 241, 255, 0.12);
        text-align: center;
        font-size: 14px;
    }

    .sante-tariff-grid,
    .sante-income-grid {
        display: grid;
        gap: 24px;
        margin-top: 34px;
    }

    .sante-tariff-grid { grid-template-columns: 1fr; }
    .sante-income-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

    .sante-offer-card,
    .sante-offer-side,
    .sante-income-card {
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
    }

    .sante-offer-card {
        display: grid;
        grid-template-columns: 210px minmax(0, 1.2fr) 280px;
        gap: 30px;
        align-items: center;
        padding: 38px;
        background:
            radial-gradient(circle at top left, rgba(21, 241, 255, 0.14), transparent 26%),
            radial-gradient(circle at bottom right, rgba(255, 67, 208, 0.14), transparent 24%),
            linear-gradient(145deg, rgba(47, 21, 92, 0.9), rgba(33, 16, 70, 0.9));
    }

    .sante-offer-speed {
        padding: 34px 22px;
        border-radius: 24px;
        text-align: center;
        border: 1px solid rgba(21, 241, 255, 0.16);
        background: rgba(11, 18, 43, 0.34);
    }

    .sante-offer-speed strong {
        display: block;
        color: var(--cyan);
        font-size: clamp(42px, 5vw, 64px);
        line-height: 0.95;
        text-shadow: var(--glow-cyan);
    }

    .sante-offer-speed span {
        display: block;
        margin-top: 10px;
        color: rgba(239, 247, 255, 0.72);
        font-size: 13px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
    }

    .sante-offer-body h3 {
        margin: 0;
        font-size: clamp(28px, 4vw, 42px);
        line-height: 1.05;
        letter-spacing: -0.04em;
    }

    .sante-offer-body p {
        margin: 14px 0 0;
        color: var(--muted);
        line-height: 1.8;
    }

    .sante-offer-tags,
    .sante-offer-pills,
    .sante-income-points {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .sante-offer-tags,
    .sante-offer-pills { margin-top: 20px; }

    .sante-offer-tags span,
    .sante-offer-pills span,
    .sante-income-points span {
        display: inline-flex;
        align-items: center;
        min-height: 38px;
        padding: 0 16px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 700;
    }

    .sante-offer-tags span {
        color: var(--lime);
        border: 1px solid rgba(200, 255, 50, 0.2);
        background: rgba(200, 255, 50, 0.08);
    }

    .sante-offer-pills span {
        color: rgba(239, 247, 255, 0.88);
        border: 1px solid rgba(21, 241, 255, 0.18);
        background: rgba(21, 241, 255, 0.08);
    }

    .sante-offer-side {
        padding: 28px;
        text-align: center;
        background: linear-gradient(180deg, rgba(255, 67, 208, 0.14), rgba(22, 17, 57, 0.88));
    }

    .sante-offer-side small {
        display: block;
        color: rgba(239, 247, 255, 0.62);
        font-size: 12px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
    }

    .sante-offer-price {
        margin: 12px 0 0;
        font-size: clamp(42px, 5vw, 62px);
        line-height: 0.95;
        font-weight: 800;
        color: var(--text);
    }

    .sante-offer-price span {
        font-size: 20px;
        color: var(--pink);
        text-shadow: var(--glow-pink);
    }

    .sante-offer-actions {
        display: grid;
        gap: 12px;
        margin-top: 22px;
    }

    .sante-offer-side-note {
        margin: 16px 0 0;
        color: rgba(239, 247, 255, 0.58);
        font-size: 13px;
        line-height: 1.7;
    }

    .sante-income-card {
        position: relative;
        overflow: hidden;
        min-height: 100%;
        padding: 32px;
        background: linear-gradient(180deg, rgba(47, 21, 92, 0.88), rgba(23, 13, 51, 0.92));
    }

    .sante-income-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(21, 241, 255, 0.12), transparent 32%);
        pointer-events: none;
    }

    .sante-income-card.featured::before {
        background:
            radial-gradient(circle at top right, rgba(255, 67, 208, 0.18), transparent 34%),
            radial-gradient(circle at bottom left, rgba(200, 255, 50, 0.1), transparent 30%);
    }

    .sante-income-badge {
        display: inline-flex;
        align-items: center;
        min-height: 34px;
        padding: 0 14px;
        border-radius: 999px;
        color: var(--cyan);
        border: 1px solid rgba(21, 241, 255, 0.18);
        background: rgba(21, 241, 255, 0.08);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .sante-income-card.featured .sante-income-badge {
        color: #081018;
        border-color: transparent;
        background: linear-gradient(135deg, var(--lime), var(--pink));
    }

    .sante-income-card h3 {
        margin: 18px 0 0;
        font-size: 34px;
        line-height: 1.05;
    }

    .sante-income-card p {
        margin: 12px 0 0;
        color: var(--muted);
        line-height: 1.8;
    }

    .sante-income-rate {
        margin-top: 22px;
        font-size: clamp(52px, 7vw, 84px);
        line-height: 0.9;
        font-weight: 800;
        color: var(--text);
        text-shadow: var(--glow-cyan);
    }

    .sante-income-card.featured .sante-income-rate {
        color: var(--pink);
        text-shadow: var(--glow-pink);
    }

    .sante-income-points { margin-top: 20px; }

    .sante-income-points span {
        color: rgba(239, 247, 255, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.04);
    }

    .sante-rule-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
        margin-top: 34px;
    }

    .sante-rule-card {
        min-height: 100%;
        padding: 30px;
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background:
            radial-gradient(circle at top right, rgba(21, 241, 255, 0.12), transparent 32%),
            linear-gradient(180deg, rgba(47, 21, 92, 0.88), rgba(23, 13, 51, 0.92));
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
    }

    .sante-rule-card h3 {
        margin: 18px 0 0;
        font-size: 30px;
        line-height: 1.08;
    }

    .sante-rule-list {
        display: grid;
        gap: 12px;
        margin: 22px 0 0;
        padding: 0;
        list-style: none;
    }

    .sante-rule-list li {
        position: relative;
        padding-left: 20px;
        color: var(--muted);
        line-height: 1.75;
    }

    .sante-rule-list li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 10px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--lime), var(--cyan));
        box-shadow: var(--glow-cyan);
    }

    .sante-road {
        margin-top: 96px;
        padding: 92px 0;
        background:
            radial-gradient(circle at 20% 18%, rgba(118, 74, 255, 0.26) 0%, rgba(118, 74, 255, 0) 28%),
            radial-gradient(circle at 80% 24%, rgba(84, 191, 255, 0.16) 0%, rgba(84, 191, 255, 0) 26%),
            linear-gradient(180deg, rgba(46, 26, 83, 0.92) 0%, rgba(126, 89, 211, 0.82) 54%, rgba(193, 75, 232, 0.88) 100%);
    }

    .sante-road-header p { color: rgba(239, 247, 255, 0.66); }

    .sante-road-map {
        position: relative;
        display: grid;
        gap: 34px;
        max-width: 860px;
        margin: 48px auto 0;
    }

    .sante-road-map::before {
        content: "";
        position: absolute;
        top: 12px;
        bottom: 12px;
        left: 50%;
        width: 2px;
        transform: translateX(-50%);
        background: linear-gradient(180deg, rgba(21, 241, 255, 0.06), rgba(21, 241, 255, 0.78), rgba(255, 67, 208, 0.5));
    }

    .sante-road-row {
        position: relative;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 72px;
        align-items: center;
    }

    .sante-road-node {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: grid;
        place-items: center;
        width: 64px;
        height: 64px;
        border-radius: 50%;
        color: #091018;
        font-size: 24px;
        font-weight: 800;
        background: linear-gradient(135deg, var(--cyan), var(--pink));
        box-shadow: 0 0 32px rgba(255, 67, 208, 0.24);
    }

    .sante-road-card {
        min-height: 138px;
        padding: 28px;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(34, 18, 70, 0.58);
        box-shadow: var(--shadow);
        backdrop-filter: blur(14px);
    }

    .sante-road-card small {
        display: inline-flex;
        align-items: center;
        min-height: 28px;
        padding: 0 12px;
        border-radius: 999px;
        color: #081018;
        background: linear-gradient(135deg, var(--lime), var(--cyan));
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .sante-road-card h3 {
        margin: 16px 0 0;
        font-size: 34px;
        line-height: 1.05;
        letter-spacing: -0.04em;
    }

    .sante-road-card p {
        margin: 12px 0 0;
        color: rgba(239, 247, 255, 0.62);
        line-height: 1.8;
    }

    .sante-contact-card {
        margin-top: 26px;
        padding: 18px 20px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.03);
    }

    .sante-contact-card a { color: var(--cyan); text-decoration: none; font-weight: 700; }

    .sante-faq { display: grid; gap: 14px; }

    .sante-faq summary {
        position: relative;
        cursor: pointer;
        list-style: none;
        padding: 0 34px 0 0;
        font-size: 18px;
        font-weight: 700;
    }

    .sante-faq summary::-webkit-details-marker { display: none; }

    .sante-faq summary::after {
        content: "+";
        position: absolute;
        top: -4px;
        right: 0;
        width: 28px;
        height: 28px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        color: #081018;
        background: linear-gradient(135deg, var(--pink), var(--cyan));
        font-size: 20px;
    }

    .sante-faq details[open] summary::after { content: "-"; }

    .sante-faq details p {
        margin: 18px 0 0;
        color: var(--muted);
        line-height: 1.8;
    }

    .sante-cta {
        margin-top: 34px;
        text-align: center;
        background:
            radial-gradient(circle at top right, rgba(255, 67, 208, 0.12), transparent 24%),
            radial-gradient(circle at left, rgba(21, 241, 255, 0.1), transparent 24%),
            rgba(47, 21, 92, 0.6);
    }

    .sante-cta h2 {
        max-width: 15ch;
        font-size: clamp(34px, 5vw, 64px);
    }

    #tarife .sante-section-head,
    #gelir-seviyesi .sante-section-head {
        max-width: 1240px;
    }

    #tarife .sante-section-head p,
    #gelir-seviyesi .sante-section-head p {
        max-width: 920px;
    }

    @media (max-width: 1100px) {
        .sante-gallery,
        .sante-logo-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.sante-hero-form {
    display: flex;
    align-items: center;
    gap: 10px;
    width: min(100%, 550px);
    margin: 22px auto 0;
    padding: 10px;
    border-radius: 999px;
    border: 1px solid rgba(21, 241, 255, 0.18);
    background: rgba(42, 20, 86, 0.5);
    flex-wrap: wrap;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 0 30px rgba(21, 241, 255, 0.08);
}
        .sante-tariff-grid,
        .sante-rule-grid,
        .sante-income-grid,
        .sante-sim-grid,
        .sante-faq-grid,
        .sante-step-card,
        .sante-road-row { grid-template-columns: 1fr; }

        .sante-offer-card { grid-template-columns: 1fr; }

        .sante-road-map::before,
        .sante-road-node,
        .sante-step-bg { display: none; }
    }

    @media (max-width: 860px) {
        .sante-nav { display: grid; }
        .sante-nav-links { justify-content: flex-start; }
        .sante-gallery,
        .sante-logo-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
        .sante-how-card { padding: 24px; }
        .sante-how-rail { display: none; }
        .sante-step-card { padding: 8px 0 0; }
        .sante-offer-card,
        .sante-income-card { padding: 22px; }
        .sante-section { padding-top: 86px; }
    }

    @media (max-width: 640px) {
        .sante-shell { width: min(calc(100% - 18px), var(--max)); }

        .sante-hero h1,
        .sante-section-head h2,
        .sante-road-header h2,
        .sante-cta h2 {
            max-width: none;
            font-size: clamp(34px, 12vw, 54px);
        }

        .sante-section::before { inset-inline: 0; }

        .sante-gallery,
        .sante-logo-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }

        .sante-tile:nth-child(7) { display: none; }

        .sante-faq-intro,
        .sante-faq details,
        .sante-cta,
        .sante-offer-side,
        .sante-sim-card,
        .sante-sim-result,
        .sante-road-card,
        .sante-income-card,
        .sante-offer-card {
            padding-left: 20px;
            padding-right: 20px;
        }

        .sante-btn,
        .sante-btn-secondary { width: 100%; }
    }
    .sante-toast{
    position:fixed;
    top:24px;
    right:24px;
    min-width:320px;
    max-width:420px;
    padding:16px 18px;
    border-radius:14px;
    background:rgba(15,23,42,.95);
    color:#fff;
    font-size:14px;
    font-weight:500;
    backdrop-filter:blur(16px);
    box-shadow:0 20px 40px rgba(0,0,0,.25);
    z-index:99999;

    opacity:0;
    visibility:hidden;
    transform:translateY(-15px);
    transition:.3s ease;
}

.sante-toast.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.sante-toast.success{
    border-left:4px solid #22c55e;
}

.sante-toast.error{
    border-left:4px solid #ef4444;
}

.sante-toast.warning{
    border-left:4px solid #f59e0b;
}
