/*
	Theme Name: Hello Elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.4.9
	Stable tag: 3.4.9
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      color: #1a1a1a;
      line-height: 1.6;
      background: #fafafa;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    :root {
      --red: #C8102E;
      --red-dark: #9B0A1F;
      --red-light: #E8384F;
      --dark: #1a1a1a;
      --gray: #4a4a4a;
      --light-gray: #f0f0f0;
      --white: #ffffff;
      --shadow: 0 10px 40px rgba(0,0,0,0.12);
      --shadow-sm: 0 4px 12px rgba(0,0,0,0.08);
    }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 90px 0; }
    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 4vw, 3.25rem);
      letter-spacing: 1px;
      text-align: center;
      margin-bottom: 16px;
      color: var(--dark);
    }
    .section-title span { color: var(--red); }
    .section-subtitle {
      text-align: center;
      color: var(--gray);
      max-width: 640px;
      margin: 0 auto 60px;
      font-size: 1.05rem;
    }
    .btn {
      display: inline-block;
      padding: 14px 32px;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.5px;
      border-radius: 4px;
      border: 2px solid transparent;
      cursor: pointer;
      transition: all 0.25s ease;
      text-transform: uppercase;
      font-family: inherit;
    }
    .btn-primary {
      background: var(--red);
      color: var(--white);
      border-color: var(--red);
    }
    .btn-primary:hover {
      background: var(--red-dark);
      border-color: var(--red-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(200,16,46,0.35);
    }
    .btn-outline {
      background: transparent;
      color: var(--white);
      border-color: var(--white);
    }
    .btn-outline:hover {
      background: var(--white);
      color: var(--red);
    }

    /* HEADER */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(10px);
      box-shadow: var(--shadow-sm);
    }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 0;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.75rem;
      color: var(--red);
      letter-spacing: 1px;
    }
    .logo-mark {
      width: 44px; height: 44px;
      background: var(--red);
      border-radius: 4px;
      display: grid;
      place-items: center;
      color: white;
      font-weight: 800;
      font-size: 1.4rem;
      position: relative;
    }
    .logo-mark::after {
      content: '';
      position: absolute;
      bottom: -3px; right: -3px;
      width: 14px; height: 14px;
      background: var(--dark);
      border-radius: 2px;
    }
    .nav-links { display: flex; gap: 36px; align-items: center; }
    .nav-links a {
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--dark);
      position: relative;
      transition: color 0.2s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      left: 0; bottom: -6px;
      width: 0; height: 2px;
      background: var(--red);
      transition: width 0.3s;
    }
    .nav-links a:hover { color: var(--red); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      background: var(--red);
      color: var(--white) !important;
      padding: 10px 22px;
      border-radius: 4px;
    }
    .nav-cta:hover { background: var(--red-dark); color: var(--white) !important; }
    .nav-cta::after { display: none !important; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
    }
    .hamburger span {
      width: 28px; height: 3px;
      background: var(--dark);
      border-radius: 2px;
      transition: 0.3s;
    }

    /* HERO */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      color: var(--white);
      overflow: hidden;
      padding: 120px 0 80px;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('/wp-content/uploads/2026/07/hero-warehouse.png') center/cover no-repeat;
      z-index: -2;
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.6) 50%, rgba(200,16,46,0.4) 100%);
      z-index: -1;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .hero-content { animation: fadeUp 1s ease; }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--red);
      color: var(--white);
      padding: 8px 18px;
      border-radius: 4px;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 24px;
    }
    .hero-badge .pulse {
      width: 8px; height: 8px;
      background: var(--white);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.3); }
    }
    .hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.75rem, 6vw, 5rem);
      line-height: 1.05;
      letter-spacing: 1px;
      margin-bottom: 20px;
    }
    .hero h1 span { color: var(--red-light); }
    .hero p {
      font-size: 1.15rem;
      max-width: 560px;
      margin-bottom: 28px;
      opacity: 0.95;
    }
    .hero-launch {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
      margin-bottom: 32px;
      padding: 10px 18px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 4px;
      backdrop-filter: blur(10px);
    }
    .hero-launch strong { color: var(--red-light); }

    /* WAITLIST FORM */
    .waitlist-card {
      background: var(--white);
      color: var(--dark);
      border-radius: 12px;
      padding: 40px 32px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
      position: relative;
      animation: fadeUp 1s ease 0.2s both;
    }
    .waitlist-card::before {
      content: '';
      position: absolute;
      top: -4px; left: -4px; right: -4px; bottom: -4px;
      background: linear-gradient(135deg, var(--red), var(--red-dark));
      border-radius: 14px;
      z-index: -1;
    }
    .waitlist-card h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.75rem;
      letter-spacing: 1px;
      margin-bottom: 8px;
    }
    .waitlist-card .sub {
      color: var(--gray);
      font-size: 0.95rem;
      margin-bottom: 24px;
    }
    .perks {
      background: var(--light-gray);
      border-radius: 6px;
      padding: 16px;
      margin-bottom: 24px;
    }
    .perks li {
      padding: 6px 0;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .perks li::before {
      content: '✓';
      color: var(--red);
      font-weight: 800;
    }
    .waitlist-form .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .waitlist-form input,
    .waitlist-form select {
      width: 100%;
      padding: 12px 14px;
      border: 2px solid var(--light-gray);
      border-radius: 4px;
      font-family: inherit;
      font-size: 0.95rem;
      margin-bottom: 12px;
      transition: border-color 0.2s;
    }
    .waitlist-form input:focus,
    .waitlist-form select:focus {
      outline: none;
      border-color: var(--red);
    }
    .waitlist-form .btn { width: 100%; margin-top: 4px; }
    .waitlist-form .disclaimer {
      font-size: 0.78rem;
      color: var(--gray);
      text-align: center;
      margin-top: 12px;
    }
    .success-message {
      display: none;
      text-align: center;
      padding: 20px 10px;
    }
    .success-message.show { display: block; }
    .success-message .check {
      width: 64px; height: 64px;
      background: var(--red);
      color: var(--white);
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 2rem;
      margin: 0 auto 16px;
    }
    .success-message h4 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: 1px;
      margin-bottom: 8px;
    }
    .success-message p { color: var(--gray); font-size: 0.95rem; }

    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 48px;
      padding-top: 28px;
      border-top: 1px solid rgba(255,255,255,0.2);
    }
    .hero-stat strong {
      display: block;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.25rem;
      color: var(--red-light);
      line-height: 1;
    }
    .hero-stat span {
      font-size: 0.8rem;
      opacity: 0.85;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* FEATURES */
    .features { background: var(--white); }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 28px;
    }
    .feature-card {
      padding: 36px 28px;
      border-radius: 8px;
      background: var(--light-gray);
      border-top: 4px solid var(--red);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
    }
    .feature-icon {
      width: 56px; height: 56px;
      background: var(--red);
      color: var(--white);
      border-radius: 8px;
      display: grid;
      place-items: center;
      font-size: 1.75rem;
      margin-bottom: 20px;
    }
    .feature-card h3 {
      font-size: 1.25rem;
      margin-bottom: 10px;
      color: var(--dark);
    }
    .feature-card p {
      color: var(--gray);
      font-size: 0.95rem;
    }

    /* UNITS PREVIEW */
    .units { background: var(--light-gray); }
    .units-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
    }
    .unit-card {
      background: var(--white);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      position: relative;
    }
    .unit-card.featured { border: 2px solid var(--red); }
    .unit-coming {
      position: absolute;
      top: 16px; right: 16px;
      background: var(--dark);
      color: var(--white);
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .unit-header {
      background: var(--dark);
      color: var(--white);
      padding: 24px;
      text-align: center;
    }
    .unit-size {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.25rem;
      letter-spacing: 1px;
      line-height: 1;
    }
    .unit-dims {
      font-size: 0.85rem;
      opacity: 0.8;
      margin-top: 4px;
    }
    .unit-body { padding: 24px; text-align: center; }
    .unit-price {
      margin-bottom: 16px;
    }
    .unit-price strong {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      color: var(--red);
      line-height: 1;
    }
    .unit-price span {
      display: block;
      color: var(--gray);
      font-size: 0.8rem;
      margin-top: 4px;
    }
    .unit-body p {
      color: var(--gray);
      font-size: 0.9rem;
      margin-bottom: 16px;
    }
    .unit-body .btn { width: 100%; }

    /* ABOUT */
    .about { background: var(--white); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .about-image {
      border-radius: 8px;
      overflow: hidden;
      box-shadow: var(--shadow);
      position: relative;
    }
    .about-image img {
      width: 100%;
      height: 480px;
      object-fit: cover;
    }
    .about-image::before {
      content: '';
      position: absolute;
      top: -16px; left: -16px;
      width: 100%; height: 100%;
      border: 4px solid var(--red);
      border-radius: 8px;
      z-index: -1;
    }
    .about-content h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 20px;
      letter-spacing: 1px;
    }
    .about-content h2 span { color: var(--red); }
    .about-content p {
      color: var(--gray);
      margin-bottom: 16px;
    }
    .about-list { margin-top: 24px; }
    .about-list li {
      padding: 8px 0;
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 500;
    }
    .about-list li::before {
      content: '';
      width: 8px; height: 8px;
      background: var(--red);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* HOW IT WORKS */
    .how {
      background: var(--dark);
      color: var(--white);
    }
    .how .section-title { color: var(--white); }
    .how .section-subtitle { color: rgba(255,255,255,0.7); }
    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 32px;
      counter-reset: step;
    }
    .step {
      text-align: center;
      padding: 32px 20px;
      counter-increment: step;
    }
    .step-number {
      width: 72px; height: 72px;
      background: var(--red);
      color: var(--white);
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      margin: 0 auto 20px;
    }
    .step-number::after { content: counter(step, decimal-leading-zero); }
    .step h3 { font-size: 1.25rem; margin-bottom: 10px; }
    .step p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

    /* FINAL CTA */
    .cta {
      background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
      color: var(--white);
      text-align: center;
      padding: 80px 24px;
    }
    .cta h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 16px;
      letter-spacing: 1px;
    }
    .cta p {
      max-width: 560px;
      margin: 0 auto 32px;
      opacity: 0.95;
      font-size: 1.05rem;
    }

    /* FOOTER */
    footer {
      background: var(--dark);
      color: rgba(255,255,255,0.7);
      padding: 48px 0 24px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 36px;
    }
    .footer-brand .logo { color: var(--white); margin-bottom: 14px; }
    .footer-brand p { font-size: 0.9rem; line-height: 1.7; }
    .footer-col h4 {
      color: var(--white);
      font-size: 1rem;
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .footer-col a {
      display: block;
      padding: 4px 0;
      font-size: 0.9rem;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--red-light); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 24px;
      text-align: center;
      font-size: 0.85rem;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 900px) {
      .hero-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .hero-stats { gap: 24px; flex-wrap: wrap; }
    }
    @media (max-width: 700px) {
      .nav-links {
        position: fixed;
        top: 76px; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-120%);
        transition: transform 0.3s;
      }
      .nav-links.open { transform: translateY(0); }
      .hamburger { display: flex; }
      .waitlist-form .form-row { grid-template-columns: 1fr; }
      .section { padding: 60px 0; }
      .footer-grid { grid-template-columns: 1fr; }
    }
