 :root {
    --blue: #1A1AFF;
    --blue-dark: #1010CC;
    --gray-dark: #2E2E2E;
    --gray-mid: #5A5A5A;
    --gray-light: #F5F5F5;
    --white: #FFFFFF;
    --border: #E0E0E0;
    --radius: 16px;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Geologica', sans-serif; color: var(--gray-dark); background: var(--white); overflow-x: hidden; }

  /* HEADER */
  header {
    position: sticky; top: 0; z-index: 100;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 0 48px; display: flex; align-items: center;
    justify-content: space-between; height: 72px;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    transition: box-shadow .3s;
  }
  .logo-wrap { display: flex; align-items: center; gap: 14px; text-decoration: none; }
  .logo-m {
    display: flex; align-items: center; justify-content: center;
    width: 130px; height: 52px;
  }

  .logo-m img{
    width: 130px;
    margin-left: 20px;
  }
  .logo-text .name {
    font-family: 'Unbounded', sans-serif; font-size: 20px; font-weight: 700;
    color: var(--gray-dark); letter-spacing: -0.5px; display: block;
  }
  .logo-text .sub { font-size: 10px; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 1.5px; }
  nav { display: flex; gap: 28px; align-items: center; }
  nav a {
    text-decoration: none; color: var(--gray-dark); font-size: 14px; font-weight: 500;
    transition: color .2s; position: relative;
  }
  nav a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 2px; background: var(--blue); transform: scaleX(0); transition: transform .2s;
  }
  nav a:hover { color: var(--blue); }
  nav a:hover::after { transform: scaleX(1); }
  .header-right { display: flex; align-items: center; gap: 20px; }
  .header-phone { display: flex; flex-direction: column; align-items: flex-end; }
  .header-phone a { font-family: 'Unbounded', sans-serif; font-size: 14px; font-weight: 600; color: var(--blue); text-decoration: none; }
  .header-phone span { font-size: 10px; color: var(--gray-mid); }
  .btn-primary {
    background: var(--blue); color: white; border: none; border-radius: 50px;
    padding: 11px 26px; font-family: 'Geologica', sans-serif; font-size: 13.5px;
    font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block;
    transition: background .2s, transform .15s, box-shadow .2s;
  }
  .btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(26,26,255,.3); }
  .btn-outline {
    background: transparent; color: var(--blue); border: 2px solid var(--blue);
    border-radius: 50px; padding: 10px 24px; font-family: 'Geologica', sans-serif;
    font-size: 13.5px; font-weight: 600; cursor: pointer; text-decoration: none;
    display: inline-block; transition: all .2s;
  }
  .btn-outline:hover { background: var(--blue); color: white; transform: translateY(-1px); }

  /* HERO */
  .hero {
    min-height: calc(100vh - 72px);
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; padding: 60px 80px; gap: 60px;
    background: linear-gradient(140deg, #f4f4ff 0%, #fff 55%);
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; top: -150px; right: -150px;
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(26,26,255,.07) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero::after {
    content: ''; position: absolute; bottom: -100px; left: -100px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(26,26,255,.04) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-content { animation: fadeInUp .8s ease both; }
  @keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
  .hero-tag {
    display: inline-block; background: rgba(26,26,255,.09); color: var(--blue);
    font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    padding: 6px 16px; border-radius: 50px; margin-bottom: 24px;
  }
  .hero h1 {
    font-family: 'Unbounded', sans-serif; font-size: clamp(30px, 3.5vw, 52px);
    font-weight: 700; line-height: 1.1; color: var(--gray-dark);
    margin-bottom: 24px; letter-spacing: -1px;
  }
  .hero h1 span { color: var(--blue); }
  .hero-desc { font-size: 17px; color: var(--gray-mid); line-height: 1.75; margin-bottom: 40px; max-width: 500px; }
  .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
  .hero-stats {
    display: flex; gap: 40px; margin-top: 52px; padding-top: 40px;
    border-top: 1px solid var(--border);
  }
  .stat { display: flex; flex-direction: column; }
  .stat-num { font-family: 'Unbounded', sans-serif; font-size: 30px; font-weight: 700; color: var(--blue); line-height: 1; }
  .stat-label { font-size: 12.5px; color: var(--gray-mid); margin-top: 6px; line-height: 1.3; }

  /* HERO VISUAL */
  .hero-visual { display: flex; justify-content: center; align-items: center; animation: fadeInUp .8s .2s ease both; }
  .hero-card {
    border-radius: 24px; padding: 40px 36px; max-width: 500px; width: 100%;
  }
  .hero-card-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
  .hero-card-logo span.name { font-family: 'Unbounded', sans-serif; font-size: 18px; font-weight: 700; color: var(--gray-dark); }
  .hero-card-logo span.sub { font-size: 11px; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 1px; display: block; }
  .effect-list { display: flex; flex-direction: column; gap: 12px; }
  .effect-list img { width: 90%; border-radius:30px; }
  .effect-item {
    display: flex; gap: 12px; align-items: flex-start;
    background: var(--gray-light); border-radius: 12px; padding: 14px 16px;
  }
  .effect-item .emo { font-size: 20px; flex-shrink: 0; }
  .effect-item strong { font-size: 13px; font-weight: 700; display: block; margin-bottom: 3px; }
  .effect-item span { font-size: 12px; color: var(--gray-mid); line-height: 1.4; }

  /* SECTION HEADER */
  .section-header { text-align: center; margin-bottom: 56px; }
  .section-tag {
    display: inline-block; background: rgba(26,26,255,.07); color: var(--blue);
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px;
    padding: 5px 14px; border-radius: 50px; margin-bottom: 14px;
  }
  .section-header h2 {
    font-family: 'Unbounded', sans-serif; font-size: clamp(24px, 3vw, 38px);
    font-weight: 700; color: var(--gray-dark); letter-spacing: -0.5px;
    line-height: 1.15; margin-bottom: 14px;
  }
  .section-header p { font-size: 16px; color: var(--gray-mid); max-width: 540px; margin: 0 auto; line-height: 1.65; }

  /* ABOUT — HOW IT WORKS */
  .how-it-works { padding: 100px 80px; background: white; }
  .how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .how-text h2 {
    font-family: 'Unbounded', sans-serif; font-size: clamp(26px, 3vw, 38px);
    font-weight: 700; line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.5px;
  }
  .how-text h2 span { color: var(--blue); }
  .how-text p { font-size: 15.5px; color: var(--gray-mid); line-height: 1.75; margin-bottom: 16px; }
  .how-steps { display: flex; flex-direction: column; gap: 16px; }
  .how-steps img{
    width: 100%; border-radius: 30px;
  }
  .how-step {
    display: flex; gap: 16px; align-items: flex-start;
    background: var(--gray-light); border-radius: 14px; padding: 20px;
    transition: all .25s;
  }
  .how-step:hover { background: rgba(26,26,255,.06); transform: translateX(4px); }
  .how-step-num {
    width: 36px; height: 36px; background: var(--blue); color: white;
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-family: 'Unbounded', sans-serif; font-size: 14px; font-weight: 700; flex-shrink: 0;
  }
  .how-step h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 4px; }
  .how-step p { font-size: 13px; color: var(--gray-mid); margin: 0; line-height: 1.5; }

  /* EFFECTS */
  .effects-section { padding: 100px 80px; background: var(--gray-light); }
  .effects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
  .effect-card {
    background: white; border-radius: var(--radius); padding: 32px 28px;
    transition: all .25s; border: 1.5px solid transparent;
  }
  .effect-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(26,26,255,.1); }
  .effect-card .icon {
    width: 56px; height: 56px; background: rgba(26,26,255,.08); border-radius: 16px;
    display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px;
  }
  .effect-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
  .effect-card p { font-size: 13.5px; color: var(--gray-mid); line-height: 1.65; }

  /* ZONES */
  .zones-section { padding: 100px 80px; background: white; }
  .zones-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .zone-card {
    border-radius: var(--radius); overflow: hidden;
    background: linear-gradient(135deg, #f0f0ff, #e8e8ff);
    padding: 20px 28px; text-align: center;
    transition: all .25s; cursor: default;
    border: 1.5px solid rgba(26,26,255,.1);
  }

  .zone-card img{
    width: 100%;
    border-radius: 30px;
    margin: 0 auto;
  }
  .zone-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(26,26,255,.12); background: linear-gradient(135deg, #e8e8ff, #d8d8ff); }
  .zone-card .zone-icon { font-size: 44px; margin-bottom: 16px; display: block; }
  .zone-card h3 { margin-top: 20px; font-family: 'Unbounded', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--gray-dark); }
  .zone-card p { font-size: 13.5px; color: var(--gray-mid); line-height: 1.6; padding-bottom:20px; }
  .zone-badge {
    display: inline-block; margin-top: 14px; background: var(--blue); color: white;
    font-size: 11px; font-weight: 600; padding: 5px 14px; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 1px;
  }

  /* BLUE BANNER */
  .blue-banner {
    padding: 80px; background: linear-gradient(135deg, #0808cc, #1A1AFF);
    color: white; text-align: center; position: relative; overflow: hidden;
  }
  .blue-banner::before {
    content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  }
  .blue-banner h2 {
    font-family: 'Unbounded', sans-serif; font-size: clamp(22px, 3vw, 36px);
    font-weight: 700; margin-bottom: 16px; position: relative;
  }
  .blue-banner p { font-size: 16px; opacity: .85; margin-bottom: 36px; position: relative; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.65; }
  .blue-banner .btn-white {
    display: inline-block; background: white; color: var(--blue); border-radius: 50px;
    padding: 16px 36px; font-weight: 700; font-size: 15px; text-decoration: none;
    transition: all .2s; position: relative;
  }
  .blue-banner .btn-white:hover { background: rgba(255,255,255,.9); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.2); }

  /* BOOKING */
  .booking-section { padding: 100px 80px; background: var(--gray-light); }
  .booking-inner { max-width: 700px; margin: 0 auto; }
  .booking-card { background: white; border-radius: 24px; padding: 48px; box-shadow: 0 8px 40px rgba(0,0,0,.07); }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 7px; }
  .form-group.full { grid-column: 1 / -1; }
  .form-group label { font-size: 12.5px; font-weight: 700; color: var(--gray-dark); text-transform: uppercase; letter-spacing: .5px; }
  .form-group input, .form-group select, .form-group textarea {
    border: 1.5px solid var(--border); border-radius: 12px; padding: 13px 16px;
    font-family: 'Geologica', sans-serif; font-size: 14px; color: var(--gray-dark);
    background: var(--gray-light); outline: none; transition: border-color .2s, background .2s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--blue); background: white; box-shadow: 0 0 0 3px rgba(26,26,255,.1);
  }
  .form-group textarea { resize: vertical; min-height: 90px; }
  .form-submit { display: flex; align-items: center; gap: 20px; margin-top: 8px; }
  .form-submit small { font-size: 12px; color: var(--gray-mid); line-height: 1.5; }
  .form-submit .btn-primary { padding: 14px 32px; font-size: 15px; }

  /* CONTACT */
  .contact-section { padding: 80px 80px; background: white; }
  .contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .contact-info h2 { font-family: 'Unbounded', sans-serif; font-size: 30px; font-weight: 700; margin-bottom: 32px; letter-spacing: -0.5px; }
  .contact-items { display: flex; flex-direction: column; gap: 18px; }
  .contact-item { display: flex; gap: 16px; align-items: flex-start; }
  .contact-item-icon {
    width: 46px; height: 46px; background: rgba(26,26,255,.08);
    border-radius: 13px; display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
  }
  .contact-item-text strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .5px; }
  .contact-item-text span { font-size: 14.5px; color: var(--gray-mid); }
  .contact-item-text a { font-size: 16px; font-weight: 700; color: var(--blue); text-decoration: none; }
  .schedule-table { margin-top: 32px; background: var(--gray-light); border-radius: 14px; overflow: hidden; }
  .schedule-row2 { display: flex; justify-content: space-between; padding: 14px 20px; font-size: 14px; border-bottom: 1px solid var(--border); }
  .schedule-row2:last-child { border-bottom: none; }
  .schedule-row2 span:first-child { font-weight: 600; }
  .schedule-row2 span:last-child { color: var(--blue); font-weight: 500; }
  .map-block {
    background: linear-gradient(135deg, #e8e8ff, #f0f5ff);
    border-radius: var(--radius); height: 300px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 12px; font-size: 52px;
    border: 1.5px solid rgba(26,26,255,.12);
  }
  .map-block span { font-size: 15px; font-weight: 600; color: var(--blue); }

  /* FOOTER */
  footer { background: #1e1e1e; color: white; padding: 60px 80px 40px; }
  .footer-top {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px;
    margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .footer-brand-name { font-family: 'Unbounded', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 4px; }
  .footer-brand-sub { font-size: 11px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; display: block; }
  .footer-brand p { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.6); margin-bottom: 22px; }
  .social-links { display: flex; gap: 10px; }
  .social-links a {
    width: 40px; height: 40px; background: rgba(255,255,255,.1); border-radius: 11px;
    display: flex; align-items: center; justify-content: center; font-size: 17px;
    text-decoration: none; transition: background .2s; color: white;
  }
  .social-links a:hover { background: var(--blue); }
  .footer-col h4 { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.45); margin-bottom: 18px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { text-decoration: none; color: rgba(255,255,255,.72); font-size: 13.5px; transition: color .2s; }
  .footer-col ul li a:hover { color: white; }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,.35); }

  /* REVEAL */
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.visible { opacity: 1; transform: none; }

  /* RESPONSIVE */
  @media (max-width: 960px) {
    header { padding: 0 20px; }
    nav { display: none; }
    .hero { grid-template-columns: 1fr; padding: 40px 24px; min-height: auto; }
    .hero-visual { display: none; }
    .how-it-works, .effects-section, .zones-section, .booking-section, .contact-section { padding: 60px 24px; }
    .how-grid { grid-template-columns: 1fr; gap: 40px; }
    .zones-grid { grid-template-columns: 1fr 1fr; }
    .contact-inner { grid-template-columns: 1fr; }
    .blue-banner { padding: 60px 24px; }
    footer { padding: 40px 24px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  @media (max-width: 600px) {
    .zones-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; }
    .hero-stats { gap: 20px; }
  }