/* ════════════════════════════════════════════════
   TEXAS MUSIC & AMUSEMENTS — Main Stylesheet
   ════════════════════════════════════════════════

   ┌─────────────────────────────────────────────┐
   │  HERO BACKGROUND IMAGES                     │
   │  Change image paths here to update heroes   │
   │  Images live in the /images/ folder         │
   └─────────────────────────────────────────────┘ */

.hero         .hero-bg::after      { --bg: url("images/bg_home.jpg");    }
.page-pool    .page-hero-bg::after { --bg: url("images/bg_pool.jpg");    }
.page-juke    .page-hero-bg::after { --bg: url("images/bg_juke.jpg");    }
.page-atm     .page-hero-bg::after { --bg: url("images/bg_atm.jpg");     }
.page-games   .page-hero-bg::after { --bg: url("images/bg_games.jpg");   }
.page-more    .page-hero-bg::after { --bg: url("images/bg_more.jpg");    }
.page-about   .page-hero-bg::after { --bg: url("images/bg_about.jpg");   }
.page-contact .page-hero-bg::after { --bg: url("images/bg_contact.jpg"); }

/* ════════════════════════════════════════════════
   BACKGROUND POSITION FINE-TUNING
   Options: "center top", "center center",
   "center 30%", "left center", etc.
   ════════════════════════════════════════════════ */

.hero         .hero-bg::after      { background-position: center bottom;    }
.page-pool    .page-hero-bg::after { background-position: center 35%;    }
.page-juke    .page-hero-bg::after { background-position: center center; }
.page-atm     .page-hero-bg::after { background-position: center center; }
.page-games   .page-hero-bg::after { background-position: center center; }
.page-more    .page-hero-bg::after { background-position: center center; }
.page-about   .page-hero-bg::after { background-position: center center; }
.page-contact .page-hero-bg::after { background-position: center center; }

/* ════════════════════════════════════════════════
   RESET & BASE
   ════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #FF191E;
  --red-dark:   #c0392b;
  --dark:       #0a0a0a;
  --dark2:      #111111;
  --light-gray: #888;
  --white:      #ffffff;
  --off-white:  #f0ede8;
  --blue:       #3a8bd5;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ════════════════════════════════════════════════
   SHARED ACCENT CLASSES
   ════════════════════════════════════════════════ */
.accent-red    { color: var(--red);  display: block; }
.accent-blue   { color: var(--blue); display: block; }
.accent-gold   { color: #e6b800;     display: block; }
.accent-purple { color: #a855f7;     display: block; }

/* ════════════════════════════════════════════════
   TOP BAR
   ════════════════════════════════════════════════ */
.topbar { background: #000; border-bottom: 1px solid #222; padding: 8px 32px 8px 42px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 8px; font-size: 13px; color: #ccc; }
.topbar a { color: #ccc; text-decoration: none; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar span { display: flex; align-items: center; gap: 6px; }
.topbar .icon { color: var(--red); font-size: 14px; }

/* ════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════ */
nav { background: #000; border-bottom: 1px solid #1a1a1a; display: flex; justify-content: space-between; align-items: center; padding: 8px 30px 8px 34px; position: sticky; top: 0; z-index: 1000; flex-wrap: nowrap; gap: 12px; }

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 88px; width: auto; display: block; max-width: 220px; }
.logo a { display: flex; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; flex-shrink: 1; min-width: 0; }
.nav-links a { color: #ddd; text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; padding: 6px 8px; text-transform: uppercase; transition: color .2s; white-space: nowrap; display: block; }
.nav-links a:hover { color: var(--red); }
.nav-links .active { color: var(--white); border-bottom: 2px solid var(--red); }

.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-buttons { display: flex; flex-direction: column; gap: 5px; align-items: stretch; }

.btn-callnow { display: flex; flex-direction: column; align-items: center; border: 2px solid var(--red); border-radius: 4px; padding: 5px 12px; text-decoration: none; line-height: 1.2; transition: background .2s; }
.btn-callnow:hover { background: rgba(255,25,30,0.1); }
.btn-callnow-label  { font-size: 9px; letter-spacing: 2px; color: #888; text-transform: uppercase; }
.btn-callnow-number { font-size: 14px; font-weight: 700; color: var(--white); white-space: nowrap; }

.btn-red { background: var(--red); color: var(--white); padding: 10px 18px; font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: background .2s, transform .1s; border-radius: 4px; text-align: center; white-space: nowrap; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-outline { background: transparent; color: var(--white); padding: 10px 18px; font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border: 2px solid var(--white); cursor: pointer; text-decoration: none; display: inline-block; transition: background .2s, color .2s; border-radius: 4px; text-align: center; white-space: nowrap; }
.btn-outline:hover { background: var(--white); color: var(--dark); }

.btn-cta { font-size: 16px; padding: 14px 32px; white-space: nowrap; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; flex-shrink: 0; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all .3s; }

.nav-close { display: none; position: fixed; top: 20px; right: 20px; background: none; border: none; color: var(--white); font-size: 32px; cursor: pointer; z-index: 1001; }
.nav-close.open { display: block; }

/* ════════════════════════════════════════════════
   SHARED SECTION UTILITIES
   ════════════════════════════════════════════════ */
.section-eyebrow { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.section-eyebrow::before, .section-eyebrow::after { content: ''; display: block; width: 40px; height: 1px; background: var(--red); }
.section-title { font-family: 'Oswald', sans-serif; font-size: clamp(26px, 4vw, 40px); font-weight: 700; text-transform: uppercase; margin-bottom: 60px; }
.products-title { color: var(--white); }

/* ════════════════════════════════════════════════
   HOMEPAGE HERO
   ════════════════════════════════════════════════ */
.hero { position: relative; min-height: 600px; display: flex; align-items: flex-start; overflow: hidden; background: #0a0a0a; filter: brightness(1.15) contrast(1.05); }
.hero-bg { position: absolute; inset: 0; }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.65) 45%, rgba(0,0,0,0.15) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 600px; padding: 100px 40px 80px 55px; }
.hero-eyebrow { font-size: 11px; letter-spacing: 3px; color: var(--blue); text-transform: uppercase; font-weight: 600; margin-bottom: 18px; }
.hero h1 { font-family: 'Oswald', sans-serif; font-size: clamp(32px, 4vw, 56px); font-weight: 700; line-height: 1.0; text-transform: uppercase; margin-bottom: 20px; white-space: nowrap; }
.hero h1 .accent { color: var(--red); display: block; }
.hero-desc { font-size: 16px; color: #d8d8d8; line-height: 1.85; margin: 20px 0 32px; max-width: 480px; text-shadow: 0 1px 4px rgba(0,0,0,0.6); }
.hero-icons { display: flex; gap: 24px; margin: 28px 0; flex-wrap: wrap; }
.hero-icon-item { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: #ccc; }
.hero-icon-item .ico { width: 52px; height: 52px; border: 2px solid #444; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; background: rgba(0,0,0,0.4); }
.hero-icon-item a { text-decoration: none; color: inherit; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ════════════════════════════════════════════════
   PRODUCT / INNER PAGE HERO
   ════════════════════════════════════════════════ */
.page-hero { position: relative; min-height: 560px; display: flex; align-items: flex-start; overflow: hidden; background: #0a0a0a; filter: brightness(1.15) contrast(1.05); }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-repeat: no-repeat;
}
.page-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.70) 45%, rgba(0,0,0,0.18) 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 580px; padding: 100px 40px 80px 55px; }
.page-eyebrow { font-size: 11px; letter-spacing: 3px; color: var(--blue); text-transform: uppercase; font-weight: 600; margin-bottom: 18px; }
.page-hero h1 { font-family: 'Oswald', sans-serif; font-size: clamp(32px, 4vw, 56px); font-weight: 700; line-height: 1.0; text-transform: uppercase; margin-bottom: 20px; }
.page-hero-desc { font-size: 15px; color: #d0d0d0; line-height: 1.8; margin-bottom: 32px; max-width: 460px; text-shadow: 0 1px 4px rgba(0,0,0,0.6); }
.page-hero-icons { display: flex; gap: 28px; margin-bottom: 32px; flex-wrap: wrap; }
.phi { display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: #bbb; text-align: center; }
.phi .phi-ico { width: 48px; height: 48px; border: 2px solid #444; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; background: rgba(0,0,0,0.4); color: var(--blue); }
.page-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ════════════════════════════════════════════════
   HOMEPAGE SECTIONS
   ════════════════════════════════════════════════ */
.value-props { background: var(--dark2); border-top: 1px solid #222; border-bottom: 1px solid #222; padding: 48px 40px; }
.value-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #222; }
.value-card { background: var(--dark2); padding: 36px 28px; text-align: center; }
.value-card .v-icon { font-size: 32px; color: var(--red); margin-bottom: 14px; }
.value-card h3 { font-family: 'Oswald', sans-serif; font-size: 15px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.value-card p { font-size: 13px; color: #888; line-height: 1.6; }

.how-section { background: var(--off-white); color: var(--dark); padding: 80px 40px; text-align: center; }
.steps { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); }
.step { padding: 32px 28px; border-right: 1px solid #ddd; }
.step:last-child { border-right: none; }
.step-num { font-family: 'Oswald', sans-serif; font-size: 80px; font-weight: 700; color: #ddd; line-height: 1; margin-bottom: 8px; }
.step-icon { width: 64px; height: 64px; background: var(--dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 20px; }
.step h3 { font-family: 'Oswald', sans-serif; font-size: 16px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.step p { font-size: 14px; color: #555; line-height: 1.6; }

.products-section { background: var(--dark); padding: 80px 40px; text-align: center; }
.products-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { background: var(--dark2); border: 1px solid #222; overflow: hidden; transition: border-color .2s, transform .2s; border-radius: 4px; }
.product-card:hover { border-color: var(--red); transform: translateY(-4px); }
.product-img { width: 100%; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 64px; background: #1a1a1a; border-bottom: 1px solid #222; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-body { padding: 20px; }
.product-body h3 { font-family: 'Oswald', sans-serif; font-size: 16px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.product-body p { font-size: 13px; color: #888; line-height: 1.6; }
.view-all-wrap { margin-top: 40px; }

.why-wrapper { background: var(--dark2); }
.why-section { padding: 80px 40px; display: flex; align-items: center; gap: 80px; max-width: 1200px; margin: 0 auto; }
.why-left { flex: 0 0 auto; font-family: 'Oswald', sans-serif; font-size: clamp(28px, 4vw, 44px); font-weight: 700; line-height: 1.1; }
.why-left .wl1 { color: var(--red); }
.why-left .wl2 { color: var(--blue); }
.why-left .wl3 { color: #4d4; }
.why-right { flex: 1; }
.why-right .section-eyebrow { justify-content: flex-start; }
.why-right .section-eyebrow::before { display: none; }
.why-right h2 { font-family: 'Oswald', sans-serif; font-size: clamp(22px, 3vw, 34px); font-weight: 700; text-transform: uppercase; margin-bottom: 20px; }
.why-right p { font-size: 15px; color: #aaa; line-height: 1.7; margin-bottom: 32px; }
.why-badges { display: flex; gap: 24px; flex-wrap: wrap; }
.why-badge { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: #888; text-align: center; }
.why-badge .b-icon { font-size: 28px; color: var(--red); }

.cta-wrapper { background: var(--dark); border-top: 1px solid #222; border-bottom: 1px solid #222; }
.cta-strip { padding: 60px 40px; display: flex; align-items: center; justify-content: space-between; gap: 32px; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; }
.cta-strip h2 { font-family: 'Oswald', sans-serif; font-size: clamp(22px, 3vw, 34px); font-weight: 700; text-transform: uppercase; }
.cta-strip p { font-size: 15px; color: #888; margin-top: 6px; }

/* ════════════════════════════════════════════════
   PRODUCT PAGE SECTIONS
   ════════════════════════════════════════════════ */
.benefits-section { background: var(--dark2); padding: 72px 40px; text-align: center; }
.benefits-grid { max-width: 1100px; margin: 48px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #222; }
.benefit-card { background: var(--dark2); padding: 36px 24px; text-align: center; }
.benefit-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.benefit-card h3 { font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; color: var(--blue); }
.benefit-card p { font-size: 13px; color: #888; line-height: 1.65; }

.how-it-works { background: var(--off-white); color: var(--dark); padding: 72px 40px; }
.how-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 340px 1fr; gap: 60px; align-items: center; }
.how-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; background: #1a1a1a; display: flex; align-items: center; justify-content: center; font-size: 80px; overflow: hidden; }
.how-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.how-right .section-eyebrow { justify-content: flex-start; color: var(--red); }
.how-right .section-eyebrow::before, .how-right .section-eyebrow::after { display: none; }
.how-right h2 { font-family: 'Oswald', sans-serif; font-size: clamp(24px, 3vw, 36px); font-weight: 700; text-transform: uppercase; margin-bottom: 36px; color: var(--dark); }
.how-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.how-step { display: flex; gap: 14px; align-items: flex-start; }
.how-step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--dark); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 700; flex-shrink: 0; }
.how-step-text h4 { font-family: 'Oswald', sans-serif; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; color: var(--dark); }
.how-step-text p { font-size: 13px; color: #555; line-height: 1.6; }

.brands-section { background: var(--dark); padding: 56px 40px; text-align: center; border-top: 1px solid #1a1a1a; }
.brands-grid { max-width: 1000px; margin: 32px auto 0; display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.brand-name { font-family: 'Oswald', sans-serif; font-size: clamp(16px, 2vw, 22px); font-weight: 700; color: #555; letter-spacing: 2px; text-transform: uppercase; transition: color .2s; }
.brand-name:hover { color: #888; }
.brand-and-more { font-size: 14px; color: #444; font-style: italic; }

.page-cta-section { background: var(--dark2); padding: 64px 40px; }
.page-cta-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: center; }
.page-cta-tagline { font-family: 'Oswald', sans-serif; font-size: clamp(22px, 3vw, 34px); font-weight: 700; line-height: 1.1; }
.page-cta-tagline .t1 { color: var(--red); }
.page-cta-tagline .t2 { color: var(--blue); }
.page-cta-tagline .t3 { color: #4d4; }
.page-cta-body { font-size: 14px; color: #888; line-height: 1.7; }
.page-cta-box { background: var(--dark); border: 1px solid #2a2a2a; border-radius: 4px; padding: 28px 24px; text-align: center; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.page-cta-phone { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; color: var(--white); display: flex; align-items: center; gap: 10px; }
.page-cta-phone span { color: var(--blue); font-size: 20px; }

.extra-section { background: var(--dark); padding: 72px 40px; text-align: center; }
.extra-grid { max-width: 1100px; margin: 48px auto 0; display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.extra-card { background: var(--dark2); border: 1px solid #1e1e1e; border-radius: 4px; padding: 24px 16px; text-align: center; transition: border-color .2s; }
.extra-card:hover { border-color: var(--red); }
.extra-card .e-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.extra-card h4 { font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); margin-bottom: 6px; }
.extra-card p { font-size: 11px; color: #666; line-height: 1.5; }

.atm-features { background: var(--dark2); padding: 72px 40px; }
.atm-features-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 320px; gap: 48px; align-items: start; }
.atm-features h2 { font-family: 'Oswald', sans-serif; font-size: clamp(24px, 3vw, 36px); font-weight: 700; text-transform: uppercase; line-height: 1.1; margin-bottom: 12px; }
.atm-features-desc { font-size: 14px; color: #888; line-height: 1.7; margin-top: 16px; }
.atm-checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; padding-top: 8px; }
.atm-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #bbb; line-height: 1.5; }
.atm-checklist li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.atm-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 4px; background: #1a1a1a; display: flex; align-items: center; justify-content: center; font-size: 80px; overflow: hidden; }

/* ════════════════════════════════════════════════
   MORE PAGE SECTIONS
   ════════════════════════════════════════════════ */
.more-intro { background: var(--dark); padding: 72px 40px; text-align: center; border-bottom: 1px solid #1a1a1a; }
.more-intro p { font-size: 16px; color: #aaa; line-height: 1.8; max-width: 680px; margin: 0 auto; }
.more-products { background: var(--dark); padding: 72px 40px; }
.more-products-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.more-card { background: var(--dark2); border: 1px solid #222; border-radius: 4px; overflow: hidden; transition: border-color .2s; }
.more-card:hover { border-color: var(--red); }
.more-card-img { width: 100%; aspect-ratio: 16/9; background: #1a1a1a; display: flex; align-items: center; justify-content: center; font-size: 80px; border-bottom: 1px solid #222; overflow: hidden; }
.more-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.more-card-body { padding: 32px; }
.more-card-eyebrow { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); font-weight: 600; margin-bottom: 10px; }
.more-card-body h2 { font-family: 'Oswald', sans-serif; font-size: clamp(22px, 2.5vw, 32px); font-weight: 700; text-transform: uppercase; line-height: 1.05; margin-bottom: 16px; }
.more-card-body p { font-size: 14px; color: #aaa; line-height: 1.75; margin-bottom: 24px; }
.more-card-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.more-card-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #bbb; line-height: 1.5; }
.more-card-features li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.more-benefits { background: var(--dark2); padding: 72px 40px; text-align: center; border-top: 1px solid #1a1a1a; }

/* ════════════════════════════════════════════════
   ABOUT PAGE SECTIONS
   ════════════════════════════════════════════════ */
.stats-bar { background: var(--dark2); border-top: 1px solid #222; border-bottom: 1px solid #222; padding: 48px 40px; }
.stats-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #222; }
.stat-card { background: var(--dark2); padding: 36px 28px; text-align: center; }
.stat-icon { font-size: 32px; margin-bottom: 12px; display: block; }
.stat-number { font-family: 'Oswald', sans-serif; font-size: clamp(36px, 5vw, 56px); font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #666; font-weight: 600; }

.story-section { background: var(--dark); padding: 80px 40px; }
.story-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.story-left .section-eyebrow { justify-content: flex-start; }
.story-left .section-eyebrow::before { display: none; }
.story-left h2 { font-family: 'Oswald', sans-serif; font-size: clamp(28px, 4vw, 44px); font-weight: 700; text-transform: uppercase; line-height: 1.05; margin-bottom: 24px; }
.story-left p { font-size: 15px; color: #aaa; line-height: 1.8; margin-bottom: 18px; }
.story-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; background: #1a1a1a; display: flex; align-items: center; justify-content: center; font-size: 80px; overflow: hidden; }
.story-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.why-5-section { background: var(--dark2); padding: 80px 40px; text-align: center; }
.why-5-grid { max-width: 1200px; margin: 48px auto 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: #222; }
.why-5-card { background: var(--dark2); padding: 36px 20px; text-align: center; }
.why-5-icon { font-size: 32px; margin-bottom: 14px; display: block; color: var(--blue); }
.why-5-card h3 { font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.why-5-card p { font-size: 13px; color: #888; line-height: 1.6; }

.about-brands { background: var(--dark); border-top: 1px solid #1a1a1a; border-bottom: 1px solid #1a1a1a; padding: 48px 40px; text-align: center; }
.about-brands-grid { max-width: 1100px; margin: 32px auto 0; display: flex; align-items: center; justify-content: center; gap: 52px; flex-wrap: wrap; }
.about-brand { font-family: 'Oswald', sans-serif; font-size: clamp(15px, 2vw, 22px); font-weight: 700; color: #444; letter-spacing: 2px; text-transform: uppercase; transition: color .2s; }
.about-brand:hover { color: #777; }
.about-brand-more { font-size: 14px; color: #333; font-style: italic; }

.about-cta { background: var(--dark2); padding: 64px 40px; }
.about-cta-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto; gap: 48px; align-items: center; }
.about-cta-tagline { font-family: 'Oswald', sans-serif; font-size: clamp(20px, 3vw, 32px); font-weight: 700; line-height: 1.1; }
.about-cta-tagline .t1 { color: var(--blue); }
.about-cta-tagline .t2 { color: var(--red); }
.about-cta-tagline .t3 { color: #4d4; }
.about-cta-body { font-size: 15px; color: #888; line-height: 1.7; }
.about-cta-box { background: var(--dark); border: 1px solid #2a2a2a; border-radius: 4px; padding: 28px; display: flex; flex-direction: column; gap: 12px; align-items: center; min-width: 240px; }
.about-cta-phone { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700; color: var(--white); display: flex; align-items: center; gap: 8px; }
.about-cta-phone span { color: var(--blue); }

/* ════════════════════════════════════════════════
   CONTACT PAGE SECTIONS
   ════════════════════════════════════════════════ */
.contact-section { background: var(--dark); padding: 80px 40px; }
.contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-info .section-eyebrow { justify-content: flex-start; }
.contact-info .section-eyebrow::before { display: none; }
.contact-info h2 { font-family: 'Oswald', sans-serif; font-size: clamp(26px, 3.5vw, 40px); font-weight: 700; text-transform: uppercase; line-height: 1.05; margin-bottom: 16px; }
.contact-info > p { font-size: 15px; color: #aaa; line-height: 1.8; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon { width: 44px; height: 44px; border: 1px solid #2a2a2a; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; background: var(--dark2); }
.contact-detail-text h4 { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #666; margin-bottom: 4px; }
.contact-detail-text a, .contact-detail-text p { font-size: 15px; color: var(--white); text-decoration: none; transition: color .2s; margin: 0; }
.contact-detail-text a:hover { color: var(--blue); }
.contact-areas { background: var(--dark2); border: 1px solid #222; border-radius: 4px; padding: 24px; }
.contact-areas h4 { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #666; margin-bottom: 14px; }
.contact-areas-list { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tag { background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 3px; padding: 5px 12px; font-size: 12px; color: #aaa; white-space: nowrap; }
.contact-form-wrap { background: #1a1a1a; border: 1px solid #333; border-radius: 4px; padding: 40px; }
.contact-form-wrap h3 { font-family: 'Oswald', sans-serif; font-size: 20px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; color: var(--white); }
.contact-form-wrap > p { font-size: 13px; color: #666; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: #888; margin-bottom: 6px; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--dark); border: 1px solid #2a2a2a; border-radius: 4px; padding: 12px 14px; font-family: 'Barlow', sans-serif; font-size: 14px; color: var(--white); transition: border-color .2s; appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #444; }
.form-group select { cursor: pointer; }
.form-group select option { background: #1a1a1a; color: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { margin-top: 8px; width: 100%; padding: 14px; font-size: 15px; letter-spacing: 1px; }
.form-note { font-size: 12px; color: #444; text-align: center; margin-top: 12px; }
.contact-bottom { background: var(--dark2); border-top: 1px solid #1a1a1a; padding: 64px 40px; }
.contact-bottom-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #222; }
.contact-bottom-card { background: var(--dark2); padding: 40px 32px; text-align: center; }
.contact-bottom-card .cb-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.contact-bottom-card h3 { font-family: 'Oswald', sans-serif; font-size: 15px; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.contact-bottom-card p { font-size: 13px; color: #666; line-height: 1.6; }
.contact-bottom-card a { color: var(--blue); text-decoration: none; }
.contact-bottom-card a:hover { color: var(--white); }

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
footer { background: #000; border-top: 1px solid #1a1a1a; padding: 60px 40px 30px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid #1a1a1a; }
.footer-col h4 { font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #666; text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--red); }
.footer-contact { font-size: 13px; color: #666; line-height: 2; }
.footer-contact a { color: #666; text-decoration: none; }
.footer-social { display: flex; gap: 12px; margin-top: 12px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid #333; display: flex; align-items: center; justify-content: center; color: #888; text-decoration: none; font-size: 14px; font-weight: 700; transition: border-color .2s, color .2s; }
.footer-social a:hover { border-color: var(--red); color: var(--red); }
.footer-bottom { max-width: 1200px; margin: 24px auto 0; text-align: center; font-size: 12px; color: #444; }
.footer-brand img { height: 100px; width: auto; }

/* ════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤900px)
   ════════════════════════════════════════════════ */
@media screen and (max-width: 900px) {
  .topbar { display: none !important; }
  nav { padding: 8px 16px; }
  .logo img { height: 54px; max-width: 160px; }
  .nav-links { display: none; }
  .nav-buttons { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.97); align-items: center; justify-content: center; gap: 8px; z-index: 999; }
  .nav-links.open li { width: 100%; text-align: center; }
  .nav-links.open a { font-size: 20px; padding: 14px 20px; display: block; border-bottom: 1px solid #1a1a1a; }

  .hero { min-height: 500px; filter: brightness(1.1) contrast(1.05); }
  .hero-content { padding: 50px 24px 60px; max-width: 100%; }
  .hero h1 { font-size: clamp(30px, 7vw, 48px); white-space: normal; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 2px; }
  .hero-desc { font-size: 15px; }
  .hero-icons { gap: 16px; }
  .hero-icon-item .ico { width: 44px; height: 44px; font-size: 18px; }

  .page-hero { min-height: 460px; }
  .page-hero-content { padding: 48px 24px 60px; max-width: 100%; }
  .page-hero h1 { font-size: clamp(28px, 7vw, 44px); }

  .value-props { padding: 36px 20px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .how-section { padding: 60px 20px; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid #ddd; }
  .step:last-child { border-bottom: none; }
  .products-section { padding: 60px 20px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .why-section { flex-direction: column; gap: 40px; padding: 60px 20px; }
  .why-badges { justify-content: center; }
  .cta-strip { flex-direction: column; text-align: center; padding: 48px 20px; }

  .benefits-section { padding: 48px 20px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .how-it-works { padding: 48px 20px; }
  .how-inner { grid-template-columns: 1fr; }
  .how-img { max-width: 400px; }
  .how-steps { grid-template-columns: 1fr; gap: 20px; }
  .brands-section { padding: 40px 20px; }
  .brands-grid { gap: 28px; }
  .page-cta-section { padding: 48px 20px; }
  .page-cta-inner { grid-template-columns: 1fr; gap: 28px; }
  .extra-section { padding: 48px 20px; }
  .extra-grid { grid-template-columns: repeat(3, 1fr); }
  .atm-features { padding: 48px 20px; }
  .atm-features-inner { grid-template-columns: 1fr; }
  .atm-img { max-width: 300px; }

  .more-intro { padding: 48px 20px; }
  .more-products { padding: 48px 20px; }
  .more-products-grid { grid-template-columns: 1fr; }
  .more-benefits { padding: 48px 20px; }
  .more-card-body { padding: 24px; }

  .stats-bar { padding: 36px 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .story-section { padding: 60px 20px; }
  .story-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-5-section { padding: 60px 20px; }
  .why-5-grid { grid-template-columns: repeat(2, 1fr); }
  .about-brands { padding: 40px 20px; }
  .about-brands-grid { gap: 28px; }
  .about-cta { padding: 48px 20px; }
  .about-cta-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .about-cta-box { width: 100%; }

  .contact-section { padding: 60px 20px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-bottom { padding: 48px 20px; }
  .contact-bottom-inner { grid-template-columns: 1fr; }
  .contact-bottom-card { border-bottom: 1px solid #222; }
  .contact-bottom-card:last-child { border-bottom: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: 1 / -1; }
  footer { padding: 48px 20px 24px; }
}

/* ════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤480px)
   ════════════════════════════════════════════════ */
@media screen and (max-width: 480px) {
  .logo img { height: 48px; max-width: 140px; }
  .hero { min-height: auto; }
  .hero-content { padding: 36px 16px 48px; }
  .hero h1 { font-size: clamp(26px, 8vw, 36px); }
  .page-hero-content { padding: 36px 16px 48px; }
  .page-hero h1 { font-size: clamp(26px, 8vw, 36px); }

.page-hero-btns { flex-direction: column; gap: 10px; }
.page-hero-btns .btn-red, .page-hero-btns .btn-outline { width: 100%; text-align: center; }
.hero-btns { flex-direction: column; gap: 10px; }
.hero-btns .btn-red, .hero-btns .btn-outline { width: 100%; text-align: center; }

.hero-icons { gap: 12px; }
.page-hero-icons { display: flex; gap: 12px; justify-content: space-between; }
.hero-icon-item, .phi { font-size: 10px; }
.hero-icon-item .ico, .phi .phi-ico { width: 40px; height: 40px; font-size: 16px; }

  .value-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .extra-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .why-5-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .brands-grid { gap: 20px; }
  .brand-name { font-size: 14px; }
  .section-title { margin-bottom: 36px; }
  .step-num { font-size: 56px; }
  .more-card-body { padding: 18px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .why-5-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════
   CONTACT FORM — HONEYPOT
   ════════════════════════════════════════════════ */
.form-trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
