    :root {
      --background: oklch(0.05 0 0);
      --foreground: oklch(0.98 0 0);
      --card: oklch(0.12 0 0);
      --card-foreground: oklch(0.98 0 0);
      --primary: oklch(0.55 0.22 25);
      --primary-foreground: oklch(0.98 0 0);
      --secondary: oklch(0.55 0.2 255);
      --secondary-foreground: oklch(0.98 0 0);
      --muted: oklch(0.18 0 0);
      --muted-foreground: oklch(0.65 0 0);
      --accent: oklch(0.55 0.2 255);
      --accent-foreground: oklch(0.98 0 0);
      --border: oklch(0.25 0 0);
      --input: oklch(0.18 0 0);
      --ring: oklch(0.55 0.22 25);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      border-color: var(--border);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background-color: var(--background);
      color: var(--foreground);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.5;
      overflow-x: hidden;
    }

    /* Scrollbar styling */
    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: oklch(0.08 0 0);
    }

    ::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, oklch(0.55 0.22 25) 0%, oklch(0.55 0.2 255) 100%);
      border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(180deg, oklch(0.65 0.22 25) 0%, oklch(0.65 0.2 255) 100%);
    }

    /* Typography */
    .font-bebas {
      font-family: 'Bebas Neue', sans-serif;
      letter-spacing: 0.05em;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Bebas Neue', sans-serif;
    }

    /* Navbar */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s ease;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(10, 10, 10, 0.85);
      backdrop-filter: blur(20px);
    }

    nav.scrolled {
      padding: 0.75rem 2rem;
      background: rgba(10, 10, 10, 0.95);
    }

    .navbar-logo {
      font-size: 1.25rem;
      color: white;
      text-decoration: none;
      font-family: 'Bebas Neue', sans-serif;
      font-weight: bold;
      letter-spacing: 0.05em;
    }

    .navbar-logo .red {
      color: #E10600;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #E10600, #0057FF);
      transition: width 0.3s ease;
    }

    .nav-links a:hover {
      color: #E10600;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .lang-toggle {
      display: flex;
      gap: 0.25rem;
      background: rgba(255, 255, 255, 0.1);
      padding: 0.25rem;
      border-radius: 0.5rem;
      margin-left: 1rem;
    }

    .lang-btn {
      padding: 0.375rem 0.75rem;
      border: none;
      background: transparent;
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.8rem;
      font-weight: 600;
      cursor: pointer;
      border-radius: 0.375rem;
      transition: all 0.3s ease;
      text-transform: uppercase;
    }

    .lang-btn.active {
      background: #E10600;
      color: white;
    }

    .lang-btn:hover {
      color: white;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .call-btn {
      padding: 0.625rem 1.25rem;
      border-radius: 9999px;
      background: linear-gradient(135deg, #E10600, #ff3333) !important;
      color: white !important;
      text-decoration: none;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      transition: all 0.3s ease;
      box-shadow: 0 5px 20px rgba(225, 6, 0, 0.3);
      border: none;
      cursor: pointer;
    }

    .call-btn:hover {
      transform: translateY(-2px) scale(1.05);
      box-shadow: 0 10px 30px rgba(225, 6, 0, 0.5);
      color: white !important;
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(10, 10, 10, 0.98);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: none;
      border: none;
      color: white;
      font-size: 2rem;
      cursor: pointer;
    }

    .mobile-menu a {
      color: white;
      text-decoration: none;
      font-size: 2rem;
      transition: all 0.3s ease;
      font-family: 'Bebas Neue', sans-serif;
    }

    .mobile-menu a:hover {
      color: #E10600;
      transform: scale(1.1);
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }
      .nav-right {
        display: none;
      }
      .mobile-menu-btn {
        display: block;
      }
    }

    /* Sections */
    section {
      position: relative;
      overflow: hidden;
      padding: 5rem 1.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
    }

    section:first-of-type {
      margin-top: 60px;
    }

    /* Hero Section */
    #hero {
      background: linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
    }

    #hero::before {
      content: '';
      position: absolute;
      inset: -60px;
      background: url('images/1.webp') center/cover no-repeat;
      filter: blur(7px);
      opacity: 0.22;
      z-index: 0;
    }

    .gradient-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .gradient-circle {
      position: absolute;
      width: 200%;
      height: 200%;
      top: -50%;
      left: -50%;
      background: radial-gradient(circle at 30% 30%, rgba(225, 6, 0, 0.15) 0%, transparent 50%), 
                  radial-gradient(circle at 70% 70%, rgba(0, 87, 255, 0.15) 0%, transparent 50%);
      animation: rotate-slow 30s linear infinite;
    }

    .particles {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .particle {
      position: absolute;
      width: 1.5px;
      height: 1.5px;
      border-radius: 50%;
      animation: float 8s ease-in-out infinite;
    }

    .particle.red {
      background: #E10600;
      box-shadow: 0 0 10px #E10600;
    }

    .particle.blue {
      background: #0057FF;
      box-shadow: 0 0 10px #0057FF;
    }

    .corner-decoration {
      position: absolute;
      width: 100px;
      height: 100px;
      border: 2px solid #E10600;
      animation: border-glow 3s ease-in-out infinite;
    }

    .corner-decoration.top-left {
      top: 5rem;
      left: 2rem;
      border-right: none;
      border-bottom: none;
    }

    .corner-decoration.top-right {
      top: 5rem;
      right: 2rem;
      border-left: none;
      border-bottom: none;
    }

    .corner-decoration.bottom-left {
      bottom: 2rem;
      left: 2rem;
      border-right: none;
      border-top: none;
    }

    .corner-decoration.bottom-right {
      bottom: 2rem;
      right: 2rem;
      border-left: none;
      border-top: none;
    }

    @media (max-width: 768px) {
      .corner-decoration {
        display: none;
      }
    }

    .hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      padding: 2rem;
      max-width: 900px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      background: rgba(225, 6, 0, 0.2);
      border: 1px solid #E10600;
      padding: 0.75rem 2rem;
      border-radius: 9999px;
      margin-bottom: 2rem;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      animation: pulse-glow 3s ease-in-out infinite;
    }

    .hero-badge-dot {
      width: 0.625rem;
      height: 0.625rem;
      background: #E10600;
      border-radius: 50%;
      animation: pulse-dot 1.5s ease-in-out infinite;
    }

    .hero-title {
      font-size: clamp(3.5rem, 14vw, 9rem);
      line-height: 0.9;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: slide-up 1s ease-out;
    }

    .hero-subtitle {
      background: linear-gradient(90deg, #E10600, #ff4444, #E10600);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmer 3s linear infinite, glow-text 2s ease-in-out infinite;
    }

    .hero-description {
      font-size: 1.25rem;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 3rem;
      animation: slide-up 1s ease-out 0.2s backwards;
    }

    .hero-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
      animation: slide-up 1s ease-out 0.4s backwards;
    }

    .btn-primary {
      padding: 1.25rem 3rem;
      border-radius: 9999px;
      background: linear-gradient(135deg, #E10600, #ff3333);
      color: white;
      text-decoration: none;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 1.125rem;
      letter-spacing: 0.1em;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 5px 20px rgba(225, 6, 0, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-4px);
      transform: scale(1.05);
      box-shadow: 0 20px 40px rgba(225, 6, 0, 0.4);
    }

    .btn-secondary {
      padding: 1.25rem 3rem;
      border-radius: 9999px;
      background: transparent;
      color: white;
      text-decoration: none;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 1.125rem;
      letter-spacing: 0.1em;
      border: 2px solid rgba(255, 255, 255, 0.3);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-secondary:hover {
      border-color: #0057FF;
      color: #0057FF;
      transform: translateY(-4px);
    }

    .scroll-indicator {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
      animation: bounce 2s ease-in-out infinite;
    }

    .scroll-indicator-text {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: rgba(255, 255, 255, 0.5);
    }

    .scroll-indicator-arrow {
      width: 1.25rem;
      height: 1.25rem;
      border-right: 2px solid #E10600;
      border-bottom: 2px solid #E10600;
      transform: rotate(45deg);
    }

    /* Services Section */
    #services {
      background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    }

    .section-header {
      text-align: center;
      margin-bottom: 4rem;
      width: 100%;
    }

    .section-label {
      display: inline-block;
      color: #E10600;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      margin-bottom: 0.75rem;
      position: relative;
      padding: 0 2rem;
    }

    .section-label::before,
    .section-label::after {
      content: '';
      position: absolute;
      top: 50%;
      height: 1px;
      width: 30px;
    }

    .section-label::before {
      right: 100%;
      margin-right: 0.75rem;
      background: linear-gradient(90deg, transparent, #E10600);
    }

    .section-label::after {
      left: 100%;
      margin-left: 0.75rem;
      background: linear-gradient(90deg, #E10600, transparent);
    }

    .section-title {
      font-size: clamp(2rem, 5vw, 3.5rem);
      color: white;
      letter-spacing: 0.05em;
    }

    .section-title .highlight {
      color: #E10600;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      justify-items: center;
    }

    @media (max-width: 1200px) {
      .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
      }
    }

    @media (max-width: 500px) {
      .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
      }
    }

    .service-card {
      position: relative;
      text-align: center;
      padding: 2rem 1.5rem;
      border-radius: 1.125rem;
      border: 1px solid rgba(255, 255, 255, 0.05);
      background: linear-gradient(145deg, #1a1a1a, #111111);
      transition: all 0.4s ease;
      overflow: hidden;
      width: 100%;
      max-width: 220px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(to right, #E10600, #0057FF);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .service-card:hover {
      transform: translateY(-8px) scale(1.02);
      border-color: rgba(225, 6, 0, 0.3);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(225, 6, 0, 0.1);
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

    .service-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 1rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      background: linear-gradient(135deg, rgba(225, 6, 0, 0.2), rgba(0, 87, 255, 0.2));
      transition: all 0.4s ease;
    }

    .service-card:hover .service-icon {
      transform: scale(1.1) rotate(10deg);
    }

    .service-title {
      font-size: 1.25rem;
      color: white;
      margin-bottom: 0.375rem;
      font-family: 'Bebas Neue', sans-serif;
    }

    .service-description {
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 0.75rem;
      font-size: 0.85rem;
      line-height: 1.6;
    }

    .service-price {
      font-size: 2rem;
      color: #E10600;
      font-family: 'Bebas Neue', sans-serif;
    }

    .service-price-currency {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.5);
      margin-right: 0.25rem;
    }

    /* Packages Section */
    #packages {
      background: linear-gradient(180deg, #0d0d0d 0%, #111111 100%);
      min-height: auto;
      padding: 5rem 1.5rem;
    }

    .packages-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.75rem;
      max-width: 860px;
      width: 100%;
      margin: 0 auto;
    }

    @media (max-width: 700px) {
      .packages-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
      }
    }

    .package-card {
      position: relative;
      text-align: center;
      padding: 2.5rem 1.5rem 2rem;
      border-radius: 1.25rem;
      border: 1px solid rgba(255,255,255,0.07);
      background: linear-gradient(160deg, #181818, #0f0f0f);
      transition: all 0.4s ease;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }

    .package-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      border-radius: 1.25rem 1.25rem 0 0;
    }

    .package-card.silver::before { background: linear-gradient(90deg, #9ca3af, #d1d5db); }
    .package-card.gold::before   { background: linear-gradient(90deg, #f59e0b, #fde68a); }
    .package-card.platinum::before { background: linear-gradient(90deg, #a855f7, #c084fc); }

    .package-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }

    .package-card.silver:hover  { box-shadow: 0 20px 40px rgba(156,163,175,0.15); border-color: rgba(156,163,175,0.25); }
    .package-card.gold:hover    { box-shadow: 0 20px 40px rgba(245,158,11,0.15);  border-color: rgba(245,158,11,0.25); }
    .package-card.platinum:hover { box-shadow: 0 20px 40px rgba(168,85,247,0.2); border-color: rgba(168,85,247,0.3); }

    .package-badge {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: 0.1em;
      margin-bottom: 0.25rem;
    }

    .package-card.silver  .package-badge { color: #d1d5db; }
    .package-card.gold    .package-badge { color: #fde68a; }
    .package-card.platinum .package-badge { color: #c084fc; }

    .package-services {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      margin: 0.75rem 0;
      width: 100%;
    }

    .package-services li {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.65);
      padding: 0.3rem 0.75rem;
      border-radius: 9999px;
      background: rgba(255,255,255,0.05);
    }

    .package-price {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      color: white;
      line-height: 1;
    }

    .package-price span {
      font-size: 1rem;
      color: rgba(255,255,255,0.45);
      margin-right: 0.2rem;
    }

    /* Cuts (photo grid) section — #gallery anchor */
    #gallery {
      background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.75rem;
      max-width: 700px;
      width: 100%;
    }

    @media (max-width: 600px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
      }
    }

    .gallery-item {
      position: relative;
      aspect-ratio: 1;
      border-radius: 0.75rem;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.4s ease;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.15);
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(225, 6, 0, 0.6) 0%, transparent 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-plus {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0);
      font-size: 2.5rem;
      color: white;
      transition: transform 0.4s ease;
      z-index: 10;
    }

    .gallery-item:hover .gallery-plus {
      transform: translate(-50%, -50%) scale(1);
    }

    /* Lightbox */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.95);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 2000;
      padding: 2rem;
    }

    .lightbox.open {
      display: flex;
    }

    .lightbox-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      font-size: 2.5rem;
      color: white;
      cursor: pointer;
      background: none;
      border: none;
      transition: all 0.3s ease;
    }

    .lightbox-close:hover {
      color: #E10600;
      transform: scale(1.1);
    }

    .lightbox img {
      max-width: 90%;
      max-height: 90%;
      border-radius: 0.75rem;
      object-fit: contain;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    /* Contact Section */
    #contact {
      background: linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
    }

    .contact-container {
      max-width: 800px;
      width: 100%;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-bottom: 2.5rem;
    }

    .info-card {
      display: flex;
      gap: 1rem;
      padding: 1.5rem;
      border-radius: 0.875rem;
      border: 1px solid rgba(255, 255, 255, 0.05);
      background: linear-gradient(145deg, #1a1a1a, #111111);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
    }

    .info-card:hover {
      transform: translateY(-4px);
      border-color: rgba(225, 6, 0, 0.3);
    }

    .info-icon {
      width: 50px;
      height: 50px;
      border-radius: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      background: linear-gradient(135deg, rgba(225, 6, 0, 0.2), rgba(0, 87, 255, 0.2));
      flex-shrink: 0;
    }

    .info-content h4 {
      font-size: 1rem;
      color: #E10600;
      margin-bottom: 0.25rem;
    }

    .info-content p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .info-content a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .info-content a:hover {
      color: #E10600;
    }

    .payment-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 0.5rem;
    }

    .payment-badge {
      padding: 0.375rem 0.75rem;
      border-radius: 0.5rem;
      font-size: 0.8rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
    }

    .payment-badge:hover {
      background: rgba(225, 6, 0, 0.2);
      border-color: #E10600;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1.25rem 2.5rem;
      border-radius: 9999px;
      background: linear-gradient(135deg, #E10600, #ff3333);
      color: white;
      text-decoration: none;
      font-weight: 700;
      text-transform: uppercase;
      font-size: 1.125rem;
      letter-spacing: 0.1em;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      animation: pulse-glow 2s ease-in-out infinite;
      margin-top: 2.5rem;
    }

    .cta-button:hover {
      transform: translateY(-4px) scale(1.05);
    }

    .cta-button svg {
      width: 1.5rem;
      height: 1.5rem;
      stroke: currentColor;
    }

    /* Page footer (index — bottom of page) */
    footer.site-footer {
      width: 100%;
      max-width: 100%;
      padding: 3rem 1.5rem 5.5rem;
      text-align: center;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      background: #0a0a0a;
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.85rem;
      flex-shrink: 0;
    }

    footer.site-footer .highlight {
      color: #E10600;
    }

    .site-footer-credit {
      margin-top: 0.5rem;
      font-size: 0.75rem;
      color: rgba(225, 6, 0, 0.8);
    }

    /* Floating Button */
    .floating-book {
      position: fixed;
      bottom: 1.5rem;
      right: 1.5rem;
      z-index: 999;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: white;
      text-decoration: none;
      background: linear-gradient(135deg, #E10600, #ff3333);
      box-shadow: 0 10px 30px rgba(225, 6, 0, 0.4);
      animation: pulse-glow 2s ease-in-out infinite;
      transition: all 0.3s ease;
    }

    .floating-book:hover {
      transform: scale(1.1);
    }

    @media (min-width: 768px) {
      .floating-book {
        display: none;
      }
    }

    /* Animations */
    @keyframes float {
      0%, 100% {
        transform: translateY(0) rotate(0deg);
      }
      50% {
        transform: translateY(-20px) rotate(5deg);
      }
    }

    @keyframes pulse-glow {
      0%, 100% {
        box-shadow: 0 0 20px #E10600, 0 0 40px rgba(225, 6, 0, 0.3);
      }
      50% {
        box-shadow: 0 0 40px #E10600, 0 0 80px rgba(225, 6, 0, 0.5);
      }
    }

    @keyframes pulse-dot {
      0%, 100% {
        transform: scale(1);
        opacity: 1;
      }
      50% {
        transform: scale(1.5);
        opacity: 0.7;
      }
    }

    @keyframes shimmer {
      0% {
        background-position: -200% center;
      }
      100% {
        background-position: 200% center;
      }
    }

    @keyframes glow-text {
      0%, 100% {
        text-shadow: 0 0 20px rgba(225, 6, 0, 0.5);
      }
      50% {
        text-shadow: 0 0 40px rgba(225, 6, 0, 0.8), 0 0 60px rgba(225, 6, 0, 0.4);
      }
    }

    @keyframes border-glow {
      0%, 100% {
        border-color: #E10600;
      }
      50% {
        border-color: #0057FF;
      }
    }

    @keyframes bounce {
      0%, 100% {
        transform: translateX(-50%) translateY(0);
      }
      50% {
        transform: translateX(-50%) translateY(-10px);
      }
    }

    @keyframes slide-up {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes rotate-slow {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }

    @keyframes shine {
      0% {
        left: -100%;
      }
      100% {
        left: 100%;
      }
    }

    /* —— Subpages (FAQ, blog hub, posts) — same design system —— */
    body.subpage {
      padding-top: 72px;
    }

    .subpage-hero {
      position: relative;
      padding: 4rem 1.5rem 3rem;
      text-align: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
    }

    .subpage-hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 6vw, 4rem);
      letter-spacing: 0.05em;
      line-height: 1.1;
      margin-bottom: 0.75rem;
    }

    .subpage-hero .lead {
      color: rgba(255, 255, 255, 0.75);
      max-width: 36rem;
      margin: 0 auto;
      font-size: 1.05rem;
    }

    .subpage-main {
      max-width: 46rem;
      margin: 0 auto;
      padding: 3rem 1.5rem 5rem;
    }

    .subpage-main.wide {
      max-width: 72rem;
    }

    .subpage-main p,
    .subpage-main li {
      color: rgba(255, 255, 255, 0.82);
      line-height: 1.75;
      margin-bottom: 1rem;
    }

    .subpage-main h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.75rem;
      margin: 2.5rem 0 1rem;
      letter-spacing: 0.04em;
    }

    .subpage-main h2:first-of-type {
      margin-top: 0;
    }

    .subpage-main a {
      color: #E10600;
      text-decoration: none;
    }

    .subpage-main a:hover {
      text-decoration: underline;
    }

    .faq-item {
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 0.75rem;
      margin-bottom: 0.75rem;
      background: linear-gradient(145deg, #1a1a1a, #111111);
      overflow: hidden;
    }

    .faq-item summary {
      cursor: pointer;
      padding: 1rem 1.25rem;
      font-weight: 600;
      color: #fafafa;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item[open] summary {
      border-bottom: 1px solid rgba(225, 6, 0, 0.25);
      color: #E10600;
    }

    .faq-item .faq-body {
      padding: 0 1.25rem 1.25rem;
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.95rem;
    }

    .blog-grid {
      display: grid;
      gap: 1.25rem;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      margin-top: 2rem;
    }

    .blog-card {
      display: block;
      padding: 0 0 1.25rem;
      border-radius: 0.875rem;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: linear-gradient(145deg, #1a1a1a, #111111);
      text-decoration: none;
      color: inherit;
      transition: transform 0.25s ease, border-color 0.25s ease;
      overflow: hidden;
    }

    .blog-card-thumb {
      aspect-ratio: 16 / 10;
      overflow: hidden;
      margin-bottom: 1rem;
    }

    .blog-card-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .blog-card .meta,
    .blog-card h3,
    .blog-card p {
      padding-left: 1.25rem;
      padding-right: 1.25rem;
    }

    .blog-card:hover {
      transform: translateY(-4px);
      border-color: rgba(225, 6, 0, 0.35);
    }

    .blog-card h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.35rem;
      letter-spacing: 0.04em;
      color: #fafafa;
      margin-bottom: 0.5rem;
    }

    .blog-card .meta {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.45);
      margin-bottom: 0.75rem;
    }

    .blog-card p {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.55;
      margin: 0;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 4;
      overflow: hidden;
    }

    .breadcrumb {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 1.5rem;
    }

    .breadcrumb a {
      color: rgba(255, 255, 255, 0.65);
    }

    .post-header time {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.45);
    }

    .post-hero {
      margin: -0.5rem 0 2rem;
      border-radius: 0.75rem;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.08);
      aspect-ratio: 16 / 9;
      max-height: 22rem;
    }

    .post-hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    section.home-extra {
      min-height: auto;
    }

