    
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  }   


:root {
      --bg: #F7F9FB;
      --bg-alt: #EEF2F6;
      --rose: #A8A5D3;
      --rose-light: #D1D0EA;
      --rose-deep: #7D79B8;
      --rose-dark: #7D79B8;
      --secondary: #B1D8C4;
      --charcoal: #2D3047;
      --muted: #9499B0;
      --border: #DEE4ED;
      --white: #FFFFFF;
      --dark: #000;
      --container: 1160px;
      --article-width: 760px;
      --radius: 16px;
      --err:#C0392B;
      --ok:#3D8A60
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--charcoal);
      font-family: 'Jost', sans-serif;
      font-size: 16px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }

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

    /* ─── TYPOGRAPHY ─── */
    h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; }
    h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 300; }
    h2, .h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; }
    h3, .h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 400; }
    h4, .h4 { font-size: 1.15rem; font-weight: 600; }
    
    .section-label {
        display: inline-block;
        font-family: 'Jost', sans-serif;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--rose);
        margin-bottom: 18px;
        position: relative;
        padding: 0 24px;
      }
     .section-label::before, .section-label::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 36px;
        height: 1px;
        background: var(--rose);
        opacity: 0.6;
      }
      .section-label::before { right: 100%; }
      .section-label::after  { left: 100%; }

    /* ─── NAVIGATION ─── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(251,248,246,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow 0.3s;
    }
    .nav.scrolled { box-shadow: 0 4px 32px rgba(42,31,34,0.08); }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 68px;
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 600; letter-spacing: 0.04em;
      color: var(--charcoal);
    }
    .nav-logo span { color: var(--rose); }
    .nav-links {
      display: flex; align-items: center; gap: 32px;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.88rem; font-weight: 500;
      color: var(--muted); letter-spacing: 0.04em;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--charcoal); }
    .nav-cities { position: relative; }
    .nav-cities > button {
      display: flex; align-items: center; gap: 6px;
      font-family: 'Jost', sans-serif;
      font-size: 0.88rem; font-weight: 500;
      color: var(--muted); letter-spacing: 0.04em;
      background: none; border: none; cursor: pointer; transition: color 0.2s;
    }
    .nav-cities > button:hover { color: var(--charcoal); }
    .nav-cities > button svg { transition: transform 0.2s; }
    .nav-cities.open > button svg { transform: rotate(180deg); }
    .cities-dropdown {
      position: absolute; top: calc(100% + 12px); right: 0;
      background: var(--white); border: 1px solid var(--border);
      border-radius: 12px; padding: 8px 0;
      min-width: 180px; box-shadow: 0 12px 48px rgba(42,31,34,0.1);
      opacity: 0; pointer-events: none; transform: translateY(-8px);
      transition: opacity 0.2s, transform 0.2s;
    }
    .cities-dropdown{
        max-height: 400px;   
        overflow-y: auto;    
        overflow-x: hidden;    
        border: 1px solid #ddd;
    }
    .cities-dropdown::-webkit-scrollbar {
        width: 6px;
    }
    
    .cities-dropdown::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: 10px;
    }
    .nav-cities.open .cities-dropdown {
      opacity: 1; pointer-events: all; transform: translateY(0);
    }
    .cities-dropdown a {
      display: block; padding: 10px 20px;
      font-size: 0.9rem; color: var(--muted);
      transition: background 0.15s, color 0.15s;
    }
    .cities-dropdown a:hover { background: var(--bg-alt); color: var(--charcoal); }
    .nav-cta {
      display: inline-flex; align-items: center;
      background: var(--rose); color: var(--white) !important;
      padding: 10px 22px; border-radius: 50px;
      font-size: 0.85rem !important; font-weight: 500 !important; letter-spacing: 0.04em;
      transition: background 0.2s, transform 0.15s !important;
    }
    .nav-cta:hover { background: var(--rose-deep) !important; transform: translateY(-1px); color: var(--white) !important; }
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 6px;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px;
      background: var(--charcoal); border-radius: 2px; transition: all 0.3s;
    }
    .mobile-menu {
      display: none; position: fixed; top: 68px; left: 0; right: 0;
      background: var(--white); border-bottom: 1px solid var(--border);
      padding: 20px 24px; z-index: 99; flex-direction: column; gap: 8px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a, .mobile-menu button {
      display: block; padding: 12px 0; font-size: 1rem; font-weight: 500;
      color: var(--charcoal); border: none; background: none; cursor: pointer;
      text-align: left; border-bottom: 1px solid var(--border);
      font-family: 'Jost', sans-serif; letter-spacing: 0.03em;
    }
    .mobile-cities { display: flex; flex-direction: column; gap: 0; }
    .mobile-cities a {
      padding-left: 16px; color: var(--muted); font-size: 0.95rem;
    }
    .mobile-cities{
        max-height: 300px;   
        overflow-y: auto;    
        overflow-x: hidden;    
        /* border: 1px solid #ddd; */
    }
    .mobile-cities::-webkit-scrollbar {
        width: 6px;
    }
    
    .mobile-cities::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: 10px;
    }

    /* ─── HERO ─── */
    .hero {
      padding-top: 68px; min-height: 100svh;
      display: flex; align-items: center;
      background: linear-gradient(135deg, #F7F9FB 0%, #deefe6 50%, #e7e6f1 100%);
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,122,130,0.12) 0%, transparent 70%);
    }
    .hero-inner {
      position: relative; z-index: 1;
      padding: 80px 0;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(201,122,130,0.12); border: 1px solid var(--rose-light);
      padding: 8px 18px; border-radius: 50px;
      font-size: 0.8rem; font-weight: 500; color: var(--rose-deep);
      letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 28px;
    }
    .hero-badge::before {
      content: ''; width: 6px; height: 6px;
      background: var(--rose); border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }
    .hero h1 { max-width: 680px; margin-bottom: 28px; }
    .hero h1 em { font-style: italic; color: var(--rose); }
    .hero-desc { max-width: 520px; color: var(--muted); font-size: 1.05rem; margin-bottom: 40px; }
    .hero-bullets { display: flex; flex-direction: column; gap: 12px; margin-bottom: 44px; }
    .hero-bullets li {
      display: flex; align-items: center; gap: 12px;
      list-style: none; font-size: 0.95rem; color: var(--charcoal);
    }
    .hero-bullets li::before {
      content: ''; width: 18px; height: 18px; flex-shrink: 0;
      background: var(--rose-light); border-radius: 50%;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5L13 4.5' stroke='%23A35862' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: center;
    }
    .hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
    
      .site-search-wrap { padding: 2rem 0 0; }
  .site-search-form { position: relative; max-width: 600px; }
  .site-search-input {
    width: 100%; height: 52px;
    padding: 0 60px 0 22px;
    border: 1.5px solid #E4D5D7; border-radius: 50px;
    font-family: 'Jost', sans-serif; font-size: 15px;
    color: #2A1F22; background: #fff; outline: none;
    box-sizing: border-box; transition: border-color 0.2s, box-shadow 0.2s;
  }
  .site-search-input::placeholder { color: #B09496; }
  .site-search-input:focus {
    border-color: #C97A82;
    box-shadow: 0 0 0 3px rgba(201,122,130,0.12);
  }
  .site-search-btn {
    position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px;
    background: var(--rose); border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.2s, transform 0.15s;
  }
  .site-search-btn:hover { background: var(--rose-deep); transform: translateY(-50%) scale(1.06); }
  .site-search-btn:active { transform: translateY(-50%) scale(0.97); }
  .search-link{color:red;}
  .mse2-row {padding: 25px 0;}
  
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--rose); color: var(--white);
      padding: 16px 36px; border-radius: 50px;
      font-size: 0.95rem; font-weight: 500; letter-spacing: 0.04em;
      border: none; cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 8px 32px rgba(201,122,130,0.3);
    }
    .btn-primary:hover { background: var(--rose-deep); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,122,130,0.4); }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      color: var(--charcoal); font-size: 0.95rem; font-weight: 500;
      border: 1.5px solid var(--border); padding: 15px 32px; border-radius: 50px;
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-ghost:hover { border-color: var(--rose); background: rgba(201,122,130,0.05); }
    .hero-stats {
      display: flex; gap: 40px; flex-wrap: wrap;
      margin-top: 64px; padding-top: 48px;
      border-top: 1px solid var(--border);
    }
    .stat-item { }
    .stat-value {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem; font-weight: 600; color: var(--charcoal); line-height: 1;
    }
    .stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }

    /* ─── SECTION BASE ─── */
    .section { padding: 96px 0;}
    .section-alt { background: var(--bg-alt); }
    .section-white { background: var(--white); }
    .section-head { text-align: center; margin-bottom: 60px; }
    .section-head p { max-width: 560px; margin: 16px auto 0; color: var(--muted); font-size: 1.05rem; }
    
    .trust-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--rose-light);
        color: var(--rose-dark);
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.05em;
        padding: 7px 16px;
        border-radius: 40px;
        margin-top: 20px;
      }
      .trust-badge svg { flex-shrink: 0; }

    /* ─── SAFETY SECTION ─── */
    .safety-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 24px; margin-bottom: 40px;
    }
    .safety-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 32px 28px;
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .safety-card:hover { box-shadow: 0 8px 40px rgba(42,31,34,0.08); transform: translateY(-3px); }
    .safety-card .h4 {margin-bottom: 10px;}
    .safety-icon {
      width: 44px; height: 44px; margin-bottom: 16px;
      background: rgba(201,122,130,0.1); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .safety-icon svg { width: 40px; height: 40px; }
    .safety-card h4 { margin-bottom: 8px; font-size: 1.05rem; }
    .safety-card p { font-size: 0.9rem; color: var(--muted); }
    .safety-highlight {
      background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
      color: var(--white); border-radius: var(--radius); padding: 36px 40px;
      display: flex; align-items: center; gap: 32px;
    }
    .safety-highlight svg { flex-shrink: 0; opacity: 0.9; }
    .safety-highlight h3 { color: var(--white); margin-bottom: 8px; }
    .safety-highlight p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }

    /* ─── STEPS ─── */
    .steps-list { display: flex; flex-direction: column; gap: 0; }
    .step-item {
      display: grid; grid-template-columns: 80px 1fr;
      gap: 0; align-items: start; position: relative;
    }
    .step-item:not(:last-child) .step-line::after {
      content: ''; position: absolute;
      left: 39px; top: 80px; width: 2px; bottom: 0;
      background: var(--border);
    }
    .step-left { display: flex; flex-direction: column; align-items: center; padding-top: 24px; position: relative; }
    .step-num {
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--white); border: 2px solid var(--rose);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600;
      color: var(--rose); flex-shrink: 0; position: relative; z-index: 1;
    }
    .step-content { padding: 20px 0 48px 24px; }
    .step-content h3 { margin-bottom: 10px; }
    .step-content p { color: var(--muted); font-size: 0.95rem; }
    
    .card-detail {
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 12.5px;
        font-weight: 400;
        color: var(--rose-dark);
        background: rgba(181,114,122,0.08);
        border-radius: 8px;
        padding: 8px 12px;
        width: fit-content;
        margin-top: 10px;
      }
    .card-detail::before {
        content: '';
        width: 5px;
        height: 5px;
        background: var(--rose);
        border-radius: 50%;
        flex-shrink: 0;
      }

    /* ─── CONDITIONS ─── */
    .conditions-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .cond-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 32px 24px;
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .cond-card:hover { box-shadow: 0 8px 40px rgba(42,31,34,0.08); transform: translateY(-3px); }
    .cond-ico {
      width: 52px; height: 52px; margin-bottom: 20px;
      background: rgba(201,122,130,0.08);
      border-radius: 14px; display: flex; align-items: center; justify-content: center;
    }
    .cond-ico svg { width: 40px; height: 40px; }
    .cond-card h4 { margin-bottom: 10px; font-size: 1.05rem; }
    .cond-card p { color: var(--muted); font-size: 0.9rem; }

    /* ─── ABOUT ─── */
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .about-visual {
      aspect-ratio: 4/5;
      background: linear-gradient(135deg, #F7F9FB 0%, #deefe6 50%, #e7e6f1 100%);
      border-radius: 24px; position: relative; overflow: hidden;
    }
    .about-visual::after {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='28' fill='none' stroke='rgba(255,255,255,0.15)' stroke-width='1'/%3E%3C/svg%3E") center/80px;
    }
    .about-visual-inner {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 16px;
    }
    .av-big {
      font-family: 'Cormorant Garamond', serif;
      font-size: 5rem; font-weight: 300; color: rgba(163,88,98,0.5); line-height: 1;
    }
    .av-text { font-size: 0.85rem; color: var(--rose-deep); letter-spacing: 0.12em; text-transform: uppercase; }
    .about-text { }
    .about-text h2 { margin-bottom: 24px; }
    .about-text p { color: var(--muted); margin-bottom: 16px; font-size: 1rem; }
    .about-facts { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
    .about-fact { }
    .about-fact-num {
      font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 600;
      color: var(--rose); line-height: 1;
    }
    .about-fact-label { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }

    /* ─── WHY US ─── */
    .why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .why-card {
      border: 1px solid var(--border); border-radius: var(--radius);
      padding: 36px 32px;
      transition: border-color 0.25s, background 0.25s;
    }
    .why-card:hover { border-color: var(--rose-light); background: rgba(201,122,130,0.03); }
    .why-num {
      font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300;
      color: var(--rose-light); line-height: 1; margin-bottom: 16px;
    }
    .why-card h4 { font-size: 1.1rem; margin-bottom: 10px; }
    .why-card p { color: var(--muted); font-size: 0.9rem; }

    /* ─── TABLE ─── */
    .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .jobs-table { width: 100%; border-collapse: collapse; min-width: 680px; }
    .jobs-table thead th {
      text-align: left; font-family: 'Jost', sans-serif;
      font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--muted);
      padding: 16px 20px; border-bottom: 2px solid var(--border);
      white-space: nowrap;
    }
    .jobs-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
    .jobs-table tbody tr:hover { background: rgba(201,122,130,0.04); }
    .jobs-table tbody td { padding: 20px 20px; vertical-align: top; font-size: 0.92rem; }
    .jobs-table tbody td:first-child { font-weight: 600; color: var(--charcoal); }
    .salary { color: var(--rose-deep); font-weight: 600; font-size: 0.95rem; }
    .tag {
      display: inline-block; padding: 3px 10px;
      background: rgba(201,122,130,0.1); color: var(--rose-deep);
      border-radius: 20px; font-size: 0.78rem; font-weight: 500;
      margin: 2px 2px 2px 0;
    }
    .career-badge {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 4px 12px; border-radius: 20px;
      font-size: 0.8rem; font-weight: 500;
    }
    .career-badge.up { background: rgba(100,185,140,0.12); color: #3D8A60; }
    .career-badge.mid { background: rgba(201,122,130,0.12); color: var(--rose-deep); }
    .mobile-note { display: none; text-align: center; font-size: 0.82rem; color: var(--muted); margin-top: 16px; }
    
    /* ─── CALC ─── */
    
    .calculator-container {
        background: white;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        padding: 40px;
        max-width: 900px;
        width: 100%;
        margin: auto;
    }

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

    .header h1 {
        font-size: 28px;
        color: #333;
        margin-bottom: 8px;
        font-weight: 600;
    }

    .header p {
        color: #666;
        font-size: 14px;
    }

    .form-group {
        margin-bottom: 25px;
    }

    .form-group label {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: #333;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .select-group,
    .input-group {
        display: flex;
        gap: 10px;
    }

    select,
    input[type="number"],
    input[type="range"] {
        font-family: inherit;
        font-size: 14px;
    }

    select,
    input[type="number"] {
        width: 100%;
        padding: 12px 14px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        transition: border-color 0.3s;
    }

    select:focus,
    input[type="number"]:focus {
        outline: none;
        border-color: var(--rose-dark);
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

    select {
        cursor: pointer;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        padding-right: 38px;
        appearance: none;
    }

    .slider-container {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    input[type="range"] {
        flex: 1;
        height: 6px;
        cursor: pointer;
        background: #e0e0e0;
        border-radius: 3px;
        border: none;
        -webkit-appearance: none;
        appearance: none;
    }

    input[type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 20px;
        height: 20px;
        background: var(--rose-dark);
        border-radius: 50%;
        cursor: pointer;
        transition: background 0.3s;
        box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
    }

    input[type="range"]::-moz-range-thumb {
        width: 20px;
        height: 20px;
        background: var(--rose-dark);
        border-radius: 50%;
        cursor: pointer;
        border: none;
        transition: background 0.3s;
        box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
    }

    input[type="range"]::-webkit-slider-thumb:hover {
        background: #764ba2;
    }

    input[type="range"]::-moz-range-thumb:hover {
        background: #764ba2;
    }

    .slider-value {
        min-width: 45px;
        text-align: right;
        font-weight: 600;
        color: var(--rose-dark);
        font-size: 16px;
    }

    .bonus-section {
        background: #f5f5f5;
        border-radius: 12px;
        padding: 15px;
        margin-bottom: 25px;
    }

    .bonus-label {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
    }

    .bonus-label span:first-child {
        font-weight: 600;
        color: #333;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .bonus-label span:last-child {
        color: var(--rose);
        font-weight: 600;
    }

    .result-box {
        background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
        color: white;
        border-radius: 12px;
        padding: 25px;
        margin-bottom: 20px;
        text-align: center;
    }

    .result-label {
        font-size: 13px;
        opacity: 0.9;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .result-value {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .result-currency {
        font-size: 16px;
        opacity: 0.9;
    }

    .breakdown {
        background: #f5f5f5;
        border-radius: 12px;
        padding: 15px;
        margin-bottom: 20px;
    }

    .breakdown-item {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
        font-size: 14px;
    }

    .breakdown-item:last-child {
        margin-bottom: 0;
        padding-top: 10px;
        border-top: 2px solid #e0e0e0;
        font-weight: 600;
        color: #333;
    }

    .breakdown-label {
        color: #666;
    }

    .breakdown-value {
        color: #333;
        font-weight: 600;
    }

    .info-text {
        font-size: 12px;
        color: #999;
        text-align: center;
        margin-top: 15px;
    }

    @media (max-width: 480px) {
        .calculator-container {
            padding: 25px;
        }

        .header h1 {
            font-size: 24px;
        }

        .result-value {
            font-size: 40px;
        }
    }

    /* ─── FAQ ─── */
    .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-q {
      width: 100%; background: none; border: none; cursor: pointer;
      display: flex; justify-content: space-between; align-items: center;
      padding: 24px 0; text-align: left; gap: 16px;
      font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 500;
      color: var(--charcoal); transition: color 0.2s;
    }
    .faq-q:hover { color: var(--rose); }
    .faq-q svg { flex-shrink: 0; transition: transform 0.3s; color: var(--rose); }
    .faq-item.open .faq-q svg { transform: rotate(45deg); }
    .faq-a {
      max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
      color: var(--muted); font-size: 0.95rem; line-height: 1.7;
    }
    .faq-item.open .faq-a { max-height: 400px; padding-bottom: 24px; }

    /* ─── GUARANTEES ─── */
    .guarantees-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .guar-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 32px 24px;
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .guar-card:hover { box-shadow: 0 8px 40px rgba(42,31,34,0.08); transform: translateY(-3px); }
    .guar-ico {
      width: 52px; height: 52px; margin-bottom: 18px;
      border-radius: 12px; display: flex; align-items: center; justify-content: center;
      border: 1.5px solid var(--rose-light);
    }
    .guar-ico svg { width: 40px; height: 40px; color: var(--rose); }
    .guar-card h4 { margin-bottom: 10px; font-size: 1rem; }
    .guar-card p { color: var(--muted); font-size: 0.88rem; }

    /* ─── FOOTER ─── */
    footer {
      background: var(--charcoal); color: rgba(255,255,255,0.6);
      padding: 64px 0 40px;
    }
    .footer-inner {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px;
    }
    .footer-brand {}
    .footer-logo {
      font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600;
      color: var(--white); margin-bottom: 16px;
    }
    .footer-logo span { color: var(--rose); }
    .footer-desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: 24px; }
    .footer-tg {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
      padding: 10px 18px; border-radius: 50px;
      color: var(--white); font-size: 0.85rem; font-weight: 500;
      transition: background 0.2s;
    }
    .footer-tg:hover { background: rgba(255,255,255,0.14); }
    .footer-col h5 {
      color: var(--white); font-family: 'Jost', sans-serif;
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; margin-bottom: 20px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a { font-size: 0.9rem; transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--white); }
    .footer-bottom {
      margin-top: 48px; padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.08);
      display: flex; justify-content: space-between; align-items: center;
      font-size: 0.8rem; flex-wrap: wrap; gap: 12px;
    }

    /* ─── DISCLAIMER ─── */
    .disclaimer {
      background: #1A1315; color: rgba(255,255,255,0.35);
      padding: 40px 0;
    }
    .disclaimer-title {
      font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; margin-bottom: 16px;
      color: rgba(255,255,255,0.5);
    }
    .disclaimer-text { font-size: 0.78rem; line-height: 1.7; max-width: 800px; }
    .disclaimer-notes { margin-top: 24px; display: flex; flex-direction: column; gap: 0; }
    .note-item { border-top: 1px solid rgba(255,255,255,0.08); }
    .note-btn {
      width: 100%; background: none; border: none; cursor: pointer;
      display: flex; justify-content: space-between; align-items: center;
      padding: 14px 0; gap: 12px; text-align: left;
      color: rgba(255,255,255,0.35); font-family: 'Jost', sans-serif;
      font-size: 0.78rem; transition: color 0.2s;
    }
    .note-btn:hover { color: rgba(255,255,255,0.6); }
    .note-btn svg { flex-shrink: 0; transition: transform 0.25s; }
    .note-item.open .note-btn svg { transform: rotate(45deg); }
    .note-body {
      max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s;
      font-size: 0.76rem; color: rgba(255,255,255,0.25); line-height: 1.7;
    }
    .note-item.open .note-body { max-height: 300px; padding-bottom: 16px; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .conditions-grid { grid-template-columns: repeat(2, 1fr); }
      .guarantees-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      h1 { font-size: 2.2rem; }
      h2 { font-size: 1.9rem; }
      .hero-stats { gap: 28px; }
      .safety-grid { grid-template-columns: 1fr; }
      .safety-highlight { flex-direction: column; gap: 20px; text-align: center; }
      .about-grid { grid-template-columns: 1fr; }
      .about-visual { aspect-ratio: 16/9; }
      .why-grid { grid-template-columns: 1fr; }
      .conditions-grid { grid-template-columns: 1fr; }
      .guarantees-grid { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .mobile-note { display: block; }
      .step-item { grid-template-columns: 60px 1fr; }
      .step-item:not(:last-child) .step-line::after { left: 29px; }
    }
    @media (max-width: 520px) {
      .section { padding: 72px 0; }
      .hero-actions { flex-direction: column; align-items: flex-start; }
      .hero-actions .btn-ghost { width: 100%; justify-content: center; }
    }

    /* ─── ANIMATIONS ─── */
    .fade-up {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up:nth-child(2) { transition-delay: 0.1s; }
    .fade-up:nth-child(3) { transition-delay: 0.2s; }
    .fade-up:nth-child(4) { transition-delay: 0.3s; }
    .fade-up:nth-child(5) { transition-delay: 0.4s; }
    .fade-up:nth-child(6) { transition-delay: 0.5s; }
 
   .rv-section{background:var(--bg-alt);padding:72px 0;}
  .rv-container{max-width:1160px;margin:0 auto;padding:0 24px}
  .rv-head{text-align:center;margin:48px 0;}
  .rv-label{display:inline-block;font-size:.7rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:var(--rose);margin-bottom:10px}
  .rv-head h2{font-size:clamp(1.9rem,3.5vw,2.8rem);font-weight:300;color:var(--charcoal);line-height:1.2;margin-bottom:14px}
  .rv-head p{color:var(--muted);font-size:1rem;max-width:480px;margin:0 auto 24px}
  .rv-agg{display:inline-flex;align-items:center;gap:12px;background:var(--white);border:1px solid var(--border);border-radius:50px;padding:10px 22px}
  .rv-agg-num{font-size:2rem;font-weight:600;color:var(--charcoal);line-height:1}
  .rv-agg-right{text-align:left}
  .rv-agg-stars{display:flex;gap:3px;margin-bottom:3px}
  .rv-agg-count{font-size:.78rem;color:var(--muted)}
  .star{width:16px;height:16px;fill:var(--rose)}
  .star-e{fill:var(--border)}
  .rv-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-bottom:32px}
  .rv-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);padding:24px;display:flex;flex-direction:column;gap:16px;transition:box-shadow .25s,transform .25s}
  .rv-card:hover{box-shadow:0 8px 40px rgba(42,31,34,.08);transform:translateY(-2px)}
  .rv-card-head{display:flex;align-items:center;gap:12px}
  .rv-avatar{width:44px;height:44px;border-radius:50%;flex-shrink:0;display:flex;align-items:center;justify-content:center;font-size:.9rem;font-weight:600;color:#fff}
  .av1{background:#C97A82} .av2{background:#8AA0C9} .av3{background:#85B585} .av4{background:#C9A87A} .av5{background:#A985B5} .av6{background:#85B5B5}
  .rv-meta{flex:1;min-width:0}
  .rv-author{font-size:.93rem;font-weight:600;color:var(--charcoal);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
  .rv-date{font-size:.76rem;color:var(--muted);margin-top:2px}
  .rv-stars{display:flex;gap:3px}
  .rv-body{font-size:.88rem;color:var(--charcoal);line-height:1.7;flex:1}
  .rv-reply{background:var(--bg-alt);border-left:3px solid var(--rose-light);border-radius:0 8px 8px 0;padding:12px 14px;font-size:.82rem;color:var(--muted);line-height:1.6}
  .rv-reply strong{display:block;font-size:.74rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--rose);margin-bottom:5px}
  .rv-hidden{display:none}
  .rv-actions{text-align:center;margin-top:30px}
  .rv-more-btn{display:inline-flex;align-items:center;gap:8px;background:var(--white);border:1.5px solid var(--border);color:var(--charcoal);padding:13px 32px;border-radius:50px;font-size:.9rem;font-weight:500;cursor:pointer;transition:border-color .2s,background .2s}
  .rv-more-btn:hover{border-color:var(--rose);background:rgba(201,122,130,.04)}
  .rv-more-btn svg{transition:transform .3s}
  .rv-more-btn.loading svg{animation:spin .8s linear infinite}
  @keyframes spin{to{transform:rotate(360deg)}}
  @media(max-width:900px){.rv-grid{grid-template-columns:repeat(2,1fr)}}
  @media(max-width:580px){.rv-grid{grid-template-columns:1fr}}