/*!*************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/styles.css ***!
  \*************************************************************************/
:root {
  /* ===== Global Header Settings ===== */
  --font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-family2: "Times New Roman", Times, serif;

  /* ===== Header Layout ===== */
  --topbar-h: 0px;
  --header-h: 130px;
  --header-padding-x: 0rem;
  --nav-padding-x: 280px;

  /* ===== Colors ===== */
  --header-bg: #fff;
  --header-border: #eee;
  --link-color: #333;
  --link-hover: #0077ff;

  /* ===== Contact Bar ===== */
  --contact-font-size: 1.4rem;
  --phone-icon-size: 30px;

  /* ===== Social Icons ===== */
  --social-icon-size: 28px;
  --social-gap: 12px;

  /* ===== Navigation ===== */
  --nav-gap: 2.5rem;
  --nav-font-size: 1.05rem;

  /* ===== Responsive ===== */
  --mobile-breakpoint: 768px;

  /* ===== Features Section ===== */
  --accent: #0077ff;
  --ink: #1f2937;
  --muted: #6b7280;
  --bg: #1e1e1e;;

  /* ===== Hero Section ===== */
  --bg-start: #0e1421;
  --bg-end: #0a0f1a;
  --glow-warm: 255,156,66;
  --glow-cool: 0,119,255;

  /* ===== Footer ===== */
  --footer-bg-start: #0e1421;
  --footer-bg-end: #0a0f1a;
  --footer-fg: #e5e7eb;
  --footer-muted: #a8b0be;
  --footer-accent: #5aa0ff;
  --footer-border: rgba(255,255,255,.08);
}

/* ================= Responsive Root Adjustments ================= */
@media (max-width: 1900px) { :root { --nav-padding-x: 170px; } }
@media (max-width: 1700px) { :root { --nav-padding-x: 100px; } }
@media (max-width: 1200px) { :root { --nav-padding-x: 0px; } }
@media (max-width: 900px)  { :root { --nav-padding-x: 0px; } }
@media (max-width: 600px)  { :root { --nav-padding-x: 20px; } }

/* ================= Base ================= */
* { font-family: var(--font-family); }
body, ul { margin: 0; padding: 0; }
ul { list-style: none; }

/* ================= Header ================= */
.site-header {
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  padding: var(--topbar-h) var(--header-padding-x) 0 var(--header-padding-x);
  height: var(--header-h);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  position: relative;
}

.contact-number-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 1.2rem;
  background: var(--header-bg);
  font-weight: 400;
  font-size: var(--contact-font-size);
  z-index: 1000;
}

.contact-number-container a { color: var(--link-hover); text-decoration: none; }
.contact-number-container a:hover { text-decoration: underline; }

.phone-icon {
  width: var(--phone-icon-size);
  height: var(--phone-icon-size);
  margin-right: .4rem;
}

.nav-container {
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-template-rows: 1fr 1.5fr;
  align-items: center;
  flex: 1;
  padding: 0 var(--nav-padding-x);
}

.logo { grid-row: 1 / 3; }
.logo img { height: calc(var(--header-h) - 10px); display: block; }

.header-contact { justify-self: end; align-self: start; display: flex; }

.social-icons { display: flex; gap: var(--social-gap); }
.social-link { height: var(--social-icon-size); width: var(--social-icon-size); }

.nav-links {
  display: flex;
  gap: var(--nav-gap);
  align-items: center;
  justify-self: end;
  margin-top: 35px;
}

.nav-links a {
  font-family: var(--font-family2);
  text-decoration: none;
  font-weight: 400;
  font-size: calc(var(--nav-font-size) * 1.2);
  color: var(--link-color);
  position: relative;
  transition: color 0.3s ease;
}


.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--link-hover);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--link-hover); }
.nav-links a:hover::after { width: 100%; }

@media (max-width: 768px) {
  .contact-number-container { display: none; }
  .site-header { padding-top: 0; }
}

/* ================= Mobile Header ================= */
.desktop-header { display: block; }
.mobile-header { display: none; }

@media (max-width: 1100px) {
  .desktop-header { display: none; }
  .mobile-header {
    display: flex;
    flex-direction: column;
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
    padding: 0.8rem 1.2rem;
  }
  .mobile-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .mobile-logo { height: 60px; }
  .mobile-phone {
    font-weight: 600;
    color: var(--link-hover);
    text-decoration: none;
  }
  .mobile-burger {
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--link-color);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #fff;
    border-bottom: 1px solid #ececec;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 999;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav ul { list-style: none; margin: 0; padding: 0; }
  .mobile-nav li { border-bottom: 1px solid #f2f2f2; }
  .mobile-nav li:last-child { border-bottom: none; }
  .mobile-nav a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.15rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease;
  }
  .mobile-nav a:hover { background: #f9f9f9; color: var(--link-hover); }
  .mobile-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
  }
  .mobile-social img { width: 28px; height: 28px; }
}

/* ================= 3 Card Section ================= */
.hp-features {
  background: radial-gradient(120% 90% at 20% 15%, rgba(var(--glow-warm), .14) 0%, rgba(var(--glow-warm), .06) 28%, transparent 60%), radial-gradient(120% 90% at 80% 85%, rgba(var(--glow-cool), .16) 0%, rgba(var(--glow-cool), .05) 30%, transparent 60%), linear-gradient(180deg, var(--bg-start), var(--bg-end));
  padding: 64px 20px;
}

.hp-features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.hp-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height: 80%;
}

.hp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,.12);
  border-color: rgba(0,119,255,.25);
}

.hp-icon {
  width: 96px;
  height: 96px;
  display: block;
  margin: 6px auto 14px;
  object-fit: contain;
}

.hp-card-title {
  margin: 10px 0 8px;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: .2px;
}

.hp-card-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1rem;
}

@media (max-width: 1000px) {
  .hp-features-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hp-features-inner { grid-template-columns: 1fr; }
  .hp-card { padding: 24px 18px; }
  .hp-icon { width: 84px; height: 84px; }
}

/* ================= Hero Duo Section ================= */
.hero-duo {
  position: relative;
  min-height: 833px;
  display: grid;
  place-items: center;
  padding: 40px 20px 0px;
  color: #fff;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 20% 15%, rgba(var(--glow-warm),.14) 0%, rgba(var(--glow-warm),.06) 28%, transparent 60%),
    radial-gradient(120% 90% at 80% 85%, rgba(var(--glow-cool),.16) 0%, rgba(var(--glow-cool),.05) 30%, transparent 60%),
    linear-gradient(180deg, var(--bg-start), var(--bg-end));
}

.hero-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 18px;
  width: min(92vw, 1200px);
}

.tile {
  border-radius: 24px;
  overflow: hidden;
  background:#0b0f18;
  box-shadow: 0 22px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.06);
  position: relative;
}
.tile::before {
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(80% 60% at 50% 0%, rgba(255,255,255,.08), transparent 60%);
  pointer-events:none;
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .6s ease, filter .6s ease;
  filter: saturate(1.02) contrast(1.02);
}
.tile:hover img { transform: scale(1.06); filter: saturate(1.08) contrast(1.06); }

@media (max-width: 900px) {
.tile img {
  width: 320px;
  height: 320px;
}
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0 20px;
  pointer-events: none;
}
.hero-overlay h1 {
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 4.5rem);
  margin: 0 0 34rem;
  color: rgba(255,255,255,.96);
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-tagline {
  letter-spacing: .08em;
  font-size: clamp(.95rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,.92);
}

/* ================= Footer ================= */
.site-footer {
  background: #121212;;
  color: var(--footer-fg);
  padding: 48px 20px 16px;
  border-top: 1px solid var(--footer-border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

.footer-block h4 {
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 .6rem;
}

.footer-list { list-style:none; margin:0; padding:0; }
.footer-list li+li { margin-top:.35rem; }
.footer-list a { color:var(--footer-fg); text-decoration:none; transition:color .2s ease,opacity .2s ease; }
.footer-list a:hover { color:var(--footer-accent); }

.footer-address { font-style:normal; color:var(--footer-muted); line-height:1.6; }
.footer-block p { color:var(--footer-muted); margin:0; }

.footer-bottom {
  max-width:1200px;
  margin:0 auto;
  padding-top:16px;
  border-top:1px solid var(--footer-border);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.footer-brand { font-weight:600; letter-spacing:.04em; opacity:.9; }

.privacy-link {
  color:var(--footer-fg);
  text-decoration:none;
  padding:8px 12px;
  border:1px solid var(--footer-border);
  border-radius:10px;
  transition:background .2s ease,color .2s ease,border-color .2s ease;
}
.privacy-link:hover {
  background:rgba(255,255,255,.06);
  color:var(--footer-accent);
  border-color:rgba(90,160,255,.35);
}

.footer-meta {
  max-width:1200px;
  margin:10px auto 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:var(--footer-muted);
}
.footer-meta small { font-size:.72rem; opacity:.85; }
.footer-meta .credit a {
  color:var(--footer-muted);
  text-decoration:none;
  border-bottom:1px dotted rgba(255,255,255,.2);
}
.footer-meta .credit a:hover {
  color:var(--footer-accent);
  border-bottom-color:transparent;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; }
  .main { max-width: 760px !important; }
  .hero-overlay h1 {
    font-weight: 300;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: clamp(2rem, 5vw, 4.5rem);
    margin: 50px 0 10rem;
    color: rgba(255,255,255,.96);
    text-shadow: 0 2px 20px rgba(0,0,0,.4);
  }
  .hero-tiles {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: min(92vw, 1200px);
  }
  .hero-tagline {
    margin-top: 35rem;
  }
}



/*!**************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/repairs.css ***!
  \**************************************************************************/
/*==========================
   REPAIRS PAGE — NEW LOOK (IMPROVED)
==========================*/

.repairs {
  background: #f6f8fb;
  padding: 50px 40px; /* reduced dead spacing */
}

/* contains everything neatly, no wasted above-fold space */
.repairs-container {
  max-width: 1200px;
  margin: auto;
  padding-top: 40px;
}

/* Typography hierarchy improved */
.repairs-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #0e1b2b;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.repairs-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 35px auto; /* pulled tighter to content */
  color: #47505a;
  font-size: 1.18rem;
  line-height: 1.7;
}


/* ================= REPAIRS GRID SECTION ================= */

.repairs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding: 28px 300px;
    background-color: #1a1a1a;;
}
@media (max-width: 1500px) {
  .repairs-grid {
      padding: 0;
  }
}

.repair-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 12px;
    text-align: center;
    transition: transform .25s 
ease, box-shadow .25s 
ease;
}

.repair-card img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 12px;
    align-self: center;
}

.repair-card span{
  color: #fff;
}

/* ================= CONTENT SECTION ANCHOR ================= */
.repairs-columns {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 20px;
  padding: 0 5vw;
}

.repairs-info-img{
  padding-top: 23px;
}

.repairs-info-img img{
  text-align: center;
  margin-bottom: 30px;
  height: 620px;
  width: auto;
  border-radius: 25px;
}

.repairs-info {
  background:#1a1a1a;;
  padding:15px 15vw;
  display: flex;
}

.repair-info-item h3{
  font-size: 1.3rem;
    color: #fff;
}

.repair-info-item p{
  font-size: 1.15rem;
  color: #fff;
}




@media (max-width: 1500px) {
  .repairs-info {
    flex-direction: column;
    padding: 30px 5vw;
    justify-items: center;
    align-items: center;
  }
  .repairs-info-img {display: flex;}
  .repairs-info-img img{
    text-align: center;
    margin-bottom: 30px;
    height: 70vw;
    width: auto;
    border-radius: 25px;
    align-self: center;
  }
}


/* ================= CTA FIXED — NO LONGER AWKWARD ================= */
.repairs-cta {
  text-align: center;
  margin: 40px 0 55px 0;
  padding: 35px 0;
  background: linear-gradient(180deg, transparent, #edf2f7);
  border-radius: 16px;
}

.repairs-cta p {
  color: #0e1b2b;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.btn-primary.large {
  font-size: 1.2rem;
  padding: 16px 38px;
  border-radius: 10px;
  font-weight: 700;
}

/* ================= No More Hard Jump → Smooth transition ================= */

.repairs-gallery h3 {
  margin-top: 20px;
  font-size: 1.9rem;
  text-align: center;
  color: #fff;
  font-weight: 700;
  margin-bottom: 24px;
}

.repairs-gallery {
  background-color: #121212;
  padding-top: 30px;
  padding-bottom: 50px;
  border-top: 1px solid rgba(0,0,0,.08);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1500px) {
  .repairs-columns {
    grid-template-columns: 1fr;
    padding: 15px;
  }
  .repairs-intro { font-size: 1.05rem; }
}


/* ================= REPAIRS CAROUSEL — UNTOUCHED ================= */

.repairs-carousel {
  position: relative;
  margin-bottom: 32px;
  overflow: hidden;
  width: 72%;
  margin-left: 14%;
}

.repairs-carousel .carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.repairs-carousel .carousel-slide {
  flex: 0 0 33.333%;
  box-sizing: border-box;
  padding: 0 8px;
}

.repairs-carousel .carousel-slide img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

/* Prev / Next Buttons */
.repairs-carousel .carousel-prev,
.repairs-carousel .carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent, #0073e6);
  color: #fff;
  border: none;
  font-size: 1.3rem;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0.85;
  transition: 0.25s;
  z-index: 5;
}

.repairs-carousel .carousel-prev:hover,
.repairs-carousel .carousel-next:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.08);
}

.repairs-carousel .carousel-prev { left: 14px; }
.repairs-carousel .carousel-next { right: 14px; }

/* Base CTA Button */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background .25s ease;
}

.btn-primary:hover {
  background: #005dd6;
}

/* ================== HERO SECTION ================== */
.repairs-hero {
  background:#121212;;;
  padding:60px 6vw;
}

.repairs-hero-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
  max-width:1250px;
  margin:auto;
}

.repairs-hero-text {
  flex:1;
}

.repairs-hero-text h1 {
  font-size:3.1rem;
  font-weight:400;
  margin-bottom:12px;
  color:#fff;
}

.repairs-hero-text p {
  font-size:1.15rem;
  line-height:1.65;
  color:#fff;
  max-width:600px;
  margin-bottom:24px;
}

.repairs-hero-img {
  flex:1;
}

.repairs-hero-img img {
  width:90%;
  border-radius:18px;
  box-shadow:0 15px 35px rgba(0,0,0,.15);
}

/* ================= FINAL CTA SECTION ================= */
.final-cta-light {
  background: #1a1a1a;
  border-top: 1px solid rgba(0,0,0,.06);
  text-align: center;
  padding: 90px 6vw;
}

.final-cta-light h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
}

.final-cta-light p {
  max-width: 850px;
  margin: 0 auto 28px auto;
  font-size: 1.3rem;
  line-height: 1.7;
  color: #fff;
}

.cta-light-button {
  display: inline-block;
  background: var(--accent, #0073e6);
  color: #fff;
  padding: 18px 46px;
  border-radius: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  transition: .25s ease;
  box-shadow: 0 6px 18px rgba(0,115,230,.3);
}

.cta-light-button:hover {
  background: #005ec4;
  transform: translateY(-2px);
}

.cta-note {
  display: block;
  font-size: 1rem;
  margin-top: 18px;
  color: #637180;
  opacity: .9;
}

/* Mobile scaling */
@media(max-width:900px){
  .final-cta-light h2 {font-size: 2.1rem;}
  .final-cta-light p {font-size: 1.15rem;}
  .cta-light-button {font-size: 1.1rem; padding: 14px 36px;}
}





/* RESPONSIVE */
@media(max-width:900px){
  .repairs-hero-inner{flex-direction:column;}
  .repairs-columns{grid-template-columns:1fr;}
  .repairs-hero-text h1{font-size:2.4rem;}
}



/* ================= MOBILE CAROUSEL — ORIGINAL ================= */
@media (max-width: 768px) {
  .repairs-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .repairs-carousel .carousel-track {
    gap: 12px;
    transition: none;
  }

  .repairs-carousel .carousel-slide {
    flex: 0 0 80%;
    scroll-snap-align: center;
    padding: 0;
  }

  .repairs-carousel .carousel-prev,
  .repairs-carousel .carousel-next {
    display: none;
  }
}



/*!*************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/sweeps.css ***!
  \*************************************************************************/

.dustfree-banner {
  padding: 70px 6vw;
  color: #e8e8e8;
  text-align: left;
  box-shadow: 0 25px 55px rgba(0,0,0,.60);
  background: #1e1e1e;
}

.dustfree-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.dustfree-icon img {
  width: 600px;
  border-radius: 20px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.80));
}

.dustfree-text h2 {
  font-size: 2.4rem;
  margin-bottom: 14px;
  font-weight: 400;
  color: #ffffff;
}

.dustfree-text p {
  font-size: 1.15rem;
  line-height: 1.65;
  max-width: 750px;
  opacity: .95;
  color: #cfcfcf;
}

/* Responsive */
@media(max-width:1200px){
  .dustfree-inner {flex-direction: column; text-align:center;}
  .dustfree-text h2 {font-size:2rem;}
  .dustfree-icon img {width:100%;}
}

/* ================= LC SWEEPS HERO SECTION ================= */
.sweeps-hero {
    background:#121212;/* dark theme */
    padding:90px 16vw;
    color: #e8e8e8;
}

.sweeps-hero-inner {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    max-width:1250px;
    margin:auto;
}

.sweeps-hero-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sweeps-hero-text h1 {
    font-size:3.1rem;
    font-weight:400;
    margin-bottom:12px;
    color:#ffffff;
}

.sweeps-hero-text p {
    font-size:1.18rem;
    line-height:1.7;
    color:#bdbdbd;
    margin-bottom:16px;
    max-width:650px;
}

.sweeps-btn {
    display:inline-block;
    background:#0a84ff;
    color:#fff;
    padding:16px 40px;
    border-radius:10px;
    font-size:1.25rem;
    font-weight:700;
    text-decoration:none;
    transition:.25s ease;
    box-shadow:0 6px 25px rgba(10,132,255,.25);
    width: 35%;
}

.sweeps-btn:hover {
    background:#0066cc;
    transform:translateY(-2px);
}

/* LOGO IMAGE */
.sweeps-hero-img {
    flex:1;
}
.sweeps-hero-img img {
    width:100%;
    border-radius:18px;
    box-shadow:0 12px 32px rgba(0,0,0,.60);
}

/* ================= Responsive ================= */
@media(max-width:1500px){
    .sweeps-hero-inner {
        flex-direction:column;
        text-align:center;
    }
    .sweeps-hero-text h1 {
        font-size:2.5rem;
    }
    .sweeps-btn {font-size:1.1rem; width: 74%; align-self: center;}
}

/* Sweep Information Section */
.sweep-info {
  padding: 60px 20px;
  background: #121212;;
  box-shadow: 0 25px 55px rgba(0, 0, 0, .60);
  color: #e8e8e8;
}

.sweep-info-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.sweep-info h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #ffffff;
}

.sweep-info-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.sweep-info-block h3 {
  font-size: 20px;
  margin-bottom: 15px;
  border-left: 4px solid #ff5f56; /* dark theme accent */
  padding-left: 10px;
  color: #eaeaea;
}

.sweep-info-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sweep-info-block ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  color: #cfcfcf;
}

.sweep-info-block ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff5f56;
}

/* ================= CTA Section ================= */
/* CTA Section */
.sweep-cta {
  background: #1e1e1e;
  color: #e8e8e8;
  padding: 60px 20px;
  text-align: center;
}

.sweep-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.sweep-cta h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #ffffff;
}

.sweep-cta p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #cfcfcf;
}

.sweep-cta .cta-btn {
  display: inline-block;
  padding: 14px 38px;
  font-size: 18px;
  background: #0a84ff;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  background-color: #0a84ff;
}

.sweep-cta .cta-btn:hover {
  background: #0066cc;
}

/* =============== pricing section ====================*/

.sweep-pricing {
  padding: 40px 20px;
  background: #121212;;
  color: #e8e8e8;
}

.sweep-pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.sweep-pricing h2 {
  font-size: 32px;
  margin-bottom: 50px;
  color: #ffffff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.pricing-item {
  padding: 25px;
  border-radius: 6px;
}

.pricing-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 4px;
}

.pricing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #eaeaea;
}

.price {
  display: block;
  font-size: 22px;
  font-weight: bold;
  color: #ff5f56;
  margin-bottom: 5px;
}

.price-note {
  font-size: 14px;
  opacity: 0.8;
  color: #bdbdbd;
}

.benefit-note {
  font-size: 15px;
  color: #6fcf97; /* still "positive", just softer on dark */
  margin-top: 6px;
  font-weight: 400;
}

