   :root {
      --brand-red: #9f111b;
    }

    html {
      scroll-behavior: smooth; /* 🔥 makes nav links scroll smoothly */
    }

    body {
      margin: 0;
      font-family: Helvetica, Arial, sans-serif;
      background: #fff;
      color: #111;
      line-height: 1.5;
    }

        /* -------------------- NAV -------------------- */
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 5%;
      background: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .logo a {
        font-size: 1.8rem;
      text-decoration: none;
    }

    .logo a:hover {
      color: #555;
    }

    .logo-text {
      font-family: Helvetica, Arial, sans-serif;
      font-weight: bold;
      font-style: oblique;
      letter-spacing: -0.07em;
      text-transform: lowercase;
      color: var(--brand-red);
    }

     nav ul {
      list-style: none;
      display: flex;
      gap: 1.5rem;
      margin: 0;
      padding: 0;
    }

    nav ul li a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: color 0.2s ease, border-bottom 0.2s ease;
      padding-bottom: 2px;
    }

    nav ul li a.active {
      color: var(--brand-red);
      border-bottom: 2px solid var(--brand-red);
    }

    /* Default nav styles remain the same */

    /* Burger hidden on desktop */
    .burger {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: #333;
    }

    /* Mobile styles */
    @media (max-width: 768px) {
      nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px; /* height of nav bar */
        right: 0;
        background: #fff;
        width: 200px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        padding: 1rem;
      }

      nav ul.show {
        display: flex;
      }

      .burger {
        display: block;
      }
    }


    /* --- HERO --- */
    .hero {
      background: var(--brand-red);
      padding: 4rem 5%;
      display: flex;
      justify-content: center;
    }

    .hero-inner {
      background: #fff;
      border-radius: 16px;
      padding: 3rem;
      max-width: 1200px;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

    .hero-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero-text h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      color: #111;
    }

    .hero-text p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      color: #555;
    }

    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--brand-red);
      color: #fff;
      padding: 0.85rem 1.6rem;
      border-radius: 8px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: background 0.2s ease;
    }

    .btn-primary:hover {
      background: #7c0d15;
    }

    .btn-secondary {
      background: #f5f5f5;
      color: #333;
      padding: 0.85rem 1.6rem;
      border-radius: 8px;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.2s ease;
    }

    .btn-secondary:hover {
      background: #e5e5e5;
    }

    .hero-highlights {
      list-style: none;
      justify-content: center;
      padding: 0;
      margin: 0;
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      font-size: 1rem;
      font-weight: 500;
      color: #333;
    }

    .hero-highlights li {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .hero-highlights li i {
      color: #2ecc71; /* green ticks */
    }

    /* Centered hero */
    .hero-centered {
      display: flex;
      justify-content: center;
      text-align: center;
    }

    .hero-text {
      max-width: 800px;
      margin: 0 auto;
    }

    .hero-text h1 {
      font-size: 4.8rem;
      font-weight: bold;
      line-height: 1.1;
      margin-bottom: 1rem;
      color: #111;
    }

    .hero-text h1 .highlight {
      color: var(--brand-red);
    }

    .hero-text p {
      font-size: 1.5rem;
      margin-bottom: 2rem;
      color: #555;
    }

    /* ABOUT US SECTION */
.about-us {
  padding: 4rem 5%;
  background: #fff;
}

.about-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.about-us-left h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #111;
}

.about-us-left p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #444;
  line-height: 1.6;
}

.about-us-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top:2.0em;
}

.about-us-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-us-box {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.about-us-box i {
  font-size: 2rem;
  color: var(--brand-red);
  margin-bottom: 0.75rem;
}

.about-us-box h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #111;
}

.about-us-box.full {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .about-us-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-us-top {
    grid-template-columns: 1fr;
  }

  .about-us-box.full {
    grid-column: auto;
  }
}

    /* -------------------- SERVICES -------------------- */
    .services {
      padding: 4rem 5%;
      text-align: center;
    }

    .services h2 {
      font-size: 2rem;
      margin-bottom: 2rem;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .service {
      padding: 2rem;
      border-radius: 12px;
      background: #fafafa;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .service i {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: var(--brand-red);
    }

    /* -------------------- COMPARISON -------------------- */
    .comparison {
      background: #fafafa;
      padding: 4rem 5%;
    }

    .comparison-inner {
      max-width: 1100px;
      margin: 0 auto;
      text-align: center;
    }

    .comparison h2 {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }

    .comparison h2 p.logo-text {
      display:inline;
      margin-right:5px;
    }

    .comparison .intro {
      color: #555;
      margin-bottom: 2.5rem;
      font-size: 1.05rem;
    }

.comparison-table {
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
}

.comparison-table th {
  background: #fbe9eb; /* light red tint */
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #111;
}

.comparison-table th:first-child {
  width: 30%;
}



.comparison-table td i {
  margin-right: 0.5rem;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table td:nth-child(2) i {
  color: #2ecc71; /* green for nanoswift checks */
}

.comparison-table td:nth-child(3) i {
  color: var(--brand-red); /* red for old school crosses */
}

/* Make responsive 
@media (max-width: 768px) {
  .comparison-table table,
  .comparison-table thead,
  .comparison-table tbody,
  .comparison-table th,
  .comparison-table td,
  .comparison-table tr {
    display: block;
  }

  .comparison-table tr {
    margin-bottom: 1.5rem;
  }

  .comparison-table td {
    border: none;
    padding: 0.5rem 0;
  }

  .comparison-table th {
    display: none;
  }
}*/


    /* -------------------- WHO WE HELP -------------------- */
    .who-we-help {
        display: flex;
      flex-wrap: wrap;
        justify-content: center;
        margin: 0 auto;
      background: #fff;
      padding: 4rem 5%;
    }

    .help-inner {
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
    }

    .who-we-help h2 {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }

    .who-we-help .intro {
      color: #555;
      margin-bottom: 2rem;
    }

    .help-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      justify-content: center;
      margin-bottom: 2rem;
    }

    .tab-btn {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.25rem;
      border: 1px solid #333;
      border-radius: 8px;
      background: #222;
      color: #eee;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .tab-btn svg {
      flex-shrink: 0;
    }

    .tab-btn.active {
      background: var(--brand-red);
      color: #fff;
      border-color: var(--brand-red);
    }

    .tab-btn:hover {
      background: #444;
    }

    .help-content {
      text-align: center;
    }

    .tab-content {
      display: none;
      background: #fafafa;
      border: 1px solid #eee;
      border-radius: 12px;
      padding: 3rem 2rem;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      animation: fadeIn 0.3s ease;
      text-align: center;
    }

    .tab-content.active {
      display: block;
    }

    .tab-content .icon {
      margin-bottom: 1rem;
    }

    .tab-content p {
      max-width: 650px;
      margin: 1rem auto;
      line-height: 1.6;
      font-size: 1.05rem;
      color: #333;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

/* WHY LOVE SECTION */
.why-love {
    max-width:1100px;
    margin:0 auto 0 auto;
  background: #fff;
  padding: 0 0 5% 0;
  text-align: center;
}

.why-love h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-box {
  background: #fafafa;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.why-box:hover {
  transform: translateY(-4px);
}

.why-box i {
  font-size: 2rem;
  color: var(--brand-red);
  margin-bottom: 1rem;
}

.why-box h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.why-box p {
  color: #444;
  line-height: 1.6;
}


    /* --------------- partnership ---------------------*/
    .partnership {
      background: #fafafa;
      padding: 4rem 5%;
      text-align: center;
    }

    .partnership-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .partnership h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .partnership .intro {
      color: #555;
      margin-bottom: 2.5rem;
    }

    .partnership-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
      align-items: start;
    }

    /* Force single column on small screens */
    @media (max-width: 860px) {
      .partnership-grid {
        grid-template-columns: 1fr;
      }
    }

    .partner {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .logo-box {
      height: 60px; /* equal height ensures paragraphs align */
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }

    .logo-box img {
      max-height: 100%;
      max-width: 100%;
      object-fit: contain;
    }

    .partner p {
      margin-top: auto; /* ensures all paragraphs align */
    }

    .certification {
      margin: 2rem 0;
    }

    .certification img {
      max-height: 150px;
      width: auto;
    }

    .closing {
      font-style: italic;
      color: #333;
      margin-top: 1rem;
    }

    .partner .logo-text {
      font-size: 2.8em;   /* larger for emphasis */
      margin: 0em 0 0.2em 0;
    }


    /* -------------------- PRICING -------------------- */
    .pricing {
      background: #fff;
      padding: 4rem 5%;
      text-align: center;
    }

    .pricing-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .pricing h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .pricing p.intro {
      color: #555;
      margin-bottom: 2rem;
    }

    /* PRICING GRID */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .pricing-box {
      background: #fafafa;
      border: 1px solid #eee;
      border-radius: 12px;
      padding: 2.5rem 2rem;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .pricing-box h3 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
      color: #111;
    }

    .pricing-box .price {
      font-size: 2.2rem;
      font-weight: bold;
      margin: 0 0 1.5rem;
      color: var(--brand-red);
    }

    .price .from {
      font-size: 0.8rem;
      font-weight: normal;
      color: #555;
      margin-right: 4px;
    }

    .pricing-box .price span {
      font-size: 1rem;
      font-weight: normal;
      color: #555;
    }

    .pricing-box ul {
      list-style: none;
      padding: 0;
      margin: 0 0 2rem;
      text-align: left;
    }

    .pricing-box ul li {
      margin: 0.75rem 0;
      font-size: 0.95rem;
      color: #333;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .pricing-box ul li i {
      color: #2ecc71; /* green ticks */
      flex-shrink: 0;
    }

    .pricing-box .btn {
      align-self: center;
    }

    /* Highlighted "Most Popular" Plan */
    .pricing-box.popular {
      border: 2px solid var(--brand-red);
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      transform: scale(1.05);
      z-index: 2;
    }

    .pricing-box .badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--brand-red);
      color: #fff;
      padding: 0.35rem 0.75rem;
      border-radius: 6px;
      font-size: 0.85rem;
      font-weight: 600;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    /* PARTNERSHIPS */
.partnerships {
  background: #fff;
  padding: 4rem 5%;
  text-align: center;
}

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

.partnerships h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.partnerships .intro {
  color: #555;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.logo-item img {
  max-height: 60px;
  max-width: 140px;
  filter: grayscale(100%);
  transition: filter 0.2s ease;
}

.logo-item img:hover {
  filter: grayscale(0%);
}


    /* ONE-OFF SERVICES */
    .one-off {
      background: #fafafa;
      padding: 4rem 5%;
      text-align: center;
    }

    .one-off-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .one-off h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .one-off .intro {
      color: #555;
      margin-bottom: 3rem;
      font-size: 1.1rem;
    }

    .one-off-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .one-off-card {
      background: #fff;
      border: 1px solid #eee;
      border-radius: 12px;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .one-off-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    }

    .one-off-card i {
      font-size: 2rem;
      color: var(--brand-red);
      margin-bottom: 1rem;
    }

    .one-off-card h3 {
      margin: 0.5rem 0;
      font-size: 1.25rem;
      color: #111;
    }

    .one-off-card .price {
      font-size: 1.2rem;
      font-weight: bold;
      margin-bottom: 0.75rem;
      color: var(--brand-red);
    }

    .btn-tertiary {
      display: inline-block;
      padding: 0.6rem 1rem;
      background: transparent;
      border: 1px solid var(--brand-red);
      color: var(--brand-red);
      border-radius: 6px;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.2s ease;
      margin-top: 1rem;
      text-decoration: none;
    }

    .btn-tertiary:hover {
      background: var(--brand-red);
      color: #fff;
    }


    /* CTA BANNER */
    .cta-banner {
      background: #9f111b; /* nanoswift red */
      color: #fff;
      text-align: center;
      padding: 4rem 2rem;
    }

    .cta-banner h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .cta-banner p {
      font-size: 1.2rem;
      opacity: 0.9;
    }


    /* CONTACT SECTION */
    .contact {
      background: #fafafa;
      padding: 4rem 5%;
    }


    .contact-columns {
      display: grid;
      grid-template-columns: 4fr 1fr; /* wider left column */
      gap: 3rem;
    }

    /* Right Column */
    .contact-right {
      display: flex;
      flex-direction: column;
      align-items: center;   /* center all content horizontally */
      text-align: center;    /* center text as well */
      gap: 2rem;
    }

    .contact-info p,
    .contact-hours p {
      justify-content: center; /* center icons + text */
    }


    .contact-form {
      background: #fff;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      display: flex;
      flex-direction: column;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
      padding: 0.9rem 1rem;
      border-radius: 6px;
      border: 1px solid #ddd;
      font-size: 1rem;
      margin-bottom: 1rem;
      width: 95%;
    }

    .contact-form textarea {
      min-height: 120px;
      resize: vertical;
    }

    .contact-form button {
      align-self: flex-start;
      border:0;
    }

    /* CONTACT SECTION */
    .contact-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .contact-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .contact-header h2 {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }

    .contact-header p {
      color: #444;
      line-height: 1.6;
    }

    .contact-hours {margin-top:-1em}

    .contact-badge img {
        max-width: 180px;
    }
    .contact-info p,
    .contact-hours p {
      margin: 0.4rem 0;
      color: #333;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    /* Social links (if kept) */
    .contact-social a {
      font-size: 1.5rem;
      margin-right: 1rem;
      color: var(--brand-red);
      transition: color 0.2s ease;
    }

    .contact-social a:hover {
      color: #111;
    }

    /* Mobile */
    @media (max-width: 900px) {
      .contact-columns {
        grid-template-columns: 1fr;
      }

      .contact-header {
        text-align: left;
      }
    }



   /* --- FOOTER --- */
    footer {
      background: #111;
      color: #ddd;
      text-align: center;
      padding: 2rem 5%;
      margin-top: 3rem;
      font-size: 0.9rem;
    }

    footer a {
      color: #fff;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

   /* Footer override */
    footer .logo-text {
      color: #eee; /* matches footer text */
    }


    /* --- RESPONSIVE --- */
    @media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .hero-text {
        align-items: center;
      }
      .btn {
        margin: 0 auto;
      }
    }

    @media (max-width: 768px) {
      .hero-text h1 {
        font-size: 2rem;
      }
      .about {
        flex-direction: column;
      }
    }

    /* success box for form submission */
    .success-section {
      background: #fafafa;
      min-height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 3rem 2rem;
      text-align: center;
    }

    .success-box {
      background: #fff;
      padding: 3rem 2rem;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      max-width: 600px;
      margin: 0 auto;
    }

    .success-icon {
      font-size: 3rem;
      color: #9f111b; /* nanoswift red */
      margin-bottom: 1rem;
    }

    .success-box h1 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .success-box p {
      font-size: 1.1rem;
      margin-bottom: 2rem;
      color: #444;
    }

    .back-button {
      display: inline-block;
      padding: 0.75rem 2rem;
      background: #9f111b;
      color: #fff;
      border-radius: 6px;
      font-weight: bold;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .back-button:hover {
      background: #7d0d15;
    }


/* NEWSLETTER LANDING PAGE */
.newsletter-page {
  font-family: Helvetica, Arial, sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.6;
}

/* Hero */
.newsletter-hero {
  background: var(--brand-red);
  color: #fff;
  padding: 6rem 5%;
  text-align: center;
}

.newsletter-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.newsletter-hero .sub {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Signup Form */
.signup-form {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  flex-wrap: nowrap;
  max-width: 500px;
  margin: 0 auto;
}

.signup-form input {
  padding: 0.9rem 1rem;
  border-radius: 6px 0 0 6px;
  border: 1px solid #ddd;
  min-width: 260px;
  font-size: 1rem;
  flex: 1;
}

.signup-form button {
  padding: 0.9rem 1.4rem;
  border-radius: 0 6px 6px 0;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.signup-form button i {
  color: #fff; /* matches text colour */
  display:block;
}

/* Mobile fallback */
@media (max-width: 600px) {
  .signup-form {
    flex-wrap: wrap;
  }

  .signup-form input,
  .signup-form button {
    border-radius: 6px;
    flex: 1 1 100%;
  }

  .signup-form button {
    margin-top: 0.5rem;
  }
}


/* Newsletter Benefits */
.newsletter-benefits {
  padding: 4rem 5%;
  background: #fafafa;
  text-align: center;
}

.newsletter-benefits h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.newsletter-benefits .intro {
  color: #444;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.benefit-card i {
  font-size: 2rem;
  color: var(--brand-red);
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #111;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Preview */
.newsletter-preview {
  padding: 4rem 5%;
  text-align: center;
}

.preview-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-align: left;
}

/* Trust */
.newsletter-trust {
  background: #fbe9eb;
  padding: 2rem 5%;
  text-align: center;
  font-weight: 600;
}

/* Final CTA */
.newsletter-cta {
  padding: 4rem 5%;
  text-align: center;
}

.newsletter-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.newsletter-cta p {
  margin-bottom: 2rem;
  color: #444;
}
