/* ==========================================================================
   BRANDAGE - MODERN CLOTHING PRINTING SERVICE
   Design System:
   - Primary Dark: #222a3b
   - Accent Blue:  #5d9add
   - Near Black:   #121212
   - Light BG:     #edf1f2
   - Fonts:        Manrope (Headings), Gabarito (Body)
   ========================================================================== */

:root {
  --color-primary: #222a3b;
  --color-primary-rgb: 34, 42, 59;
  --color-primary-light: #2d374d;
  --color-primary-dark: #19202e;
  
  --color-accent: #5d9add;
  --color-accent-rgb: 93, 154, 221;
  --color-accent-hover: #4a87cb;
  --color-accent-light: #eaf2fb;
  
  --color-near-black: #121212;
  --color-near-black-rgb: 18, 18, 18;
  
  --color-bg-light: #edf1f2;
  --color-white: #ffffff;
  --color-card-bg: #ffffff;
  
  --color-muted: #5a6679;
  --color-border: #dbe2e6;
  --color-border-light: rgba(255, 255, 255, 0.15);

  --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Gabarito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(18, 18, 18, 0.04);
  --shadow-md: 0 8px 24px rgba(18, 18, 18, 0.08);
  --shadow-lg: 0 16px 40px rgba(18, 18, 18, 0.12);
  --shadow-accent: 0 10px 28px rgba(93, 154, 221, 0.35);

  --header-height: 76px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg-light);
  color: var(--color-near-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-near-black);
  background-color: var(--color-bg-light);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input, textarea, select {
  font: inherit;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.3rem, 5vw + 1rem, 3.85rem); }
h2 { font-size: clamp(1.85rem, 3.5vw + 0.5rem, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2vw + 0.2rem, 1.65rem); }
h4 { font-size: 1.2rem; }

p {
  font-size: 1.075rem;
  line-height: 1.65;
  color: #3b4657;
}

.text-lead {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 500;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.section-dark {
  background-color: var(--color-primary);
  color: var(--color-bg-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-white);
}

.section-dark p {
  color: #c4d0de;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-accent-light);
  color: var(--color-accent-hover);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.section-dark .section-tag {
  background-color: rgba(93, 154, 221, 0.2);
  color: var(--color-accent);
}

.section-subtitle {
  margin-top: 14px;
  font-size: 1.15rem;
}

/* Buttons and CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(93, 154, 221, 0.45);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-secondary-light {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-secondary-light:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-sm {
  font-size: 0.925rem;
  padding: 9px 20px;
}

.btn-lg {
  font-size: 1.15rem;
  padding: 17px 36px;
}

.btn-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2.3;
}

/* ==========================================================================
   STICKY HEADER & NAV
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(237, 241, 242, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(34, 42, 59, 0.08);
  transition: var(--transition);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 20px rgba(18, 18, 18, 0.06);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background-color: var(--color-accent);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: var(--color-accent-hover);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-cta-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  z-index: 1100;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 88px 32px 40px 32px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1050;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(18, 18, 18, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  display: block;
}

.mobile-nav-link:hover {
  color: var(--color-accent);
}

.mobile-drawer-footer {
  border-top: 1px solid var(--color-border-light);
  padding-top: 24px;
}

.mobile-drawer-contact {
  font-size: 0.95rem;
  color: #b0c0d4;
  margin-bottom: 20px;
}

.mobile-drawer-contact a {
  color: var(--color-accent);
  font-weight: 700;
}

@media (max-width: 960px) {
  .nav-desktop {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding-top: 60px;
  padding-bottom: 80px;
  overflow: hidden;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-headline {
  margin-bottom: 20px;
  color: var(--color-primary);
}

.hero-headline .highlight {
  color: var(--color-accent);
  position: relative;
  display: inline-block;
}

.hero-lead {
  font-size: 1.225rem;
  line-height: 1.65;
  color: #3b475a;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  width: 100%;
}

.hero-trust-bar {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  width: 100%;
}

.hero-trust-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.hero-trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
}

.trust-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

/* Hero Media Column */
.hero-media {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--color-white);
  background-color: var(--color-primary);
}

.hero-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.6s ease;
}

.hero-image-card:hover .hero-main-img {
  transform: scale(1.025);
}

.hero-floating-badge {
  position: absolute;
  background-color: rgba(34, 42, 59, 0.92);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: float 4s ease-in-out infinite alternate;
}

.hero-floating-badge.badge-top {
  top: 24px;
  right: -16px;
}

.hero-floating-badge.badge-bottom {
  bottom: 24px;
  left: -16px;
  animation-delay: -2s;
}

.badge-icon-box {
  width: 38px;
  height: 38px;
  background-color: var(--color-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
}

.badge-text-primary {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
}

.badge-text-sub {
  font-size: 0.8rem;
  color: #b2c5dc;
}

@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-main-img {
    height: 380px;
  }
  .hero-floating-badge.badge-top {
    right: 12px;
  }
  .hero-floating-badge.badge-bottom {
    left: 12px;
  }
}

/* ==========================================================================
   SERVICES / WHAT WE PRINT
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.service-card {
  background-color: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.service-card:hover::before {
  background-color: var(--color-accent);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background-color: var(--color-bg-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 22px;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.service-title {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.service-desc {
  font-size: 1rem;
  color: #4b586d;
  margin-bottom: 20px;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--color-border);
}

.service-pill {
  background-color: var(--color-bg-light);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

/* Service Banner Box (Design Assistance) */
.design-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, #2f3b52 100%);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  color: var(--color-white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.design-banner h3 {
  color: var(--color-white);
  margin-bottom: 8px;
}

.design-banner p {
  color: #d1dce9;
  font-size: 1.05rem;
  max-width: 680px;
}

@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .design-banner {
    grid-template-columns: 1fr;
    padding: 32px;
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   HOW IT WORKS (4 STEPS)
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-bottom: 48px;
}

.step-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(93, 154, 221, 0.25);
  line-height: 1;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-accent-light);
  color: var(--color-accent-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.975rem;
  color: #4b586d;
}

.steps-cta-strip {
  text-align: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.steps-cta-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
}

@media (max-width: 960px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-cta-strip {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 580px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   REAL EXAMPLES / GALLERY ("LOOKING GOOD IN THE WILD")
   ========================================================================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.filter-btn {
  background-color: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.gallery-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.gallery-media {
  position: relative;
  height: 250px;
  overflow: hidden;
  background-color: var(--color-primary);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: rgba(34, 42, 59, 0.88);
  backdrop-filter: blur(6px);
  color: var(--color-white);
  font-size: 0.775rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.gallery-info {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gallery-client {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.gallery-garment {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.gallery-desc {
  font-size: 0.95rem;
  color: #4b586d;
  line-height: 1.5;
  margin-bottom: 16px;
}

.gallery-print-highlight {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
  font-size: 0.825rem;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.gallery-print-highlight svg {
  width: 14px;
  height: 14px;
  color: var(--color-accent);
}

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

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

/* ==========================================================================
   WHY BRANDAGE (BENEFITS)
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.why-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: var(--color-accent);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: rgba(93, 154, 221, 0.2);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.why-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--color-white);
}

.why-desc {
  color: #c0cede;
  font-size: 1rem;
  line-height: 1.6;
}

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

@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   INTERACTIVE QUOTE ASSISTANT / BUILDER
   ========================================================================== */
.quote-helper-box {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  max-width: 960px;
  margin: 0 auto;
}

.quote-helper-header {
  text-align: center;
  margin-bottom: 36px;
}

.quote-helper-header h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.helper-steps-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.helper-group-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.helper-group-label .step-badge {
  background-color: var(--color-accent);
  color: var(--color-white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.helper-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.helper-btn {
  background-color: var(--color-bg-light);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary);
  transition: var(--transition);
}

.helper-btn:hover {
  background-color: #e0e7ec;
}

.helper-btn.selected {
  background-color: var(--color-accent-light);
  border-color: var(--color-accent);
  color: var(--color-accent-hover);
  font-weight: 700;
}

.helper-input-wrap {
  margin-top: 12px;
}

.helper-textarea {
  width: 100%;
  min-height: 80px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-light);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-near-black);
  outline: none;
  resize: vertical;
  transition: var(--transition);
}

.helper-textarea:focus {
  border-color: var(--color-accent);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(93, 154, 221, 0.2);
}

.helper-output-box {
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--color-border);
  margin-top: 12px;
}

.helper-preview-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.helper-preview-text {
  font-family: monospace;
  font-size: 0.95rem;
  white-space: pre-wrap;
  color: var(--color-primary);
  line-height: 1.5;
  background-color: var(--color-white);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  margin-bottom: 18px;
}

.helper-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

@media (max-width: 768px) {
  .quote-helper-box {
    padding: 28px 20px;
  }
}

/* ==========================================================================
   FAQS ACCORDION
   ========================================================================== */
.faqs-wrap {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--color-accent);
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  text-align: left;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
}

.faq-icon {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 26px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  color: #424e60;
  font-size: 1.025rem;
  line-height: 1.6;
}

/* ==========================================================================
   FINAL CONTACT & CTA SECTION
   ========================================================================== */
.final-cta-card {
  background: linear-gradient(145deg, #19202e 0%, #222a3b 60%, #2c384e 100%);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.final-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(93, 154, 221, 0.18) 0%, rgba(93, 154, 221, 0) 70%);
  pointer-events: none;
}

.final-cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--color-white);
  margin-bottom: 16px;
}

.final-cta-subtitle {
  font-size: 1.25rem;
  color: #cfddec;
  max-width: 680px;
  margin: 0 auto 36px auto;
}

.email-display-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px dashed rgba(93, 154, 221, 0.6);
  padding: 16px 32px;
  border-radius: var(--radius-full);
  margin-bottom: 36px;
  transition: var(--transition);
}

.email-display-box:hover {
  background-color: rgba(255, 255, 255, 0.16);
  border-color: var(--color-accent);
}

.email-address {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.01em;
}

.email-copy-btn {
  background-color: var(--color-accent);
  color: var(--color-white);
  border: none;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.email-copy-btn:hover {
  background-color: var(--color-accent-hover);
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.final-cta-reassurance {
  font-size: 0.95rem;
  color: #9cb1ca;
  font-weight: 500;
}

@media (max-width: 768px) {
  .final-cta-card {
    padding: 48px 24px;
  }
  .email-display-box {
    padding: 12px 20px;
    flex-direction: column;
    gap: 8px;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--color-near-black);
  color: #8897a8;
  padding: 48px 0 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

.footer-email-link {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 1.05rem;
}

.footer-email-link:hover {
  color: var(--color-white);
  text-decoration: underline;
}

.footer-copyright {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2000;
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
