  :root {
    --orange:        #E84B00;
    --orange-light:  #FF6520;
    --orange-bg:     #FFF3EE;
    --orange-border: #FFDACB;
    --dark:          #1A1A1A;
    --dark2:         #2C2C2C;
    --body-bg:       #F7F5F2;
    --card-bg:       #FFFFFF;
    --card-bg2:      #F0EDE9;
    --text:          #1A1A1A;
    --text2:         #4A4A4A;
    --muted:         #888888;
    --border:        #E2DDD8;
    --green:         #00A664;
    --green-bg:      #E6F7F0;
    --radius:        6px;
    --shadow:        0 2px 16px rgba(0,0,0,0.07);
    --shadow-lg:     0 8px 40px rgba(0,0,0,0.10);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--body-bg);
    color: var(--text);
    font-family: 'Golos Text', sans-serif;
    overflow-x: hidden;
  }

  /* SCROLLBAR */
  ::-webkit-scrollbar { width: 5px; }
  ::-webkit-scrollbar-track { background: var(--body-bg); }
  ::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 10px; }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 5vw;
    background: rgba(247,245,242,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s, box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: var(--shadow); }

  .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 3px;
    color: var(--dark);
    text-decoration: none;
  }
  .logo span { color: var(--orange); }

  .nav-center {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .nav-link {
    text-decoration: none;
    color: var(--text2);
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-link:hover { color: var(--orange); }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .nav-phone-icon {
    width: 36px; height: 36px;
    background: var(--orange);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    animation: pulse-ring 2.5s infinite;
    flex-shrink: 0;
  }
  @keyframes pulse-ring {
    0%,100% { box-shadow: 0 0 0 0 rgba(232,75,0,0.35); }
    50%      { box-shadow: 0 0 0 10px rgba(232,75,0,0); }
  }
  .nav-phone-icon svg { width: 16px; height: 16px; fill: white; }
  .nav-phone-text { line-height: 1.25; }
  .nav-phone-label { font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
  .nav-phone-num   { font-size: 1rem; font-weight: 700; color: var(--dark); }

  .nav-cta {
    background: var(--orange);
    color: white;
    border: none;
    padding: 10px 22px;
    font-family: 'Golos Text', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: var(--radius);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .nav-cta:hover { background: var(--orange-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,75,0,0.3); }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    background: var(--body-bg);
  }

  .hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(232,75,0,0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
  }

  .hero-accent-blob {
    position: absolute;
    right: -100px; top: 50%;
    transform: translateY(-50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(232,75,0,0.07) 0%, transparent 65%);
    pointer-events: none;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 130px 5vw 80px 5vw;
    position: relative;
    z-index: 2;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-bg);
    border: 1px solid rgba(0,166,100,0.25);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green);
    margin-bottom: 28px;
    width: fit-content;
    animation: fadeInUp 0.5s ease both;
  }
  .badge-dot {
    width: 7px; height: 7px;
    background: var(--green);
    border-radius: 50%;
    animation: blink 1.5s infinite;
  }
  @keyframes blink { 0%,100%{ opacity:1; } 50%{ opacity:0.2; } }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 6.5vw, 6rem);
    line-height: 0.95;
    letter-spacing: 1px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s 0.1s ease both;
  }
  .hero-title .line-accent { color: var(--orange); display: block; }
  .hero-title .line-outline {
    display: block;
    -webkit-text-stroke: 2px var(--dark);
    color: transparent;
  }

  .hero-desc {
    font-size: 1.08rem;
    color: var(--text2);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 38px;
    animation: fadeInUp 0.6s 0.2s ease both;
  }

  .hero-stats {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s 0.3s ease both;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    width: fit-content;
    box-shadow: var(--shadow);
  }
  .stat {
    padding: 18px 28px;
    text-align: center;
    border-right: 1px solid var(--border);
  }
  .stat:last-child { border-right: none; }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    line-height: 1;
    color: var(--orange);
  }
  .stat-label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }

  .hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s 0.4s ease both;
  }
  .btn-primary {
    background: var(--orange);
    color: white;
    border: none;
    padding: 16px 34px;
    font-family: 'Golos Text', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: var(--radius);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
  }
  .btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,0.2),transparent);
    transition: left 0.4s;
  }
  .btn-primary:hover::after { left:100%; }
  .btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(232,75,0,0.35); }

  .btn-secondary {
    background: white;
    color: var(--dark);
    border: 1.5px solid var(--border);
    padding: 16px 34px;
    font-family: 'Golos Text', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-secondary:hover { border-color: var(--orange); color: var(--orange); }

  /* HERO RIGHT */
  .hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 120px 4vw 80px;
  }

  .hero-visual {
    position: relative;
    width: 420px;
    height: 500px;
  }
  .hero-orbit {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid var(--border);
  }
  .hero-orbit-1 {
    width: 340px; height: 340px;
    animation: spin-slow 25s linear infinite;
  }
  .hero-orbit-1::before {
    content: '';
    position: absolute;
    top: -5px; left: 50%;
    width: 10px; height: 10px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(232,75,0,0.2);
  }
  .hero-orbit-2 {
    width: 260px; height: 260px;
    border-style: dashed;
    border-color: var(--orange-border);
    animation: spin-slow 18s linear infinite reverse;
  }
  @keyframes spin-slow {
    from { transform: translate(-50%,-50%) rotate(0deg); }
    to   { transform: translate(-50%,-50%) rotate(360deg); }
  }

  .hero-center-box {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 140px; height: 140px;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    box-shadow: var(--shadow-lg);
  }

  .floating-card {
    position: absolute;
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
  }
  .fc1 { top: 30px; right: 10px; animation: float1 4s ease-in-out infinite; }
  .fc2 { bottom: 70px; left: -10px; animation: float2 5s ease-in-out infinite; }
  .fc3 { top: 155px; left: -20px; animation: float1 3.5s ease-in-out infinite 0.8s; }
  @keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
  @keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)} }
  .fc-icon {
    width: 36px; height: 36px;
    background: var(--orange-bg);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  .fc-text .fc-title { font-weight: 700; font-size: 0.8rem; color: var(--dark); }
  .fc-text .fc-sub   { font-size: 0.7rem; color: var(--muted); }

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

  /* ─── TICKER ─── */
  .ticker {
    background: var(--orange);
    padding: 11px 0;
    overflow: hidden;
    position: relative;
  }
  .ticker-track {
    display: flex;
    animation: ticker 35s linear infinite;
    width: max-content;
  }
  .ticker-item {
    white-space: nowrap;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    padding: 0 36px;
    color: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .ticker-item::after { content:'◆'; font-size:0.5rem; color:rgba(255,255,255,0.5); }
  @keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ─── SECTION COMMON ─── */
  section { padding: 96px 5vw; }

  .section-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--orange);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .section-tag::before { content:''; width:28px; height:2px; background:var(--orange); }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    line-height: 1;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    color: var(--dark);
  }
  .section-subtitle {
    color: var(--text2);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 56px;
  }

  /* ─── SERVICES ─── */
  .services { background: white; }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
  }

  .service-card {
    background: white;
    padding: 34px 30px;
    transition: background 0.25s, transform 0.25s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .service-card:hover { background: var(--orange-bg); }
  .service-card:hover::after { transform: scaleX(1); }

  .sc-icon { font-size: 2.4rem; margin-bottom: 18px; display: block; }
  .sc-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--dark);
    margin-bottom: 14px;
  }
  .sc-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
  .sc-list li {
    font-size: 0.87rem;
    color: var(--text2);
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }
  .sc-list li::before {
    content: '→';
    color: var(--orange);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .sc-price {
    margin-top: 18px;
    font-size: 0.8rem;
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* ─── HOW ─── */
  .how { background: var(--body-bg); }

  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
  }
  .steps::before {
    content: '';
    position: absolute;
    top: 44px; left: 12%;
    width: 76%; height: 2px;
    background: linear-gradient(90deg, var(--orange) 0%, rgba(232,75,0,0.1) 100%);
    z-index: 0;
  }

  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    position: relative;
    z-index: 1;
  }
  .step-num {
    width: 88px; height: 88px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--orange);
    margin-bottom: 24px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
  }
  .step:hover .step-num {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(232,75,0,0.3);
  }
  .step-emoji {
    position: absolute;
    bottom: -4px; right: -4px;
    font-size: 1.3rem;
    line-height: 1;
  }
  .step-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--dark);
  }
  .step-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }

  /* ─── WHY ─── */
  .why { background: white; }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
  }
  .why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 8px;
  }
  .why-feature {
    background: var(--body-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px 22px;
    transition: border-color 0.25s, box-shadow 0.25s;
  }
  .why-feature:hover { border-color: var(--orange-border); box-shadow: var(--shadow); }
  .wf-icon { font-size: 1.8rem; margin-bottom: 12px; }
  .wf-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; color: var(--dark); }
  .wf-desc  { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

  .why-right { display: flex; flex-direction: column; gap: 28px; }
  .big-stat-card {
    background: var(--orange);
    border-radius: 18px;
    padding: 32px 36px;
    color: white;
  }
  .big-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5.5rem;
    line-height: 1;
    color: white;
    display: flex;
    align-items: baseline;
    gap: 4px;
  }
  .big-number .suffix { font-size: 2.5rem; }
  .big-caption { font-size: 1.1rem; font-weight: 600; margin-top: 6px; opacity: 0.9; }

  .review-card {
    background: var(--body-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 22px;
    transition: box-shadow 0.2s;
  }
  .review-card:hover { box-shadow: var(--shadow); }
  .review-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 8px; letter-spacing: 2px; }
  .review-text  { font-size: 0.88rem; color: var(--text2); line-height: 1.65; margin-bottom: 12px; font-style: italic; }
  .review-author { font-weight: 700; font-size: 0.85rem; color: var(--dark); }
  .review-date   { font-size: 0.73rem; color: var(--muted); }

  /* ─── FORM SECTION ─── */
  .form-section {
    background: var(--body-bg);
    position: relative;
  }
  .form-section::before {
    content: '';
    position: absolute;
    right: 0; top: 0;
    width: 50%; height: 100%;
    background: white;
    pointer-events: none;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
  }

  .form-info { padding-top: 20px; }
  .form-info-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.6rem);
    line-height: 1.02;
    margin-bottom: 20px;
    color: var(--dark);
  }
  .form-info-title span { color: var(--orange); }
  .form-info-desc { color: var(--text2); line-height: 1.8; margin-bottom: 36px; font-size: 0.98rem; }

  .form-benefits { display: flex; flex-direction: column; gap: 14px; }
  .form-benefit {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.93rem;
    color: var(--text2);
  }
  .fb-check {
    width: 32px; height: 32px;
    background: var(--green-bg);
    border: 1px solid rgba(0,166,100,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    color: var(--green);
    flex-shrink: 0;
    font-weight: 700;
  }

  .form-box {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 44px 38px;
    box-shadow: var(--shadow-lg);
    position: relative;
  }
  .form-box-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--dark);
    margin-bottom: 6px;
  }
  .form-box-sub { color: var(--muted); font-size: 0.85rem; margin-bottom: 28px; }

  .form-row { display: flex; gap: 16px; }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
    flex: 1;
  }
  .form-group label {
    font-size: 0.77rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text2);
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: var(--body-bg);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 13px 16px;
    color: var(--dark);
    font-family: 'Golos Text', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: var(--muted); }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--orange);
    background: white;
    box-shadow: 0 0 0 3px rgba(232,75,0,0.08);
  }
  .form-group select { cursor: pointer; }
  .form-group textarea { resize: vertical; min-height: 96px; }

  .form-submit {
    width: 100%;
    background: var(--orange);
    color: white;
    border: none;
    padding: 17px;
    font-family: 'Golos Text', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 10px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 6px;
    transition: all 0.25s;
  }
  .form-submit:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(232,75,0,0.35); }

  .form-policy {
    text-align: center;
    font-size: 0.73rem;
    color: var(--muted);
    margin-top: 12px;
    line-height: 1.5;
  }
  .form-policy a { color: var(--orange); text-decoration: none; }

  /* SUCCESS */
  .success-overlay {
    display: none;
    position: absolute;
    inset: 0;
    background: white;
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    z-index: 10;
  }
  .success-overlay.show { display: flex; }
  .success-icon  { font-size: 3.5rem; margin-bottom: 18px; }
  .success-title { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; color: var(--green); margin-bottom: 10px; }
  .success-text  { color: var(--text2); line-height: 1.75; font-size: 0.98rem; }

  /* ─── FAQ ─── */
  .faq-section { background: white; }
  .seo-accordion { max-width: 860px; }
  .seo-item { border-bottom: 1px solid var(--border); }
  .seo-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--dark);
    font-family: 'Golos Text', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s;
  }
  .seo-question:hover { color: var(--orange); }
  .seo-question .arrow {
    font-size: 1rem;
    color: var(--orange);
    transition: transform 0.3s;
    flex-shrink: 0;
  }
  .seo-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 0.9rem;
    color: var(--text2);
    line-height: 1.8;
  }
  .seo-item.open .seo-answer { max-height: 300px; padding-bottom: 20px; }
  .seo-item.open .arrow { transform: rotate(180deg); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--dark);
    color: #B0ADAA;
    padding: 64px 5vw 30px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
  }
  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.3rem;
    letter-spacing: 3px;
    color: white;
    margin-bottom: 14px;
  }
  .footer-logo span { color: var(--orange); }
  .footer-desc {
    font-size: 0.87rem;
    line-height: 1.75;
    margin-bottom: 22px;
    color: #888;
  }
  .footer-phone {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    letter-spacing: 2px;
    color: var(--orange);
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    transition: color 0.2s;
  }
  .footer-phone:hover { color: var(--orange-light); }
  .footer-phone-sub { font-size: 0.75rem; color: #666; text-transform: uppercase; letter-spacing: 2px; }

  .footer-col-title {
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 18px;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a { color: #888; text-decoration: none; font-size: 0.87rem; transition: color 0.2s; }
  .footer-links a:hover { color: var(--orange); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: #555;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-bottom a { color: #555; text-decoration: none; }
  .footer-bottom a:hover { color: var(--orange); }

  /* ─── FLOATING CALL ─── */
  .float-call {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 200;
    width: 60px; height: 60px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 28px rgba(232,75,0,0.45);
    animation: pulse-ring 2.5s infinite;
    transition: transform 0.2s;
  }
  .float-call:hover { transform: scale(1.1); }
  .float-call svg { width: 26px; height: 26px; fill: white; }

  /* ─── MODAL ─── */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26,26,26,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 500;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .modal-overlay.open { display: flex; }
  .modal {
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 44px 38px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: scaleIn 0.28s ease;
  }
  @keyframes scaleIn {
    from { opacity:0; transform:scale(0.92); }
    to   { opacity:1; transform:scale(1); }
  }
  .modal-close {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--body-bg);
    border: 1px solid var(--border);
    color: var(--muted);
    width: 34px; height: 34px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }
  .modal-close:hover { background: var(--orange-bg); color: var(--orange); border-color: var(--orange-border); }
  .modal-title { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; letter-spacing: 2px; color: var(--dark); margin-bottom: 6px; }
  .modal-sub { color: var(--muted); font-size: 0.88rem; margin-bottom: 28px; }

  /* ─── SUBPAGE HERO (for inner pages) ─── */
  .page-hero {
    padding: 140px 5vw 64px;
    background: var(--body-bg);
    position: relative;
    overflow: hidden;
  }
  .page-hero .hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(232,75,0,0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
  }
  .page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
  }
  .page-hero .section-tag { margin-bottom: 14px; }
  .page-hero .section-title { margin-bottom: 16px; }
  .page-hero .section-subtitle { margin-bottom: 0; }

  /* ─── BREADCRUMBS ─── */
  .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 24px;
    flex-wrap: wrap;
  }
  .breadcrumbs a {
    color: var(--orange);
    text-decoration: none;
    transition: color 0.2s;
  }
  .breadcrumbs a:hover { color: var(--orange-light); }
  .breadcrumbs .sep { color: var(--border); }

  /* ─── CONTENT SECTION ─── */
  .content-section {
    padding: 64px 5vw;
    background: white;
  }
  .content-section.alt { background: var(--body-bg); }
  .content-inner {
    max-width: 860px;
  }
  .content-inner p {
    color: var(--text2);
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 0.95rem;
  }
  .content-inner h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 1px;
    color: var(--dark);
    margin-bottom: 14px;
    margin-top: 32px;
  }
  .content-inner h3:first-child { margin-top: 0; }
  .content-inner ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
  }
  .content-inner ul li {
    font-size: 0.9rem;
    color: var(--text2);
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }
  .content-inner ul li::before {
    content: '→';
    color: var(--orange);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
  }

  /* ─── CTA BANNER ─── */
  .cta-banner {
    background: var(--orange);
    padding: 56px 5vw;
    text-align: center;
  }
  .cta-banner-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 12px;
    letter-spacing: 2px;
  }
  .cta-banner-desc {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.7;
  }
  .cta-banner .btn-primary {
    background: white;
    color: var(--orange);
  }
  .cta-banner .btn-primary:hover {
    background: var(--body-bg);
    box-shadow: 0 10px 32px rgba(0,0,0,0.15);
  }

  /* ─── 404 ─── */
  .page-404 {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 5vw 80px;
  }
  .page-404-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(8rem, 20vw, 14rem);
    line-height: 1;
    color: var(--orange);
    opacity: 0.15;
  }
  .page-404-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 14px;
    letter-spacing: 2px;
    margin-top: -20px;
  }
  .page-404-text {
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 32px;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .steps { grid-template-columns: repeat(2,1fr); gap: 40px; }
    .steps::before { display: none; }
    .why-grid { grid-template-columns: 1fr; gap: 48px; }
    .form-grid { grid-template-columns: 1fr; gap: 48px; }
    .form-section::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .nav-center { display: none; }
  }
  @media (max-width: 768px) {
    nav { padding: 12px 4vw; }
    .nav-phone { display: none; }
    section { padding: 64px 4vw; }
    .hero-left { padding: 100px 4vw 56px; }
    .services-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr 1fr; }
    .why-features { grid-template-columns: 1fr; }
    .form-box { padding: 28px 22px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .modal { padding: 28px 22px; }
    .form-row { flex-direction: column; gap: 0; }
    .hero-stats { flex-wrap: wrap; }
    .page-hero { padding: 110px 4vw 48px; }
  }
