:root {
      --bg: #070707;
      --bg-soft: #111113;
      --card: #161618;
      --card-2: #1e1e21;
      --text: #ffffff;
      --muted: #b7b7bd;
      --muted-2: #85858c;
      --red: #e50914;
      --red-dark: #a90710;
      --green: #10b828;
      --green-dark: #07951b;
      --border: rgba(255,255,255,.1);
      --shadow: 0 24px 80px rgba(0,0,0,.45);
      --radius: 24px;
      --container: 1120px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top right, rgba(229, 9, 20, .18), transparent 34%),
        linear-gradient(180deg, #050505 0%, #0b0b0c 48%, #050505 100%);
      overflow-x: hidden;
      padding-bottom: 86px;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 30;
      backdrop-filter: blur(16px);
      background: rgba(5,5,5,.78);
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .topbar-inner {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      flex: 0 0 auto;
    }

    .brand-logo {
      height: 54px;
      width: 101px;
      max-width: none;
      display: block;
      flex: 0 0 auto;
      object-fit: contain;
      border: 0;
      border-radius: 0;
      background: transparent;
    }

    .brand-name {
      color: #f3f3f4;
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0;
      line-height: 1.2;
      white-space: nowrap;
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 48px;
      padding: 0 18px;
      border-radius: 999px;
      font-weight: 800;
      font-size: 15px;
      border: 1px solid transparent;
      transition: .2s ease;
      cursor: pointer;
      white-space: nowrap;
    }

    .btn:hover { transform: translateY(-1px); }

    .btn-whatsapp {
      background: linear-gradient(180deg, var(--green), var(--green-dark));
      color: #fff;
      box-shadow: 0 14px 34px rgba(16,184,40,.24);
    }

    .whatsapp-icon {
      width: 20px;
      height: 20px;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .btn-outline {
      background: rgba(255,255,255,.04);
      border-color: rgba(255,255,255,.14);
      color: #fff;
    }

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

    .hero-grid {
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      gap: 34px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border: 1px solid rgba(229,9,20,.35);
      background: rgba(229,9,20,.1);
      color: #fff;
      border-radius: 999px;
      font-weight: 800;
      font-size: 13px;
      margin-bottom: 18px;
    }

    h1 {
      margin: 0;
      font-size: clamp(38px, 5vw, 60px);
      line-height: .96;
      letter-spacing: -2.8px;
      max-width: 760px;
    }

    h1 strong { color: var(--red); }

    .hero-copy {
      margin: 20px 0 0;
      color: #d9d9dd;
      font-size: clamp(17px, 2vw, 21px);
      line-height: 1.55;
      max-width: 610px;
    }

    .hero-copy strong { color: #fff; }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .hero-actions .btn { min-height: 58px; padding: 0 24px; font-size: 17px; }

    .quick-info {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 28px;
      max-width: 640px;
    }

    .info-pill {
      border: 1px solid var(--border);
      background: rgba(255,255,255,.045);
      border-radius: 16px;
      padding: 14px;
    }

    .info-pill strong {
      display: block;
      font-size: 14px;
      margin-bottom: 3px;
    }

    .info-pill span {
      display: block;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
    }

    .hero-media {
      position: relative;
    }

    .media-card {
      position: relative;
      overflow: hidden;
      border-radius: 34px;
      /*border: 1px solid rgba(255,255,255,.12);*/
      /*background: #111;*/
      box-shadow: var(--shadow);
      min-height: 560px;
    }

    .media-card img {
      width: 100%;
      /*height: 560px;*/
      object-fit: contain;
      filter: saturate(1.08) contrast(1.04);
    }

    .media-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 32%, rgba(0,0,0,.88));
    }

    .media-badge {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
      z-index: 2;
      padding: 18px;
      border-radius: 22px;
      background: rgba(8,8,9,.82);
      border: 1px solid rgba(255,255,255,.12);
      backdrop-filter: blur(16px);
    }

    .media-badge strong {
      display: block;
      font-size: 22px;
      margin-bottom: 7px;
    }

    .media-badge span {
      display: block;
      color: var(--muted);
      line-height: 1.45;
    }

    section { padding: 54px 0; }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 24px;
    }

    .section-kicker {
      color: var(--red);
      font-weight: 900;
      text-transform: uppercase;
      font-size: 13px;
      letter-spacing: .08em;
      margin-bottom: 8px;
    }

    h2 {
      margin: 0;
      font-size: clamp(28px, 4vw, 46px);
      letter-spacing: -1.6px;
      line-height: 1.05;
    }

    .section-desc {
      color: var(--muted);
      line-height: 1.55;
      max-width: 480px;
      margin: 0;
      font-size: 16px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 14px;
    }

    .service-card {
      min-height: 190px;
      padding: 20px;
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
      border: 1px solid var(--border);
      transition: .2s ease;
    }

    .service-card:hover {
      transform: translateY(-3px);
      border-color: rgba(229,9,20,.42);
      background: linear-gradient(180deg, rgba(229,9,20,.16), rgba(255,255,255,.04));
    }

    .service-icon {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: rgba(229,9,20,.12);
      color: var(--red);
      margin-bottom: 18px;
    }

    .service-card h3 {
      margin: 0 0 8px;
      font-size: 18px;
      line-height: 1.15;
    }

    .service-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.48;
    }

    .problem-box {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 22px;
      padding: 28px;
      border-radius: 32px;
      background:
        linear-gradient(135deg, rgba(229,9,20,.2), transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
      border: 1px solid rgba(255,255,255,.1);
    }

    .problem-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .problem-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px;
      border-radius: 16px;
      background: rgba(0,0,0,.24);
      border: 1px solid rgba(255,255,255,.08);
      color: #eeeeef;
      font-weight: 700;
    }

    .problem-item i { color: var(--red); flex: 0 0 auto; }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .gallery-grid img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      border-radius: 22px;
      border: 1px solid rgba(255,255,255,.1);
      background: #111;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .trust-card {
      padding: 22px;
      border-radius: var(--radius);
      background: rgba(255,255,255,.045);
      border: 1px solid var(--border);
    }

    .trust-card i { color: var(--red); margin-bottom: 16px; }
    .trust-card h3 { margin: 0 0 8px; font-size: 19px; }
    .trust-card p { margin: 0; color: var(--muted); line-height: 1.5; font-size: 14px; }

    .reviews-section {
      padding-top: 16px;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .review-card {
      padding: 22px;
      border-radius: var(--radius);
      background:
        linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.035));
      border: 1px solid var(--border);
      box-shadow: 0 18px 50px rgba(0,0,0,.22);
    }

    .review-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 16px;
    }

    .review-top strong,
    .review-top span {
      display: block;
    }

    .review-top strong {
      font-size: 16px;
      margin-bottom: 3px;
    }

    .review-top span {
      color: var(--muted-2);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .stars {
      color: #ffc247;
      font-size: 14px;
      letter-spacing: 1px;
      white-space: nowrap;
    }

    .review-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.58;
    }

    .location-card {
      overflow: hidden;
      border-radius: 32px;
      background: var(--card);
      border: 1px solid var(--border);
      display: grid;
      grid-template-columns: .85fr 1.15fr;
    }

    .location-info {
      padding: 28px;
    }

    .address {
      margin: 18px 0 22px;
      font-size: 22px;
      font-weight: 900;
      line-height: 1.25;
    }

    .address span {
      display: block;
      color: var(--muted);
      font-weight: 500;
      font-size: 15px;
      margin-top: 6px;
    }

    .map-wrap iframe {
      width: 100%;
      height: 100%;
      min-height: 360px;
      border: 0;
      filter: grayscale(.18) contrast(1.08);
    }

    .final-cta {
      text-align: center;
      padding: 46px 20px;
      border-radius: 34px;
      background:
        radial-gradient(circle at center top, rgba(229,9,20,.22), transparent 42%),
        linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
      border: 1px solid var(--border);
    }

    .final-cta p {
      max-width: 640px;
      margin: 14px auto 26px;
      color: var(--muted);
      line-height: 1.55;
      font-size: 17px;
    }

    .footer {
      padding: 26px 0;
      color: var(--muted-2);
      border-top: 1px solid rgba(255,255,255,.08);
      font-size: 13px;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .mobile-whatsapp-bar {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 60;
      display: none;
      padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
      background: rgba(5,5,5,.86);
      border-top: 1px solid rgba(255,255,255,.1);
      backdrop-filter: blur(16px);
    }

    .mobile-whatsapp-bar .btn {
      width: 100%;
      min-height: 58px;
      border-radius: 18px;
      font-size: 18px;
    }

    @media (max-width: 980px) {
      .desktop-actions { display: none; }
      .mobile-whatsapp-bar { display: block; }
      .hero { padding-top: 34px; }
      .hero-grid,
      .problem-box,
      .location-card {
        grid-template-columns: 1fr;
      }
      .media-card, .media-card img { min-height: 420px; height: 420px; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .trust-grid { grid-template-columns: 1fr; }
      .reviews-grid { grid-template-columns: 1fr; }
      .section-head { display: block; }
      .section-desc { margin-top: 12px; }
    }

    @media (max-width: 560px) {
      body { padding-bottom: 92px; }
      .container { width: min(100% - 24px, var(--container)); }
      .topbar-inner { height: 68px; }
      .brand-logo { width: 101px; height: 54px; }
      .brand-name { display: none; }
      h1 { letter-spacing: -1.8px; }
      .hero-copy { font-size: 16px; }
      .quick-info { grid-template-columns: 1fr; }
      .hero-actions .btn { width: 100%; }
      .media-card { border-radius: 26px; }
      .media-card, .media-card img { min-height: 360px; height: 360px; }
      section { padding: 38px 0; }
      .services-grid,
      .problem-list,
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-grid img { height: 260px; }
      .problem-box { padding: 18px; border-radius: 24px; }
      .location-info { padding: 22px; }
      .address { font-size: 19px; }
      .footer-inner { display: block; }
      .footer-inner div + div { margin-top: 8px; }
    }
