@import url('https://fonts.googleapis.com/css2?family=Aleo:wght@400;700&family=Lato:wght@700&family=Nunito:wght@400;600;700&display=swap');

/* ===========================
   CSS VARIABLES / DESIGN SYSTEM
=========================== */
:root {
  --teal:        #21BABF;
  --green:       #32AC57;
  --orange:      #F25A31;
  --navy:        #172E45;
  --purple:      #614B84;
  --lavender:    #F6F1FF;
  --grey:        #54595F;
  --lightblue:   #00B0E8;
  --border-grey: #C9C9C9;
  --white:       #FFFFFF;
  --black:       #000000;

  --font-body:   'Nunito', sans-serif;
  --font-heading:'Aleo', serif;
  --font-label:  'Lato', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--grey);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.2;
}

.section-label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 0.5rem;
}

/* ===========================
   LAYOUT UTILITIES
=========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad { padding: 5rem 0; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50rem; /* pill */
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.btn-black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-black:hover { background: #333; border-color: #333; }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover { background: #1aa6ab; border-color: #1aa6ab; }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover { background: #d94e28; border-color: #d94e28; }

/* View Website Styles button — special border-radius */
.btn-view-styles {
  border-radius: 29px;
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
  font-weight: 700;
  padding: 0.75rem 2rem;
  display: inline-block;
  transition: all 0.2s ease;
}
.btn-view-styles:hover { background: var(--navy); color: var(--white); }

/* ===========================
   NAVIGATION
=========================== */
.navbar {
  background: var(--white);
  border-bottom: 1px solid #EEEEEE;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 65px;
  display: flex;
  align-items: center;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar-logo img { height: 40px; width: auto; }
.navbar-logo-text {
  font-family: var(--font-label);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
}

.navbar-links a {
  font-family: var(--font-label);
  font-weight: 700;
  color: var(--green);
  transition: color 0.2s;
  text-decoration: none;
}
.navbar-links a:hover { color: var(--navy); }

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-cart {
  font-size: 1.25rem;
  color: var(--orange);
  transition: color 0.2s;
}
.navbar-cart:hover { color: var(--navy); }

/* Hamburger */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
}

/* ===========================
   HERO
=========================== */
/* old hero CSS removed — see new hero CSS below */

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  border-radius: 30px;
  padding: 12px 28px;
}
.btn-navy:hover { background: #1e3a56; border-color: #1e3a56; }

/* ===========================
   SERVICES SECTION
=========================== */
.services-section {
  background: var(--white);
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.services-left h2 {
  font-family: var(--font-heading);
  color: var(--green);
  margin-bottom: 1rem;
}

.services-left p {
  color: var(--grey);
  font-family: var(--font-body);
  margin-bottom: 1.5rem;
}

.services-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s;
}
.service-card:hover { transform: translateY(-4px); }

.service-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
}
.service-card-icon img { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--green);
}

.service-card p { font-size: 0.85rem; color: var(--grey); }

/* ===========================
   WHY CHOOSE US
=========================== */
.why-section {
  background: var(--white);
  padding: 80px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.why-section h2 {
  font-family: var(--font-heading);
  color: var(--green);
  margin-bottom: 1.5rem;
}

.why-section p {
  color: var(--grey);
  font-family: var(--font-body);
  margin-bottom: 1rem;
}

/* ===========================
   STATS SECTION
=========================== */
.stats-section {
  background: #F9F9F9;
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {}

.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
}
.stat-icon img { width: 100%; height: 100%; }

.stat-label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 0.25rem;
}

.stat-desc { font-size: 14px; color: var(--grey); font-family: var(--font-body); }

/* ===========================
   HOW IT WORKS
=========================== */
/* old how-section CSS removed — see new hiw-section below */

/* ===========================
   PRICING SECTION
=========================== */
.pricing-section {
  background: var(--teal);
  padding: 80px 0;
  text-align: center;
}

.pricing-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 2.5rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pricing-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  position: relative;
  transition: transform 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.pricing-card:hover { transform: translateY(-4px); }

.plan-level {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 0.5rem;
}

.plan-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  display: block;
  margin-bottom: 1rem;
}

.plan-price {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.plan-price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--grey);
}

.plan-features {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
}

.plan-features li {
  color: var(--grey);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plan-features li .fa-check { color: var(--green); }
.plan-features li .fa-times { color: var(--orange); }

.plan-view-more {
  display: block;
  color: var(--green);
  font-weight: 700;
  font-family: var(--font-body);
  margin-bottom: 1rem;
}

.plan-select-btn {
  width: 100%;
  text-align: center;
  padding: 0.875rem;
  border-radius: 30px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: background 0.2s;
  display: block;
}
.plan-select-btn:hover { background: #d94e28; }

.pricing-note {
  color: var(--white);
  font-size: 0.85rem;
  margin-top: 1.5rem;
}

/* ===========================
   ADD-ONS
=========================== */
.addons-section {
  background: var(--teal);
  padding: 0 0 80px;
  text-align: center;
}

.addons-section h2 {
  font-family: var(--font-heading);
  color: var(--white);
  margin-bottom: 2rem;
}

.addons-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.addon-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.addon-card .addon-name {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 0.5rem;
}

.addon-card .addon-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
}

.addon-card .addon-price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--grey);
}

/* ===========================
   STYLE CAROUSEL
=========================== */
.gallery-section {
  padding: 80px 0;
  background: var(--navy);
  text-align: center;
}

.gallery-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 2rem;
}

.swiper-slide {
  text-align: center;
}

.swiper-slide img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.swiper-slide .slide-label {
  font-family: var(--font-label);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.25rem;
}

.swiper-slide .slide-tagline {
  font-family: var(--font-body);
  color: var(--white);
  font-size: 14px;
  margin-bottom: 0.75rem;
}

.swiper-slide .btn-slide-demo {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
}
.swiper-slide .btn-slide-demo:hover { background: #d94e28; }

.styles-swiper .swiper-button-next,
.styles-swiper .swiper-button-prev { color: var(--white); }

.styles-swiper .swiper-button-next::after,
.styles-swiper .swiper-button-prev::after { font-size: 1.25rem; }

/* ===========================
   FAQ / QUESTIONS
=========================== */
.faq-section { padding: 5rem 0; background: var(--lavender); }

.faq-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  text-align: center;
  margin-bottom: 3rem;
}

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
}

.faq-question i { color: var(--teal); transition: transform 0.3s; }
.faq-question.open i { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--grey);
  font-size: 0.95rem;
}
.faq-answer.open { display: block; }

/* ===========================
   BLOG PREVIEW
=========================== */
.blog-section { padding: 5rem 0; background: var(--white); }

.blog-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  text-align: center;
  margin-bottom: 3rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.blog-card:hover { transform: translateY(-4px); }

.blog-card-image {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  height: 200px;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body { padding: 1.5rem; }

.blog-card-body h3 {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--green);
}

.blog-card-body p { font-size: 0.875rem; color: var(--grey); margin-bottom: 1rem; }

.blog-read-more {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green);
}
.blog-read-more:hover { color: var(--navy); }

/* ===========================
   FOOTER
=========================== */
footer {
  background: var(--black);
  padding: 2.5rem 0;
  color: var(--white);
  text-align: center;
}

.footer-logo {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ===========================
   CONTACT FORM
=========================== */
.contact-section { padding: 80px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form .form-group { margin-bottom: 1.25rem; }

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--navy);
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-grey);
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--grey);
  transition: border-color 0.2s;
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
}

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

/* Flash messages */
.flash { padding: 0.875rem 1rem; border-radius: 0.5rem; margin-bottom: 1rem; font-weight: 600; }
.flash-success { background: #d4edda; color: #155724; }
.flash-error   { background: #f8d7da; color: #721c24; }

/* ===========================
   BLOG PAGE
=========================== */
.blog-hero {
  background: linear-gradient(rgba(33,186,191,0.6), rgba(33,186,191,0.6)), url('/static/images/people-at-desk.png') center/cover no-repeat;
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
}
.blog-hero h1 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 48px;
}

/* ===========================
   QUESTIONS PAGE
=========================== */
.questions-hero {
  background: var(--navy);
  padding: 4rem 0;
  text-align: center;
  color: var(--white);
}
.questions-hero h1 { color: var(--white); }

/* ===========================
   SUCCESS / CANCEL PAGES
=========================== */
.result-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.result-icon { font-size: 4rem; margin-bottom: 1.5rem; }
.result-page h1 { margin-bottom: 1rem; }
.result-page p { color: var(--grey); margin-bottom: 2rem; }

/* ===========================
   404 PAGE
=========================== */
.not-found {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.not-found h1 { font-size: 6rem; color: var(--teal); margin-bottom: 0; }
.not-found h2 { margin-bottom: 1rem; }

/* ===========================
   MOBILE RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  /* old hero-grid responsive removed */
  .services-grid { grid-template-columns: 1fr; }
  .services-cards { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards { grid-template-columns: repeat(2, 1fr); }
  .addons-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar-links { display: none; flex-direction: column; gap: 0; }
  .navbar-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-grey);
    z-index: 999;
  }
  .navbar-links.open a { padding: 0.5rem 0; border-bottom: 1px solid var(--border-grey); }
  .navbar-toggle { display: block; }
  .navbar { position: relative; }

  .hero { padding: 40px 0; min-height: auto; }
  .hero h1 { font-size: 30px; }

  .services-cards { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .how-grid { grid-template-columns: 1fr; }

  .pricing-cards { grid-template-columns: 1fr; }
  .addons-cards { grid-template-columns: 1fr; }

  .blog-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  .footer-links { flex-direction: column; gap: 0.5rem; }
}

/* Choose This Style button */
.swiper-slide .btn-slide-choose {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  margin-top: 6px;
  text-decoration: none;
}
.swiper-slide .btn-slide-choose:hover { background: #1a3a5c; }

/* ===========================
   NAV CTA BUTTON
=========================== */
.nav-cta {
  background: #21BABF;
  color: #fff !important;
  border-radius: 50px;
  padding: 10px 24px;
  font-family: Lato, sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

.navbar-logo-icon {
  font-size: 1.3rem;
  color: #21BABF;
  margin-right: 4px;
}


/* ===========================
   HERO RESTRUCTURE (Phase 3)
=========================== */
.hero {
  background: linear-gradient(135deg, #21BABF 0%, #1A9EA3 100%);
  min-height: 500px;
  padding: 80px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 40px;
  align-items: center;
}

.hero-left h1 {
  font-family: Aleo, serif;
  font-weight: 700;
  color: #fff;
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-family: Nunito, sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 1.1rem;
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-hero-orange {
  background: #F25A31;
  color: #fff;
  border-radius: 50px;
  padding: 14px 32px;
  font-family: Lato, sans-serif;
  font-weight: 700;
  border: none;
  text-decoration: none;
  transition: opacity 0.2s;
  font-size: 1rem;
}
.btn-hero-orange:hover { opacity: 0.85; }

.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 14px 32px;
  font-family: Lato, sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 1rem;
}
.btn-hero-outline:hover { background: #fff; color: #172E45; }

.hero-right {
  text-align: center;
}

.hero-carousel-caption {
  color: #fff;
  font-family: Nunito, sans-serif;
  font-style: italic;
  text-align: center;
  margin-top: 12px;
  font-size: 0.9rem;
}

/* ===========================
   TRUST STRIP (Phase 4)
=========================== */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid #EEEEEE;
  padding: 16px 0;
}

.trust-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Nunito, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #172E45;
  white-space: nowrap;
}

.trust-item i {
  color: #21BABF;
}

/* ===========================
   SERVICES 6-CARD GRID (Phase 5)
=========================== */
.services-6grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.s6-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 2rem;
  text-align: left;
}

.s6-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #EEF0FB;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.s6-icon i {
  color: #614B84;
  font-size: 1.4rem;
}

.s6-card h3 {
  font-family: Aleo, serif;
  font-weight: 700;
  color: #32AC57;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.s6-card p {
  font-family: Nunito, sans-serif;
  font-weight: 400;
  color: #54595F;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===========================
   TEMPLATE SHOWCASE (Phase 6)
=========================== */
.template-showcase {
  background: #172E45;
  padding: 80px 20px;
}

.template-slide {
  text-align: center;
}

.template-slide-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.template-slide-img-wrap img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.template-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(23,46,69,0.7));
  padding: 2rem 1rem 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.template-slide-img-wrap:hover .template-slide-overlay {
  opacity: 1;
}

.template-slide-name {
  display: block;
  font-family: Aleo, serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.template-slide-tagline {
  display: block;
  font-family: Nunito, sans-serif;
  color: #AACCDD;
  font-size: 0.85rem;
}

.btn-template-demo {
  display: inline-block;
  background: #F25A31;
  color: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-template-demo:hover { opacity: 0.85; }

.template-swiper .swiper-button-next,
.template-swiper .swiper-button-prev { color: #fff; }

/* ===========================
   HOW IT WORKS (Phase 6)
=========================== */
.hiw-section {
  background: #172E45;
  padding: 80px 20px;
}

.hiw-cards {
  display: flex;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.hiw-card {
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 2rem;
  flex: 1;
}

.hiw-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #21BABF;
  color: #fff;
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hiw-card h3 {
  font-family: Aleo, serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
  margin: 1rem 0 0.5rem;
}

.hiw-card p {
  font-family: Nunito, sans-serif;
  font-weight: 400;
  color: #AACCDD;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===========================
   MOBILE OVERRIDES (Phases 3-6)
=========================== */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-left h1 { font-size: 2rem; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-hero-orange, .btn-hero-outline {
    text-align: center;
    width: 100%;
    display: block;
  }

  .trust-strip-inner {
    gap: 16px;
    justify-content: center;
  }

  .services-6grid {
    grid-template-columns: 1fr;
  }

  .hiw-cards {
    flex-direction: column;
  }
}

@media (min-width: 600px) and (max-width: 900px) {
  .services-6grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===========================
   PRICING UPDATES (Phase 7)
=========================== */
.popular-badge {
  background: #F25A31;
  color: #fff;
  border-radius: 50px;
  font-size: 0.7rem;
  padding: 4px 12px;
  font-family: Lato, sans-serif;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 8px;
}

.pricing-card-popular {
  border: 2px solid #F25A31;
  transform: scale(1.02);
}

.plan-desc {
  font-family: Nunito, sans-serif;
  font-size: 0.85rem;
  color: #54595F;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* ===========================
   ADD-ONS UPDATE (Phase 8)
=========================== */
.addon-card-major {
  text-align: left;
}

.addon-title {
  font-family: Nunito, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #172E45;
  margin-bottom: 0.5rem;
}

.addon-desc {
  font-family: Nunito, sans-serif;
  font-size: 0.85rem;
  color: #54595F;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.addon-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.addon-checklist li {
  font-family: Nunito, sans-serif;
  font-size: 0.85rem;
  color: #54595F;
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.addon-checklist li i {
  color: #32AC57;
  font-size: 0.8rem;
}

.addon-card-secondary {
  text-align: left;
  padding: 1.5rem;
}

.addons-secondary {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .addons-secondary {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .addons-secondary {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   TEMPLATE GALLERY (Phase 11)
=========================== */
.template-gallery-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.template-gallery-card:hover { transform: translateY(-4px); }

@media (max-width: 900px) {
  .template-gallery-card { }
}
