/* ==========================================================================
   Blinds by Paulson's — Concept 1 (The Appointment)
   Consultative booking & showroom on Pure White luxury canvas
   ========================================================================== */

:root {
  /* 2c Brand Colors */
  --c2c-dark: #1A1A1A;
  --c2c-text: #1A1A1A;
  --c2c-muted: #5A5A5A;
  --c2c-light-muted: #8A8A85;
  --c2c-bg: #FFFFFF;
  --c2c-bg-alt: #FAFAF9;
  --c2c-bg-subtle: #F6F5F2;
  --c2c-border: #E6E4E0;
  
  /* 2c Accent Highlights */
  --c2c-red: #EA171F;
  --c2c-green: #88BE46;
  --c2c-orchid: #B02490;
  --c2c-teal: #05979A;
  --c2c-orange: #F46B27;
  --c2c-sky: #01ADEC;
  --c2c-emerald: #029C4E;
  --c2c-purple: #5C2D8F;
  
  /* Fonts */
  --font-2c-display: 'Playfair Display', Georgia, serif;
  --font-2c-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-2c-mono: ui-monospace, Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-2c-sans);
  background-color: #FFFFFF;
  color: var(--c2c-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

a:hover {
  opacity: 0.8;
}

/* 8-Color Stripe */
.c2c-stripe {
  display: flex;
  height: 6px;
  width: 100%;
}
.c2c-stripe:first-of-type {
  position: sticky;
  top: 0;
  z-index: 1000;
}
.c2c-stripe span:nth-child(1) { flex: 1; background: var(--c2c-red); }
.c2c-stripe span:nth-child(2) { flex: 1; background: var(--c2c-green); }
.c2c-stripe span:nth-child(3) { flex: 1; background: var(--c2c-orchid); }
.c2c-stripe span:nth-child(4) { flex: 1; background: var(--c2c-teal); }
.c2c-stripe span:nth-child(5) { flex: 1; background: var(--c2c-orange); }
.c2c-stripe span:nth-child(6) { flex: 1; background: var(--c2c-sky); }
.c2c-stripe span:nth-child(7) { flex: 1; background: var(--c2c-emerald); }
.c2c-stripe span:nth-child(8) { flex: 1; background: var(--c2c-purple); }

/* Variant Switcher Top Bar */
.variant-banner {
  background: #0F172A;
  color: #E2E8F0;
  font-size: 0.8rem;
  padding: 8px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-2c-sans);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.variant-pill-bar {
  display: flex;
  gap: 8px;
}

.variant-pill {
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
}
.variant-pill.active { background: #05979A; color: #FFF; }
.variant-pill:not(.active) { background: rgba(255,255,255,0.15); color: #E2E8F0; }

/* Header / Nav */
.c2c-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 16px 52px;
  border-bottom: 1px solid var(--c2c-border);
  background: #FFFFFF;
  position: sticky;
  top: 6px;
  z-index: 999;
}

.c2c-header-left {
  display: flex;
  align-items: center;
}

.c2c-logo-link img {
  height: 56px;
  width: auto;
  display: block;
}

.c2c-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c2c-dark);
}

.c2c-nav-item {
  position: relative;
}

.c2c-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  color: #111827;
  text-decoration: none;
  transition: color 0.15s ease;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.c2c-nav-link:hover,
.c2c-nav-link:focus,
.c2c-has-dropdown:hover > .c2c-nav-link,
.c2c-has-dropdown.is-open > .c2c-nav-link {
  color: #243875;
  opacity: 1;
}

.c2c-caret {
  transition: transform 0.2s ease;
}

.c2c-has-dropdown:hover > .c2c-nav-link .c2c-caret,
.c2c-has-dropdown.is-open > .c2c-nav-link .c2c-caret {
  transform: rotate(180deg);
}

/* Simple Dropdown Menu */
.c2c-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 240px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  padding: 6px 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

/* Hit-area bridge between parent trigger and dropdown menu */
.c2c-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.c2c-has-dropdown:hover > .c2c-dropdown-menu,
.c2c-has-dropdown:focus-within > .c2c-dropdown-menu,
.c2c-has-dropdown.is-open > .c2c-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.c2c-dropdown-item {
  display: block;
  padding: 11px 18px;
  font-size: 14.5px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: #111827;
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
}

.c2c-dropdown-item:hover,
.c2c-dropdown-item:focus {
  background: #F8F9FA;
  color: #243875;
  opacity: 1;
}

.c2c-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.c2c-phone {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--c2c-dark);
  text-decoration: none;
}

.c2c-phone:hover {
  color: #243875;
}

.c2c-book-btn {
  padding: 13px 22px;
  background: #243875;
  color: #FFF;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.c2c-book-btn:hover {
  background: #1B2B5C;
  transform: translateY(-1px);
  opacity: 1;
}

.c2c-mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.c2c-mobile-cta-wrap {
  display: none;
}

@media (max-width: 900px) {
  .c2c-header {
    padding: 16px 24px;
  }
  .c2c-header-actions {
    display: none;
  }
  .c2c-mobile-toggle {
    display: block;
  }
  .c2c-hamburger-icon {
    display: block;
    width: 22px;
    height: 2px;
    background: #111827;
    position: relative;
    transition: background 0.2s ease;
  }
  .c2c-hamburger-icon::before,
  .c2c-hamburger-icon::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: #111827;
    transition: transform 0.2s ease;
  }
  .c2c-hamburger-icon::before { top: -6px; left: 0; }
  .c2c-hamburger-icon::after { top: 6px; left: 0; }

  .c2c-mobile-toggle.is-active .c2c-hamburger-icon {
    background: transparent;
  }
  .c2c-mobile-toggle.is-active .c2c-hamburger-icon::before {
    transform: translateY(6px) rotate(45deg);
  }
  .c2c-mobile-toggle.is-active .c2c-hamburger-icon::after {
    transform: translateY(-6px) rotate(-45deg);
  }

  .c2c-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    border-bottom: 2px solid var(--c2c-border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 24px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  }

  .c2c-nav.is-open {
    display: flex;
  }

  .c2c-nav-item {
    border-bottom: 1px solid #F1F3F5;
  }

  .c2c-nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 14px 4px;
    font-size: 14px;
  }

  .c2c-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: #F8F9FA;
    border-radius: 4px;
    margin: 0 0 8px 0;
    padding: 4px 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .c2c-has-dropdown.is-open .c2c-dropdown-menu {
    display: block;
  }

  .c2c-dropdown-item {
    padding: 10px 16px;
    font-size: 13.5px;
  }

  .c2c-mobile-cta-wrap {
    display: block;
    margin-top: 18px;
  }

  .c2c-mobile-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #243875;
    color: #FFF;
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
  }
}

/* Hero Section */
.c2c-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  background: #FFFFFF;
}

.c2c-hero-left {
  padding: 78px 56px 78px 52px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  justify-content: center;
}

.c2c-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.c2c-kicker-bar {
  width: 22px;
  height: 2px;
}

.c2c-hero-title {
  font-family: var(--font-2c-display);
  font-size: 60px;
  line-height: 1.06;
  font-weight: 400;
  color: var(--c2c-dark);
  letter-spacing: -0.01em;
}

.c2c-hero-desc {
  max-width: 480px;
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--c2c-muted);
}

.c2c-hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 4px;
}

.c2c-btn-dark {
  padding: 17px 28px;
  background: #243875;
  color: #FFF;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 6px;
  display: inline-block;
  transition: background 0.18s ease, transform 0.18s ease;
}

.c2c-btn-dark:hover {
  background: #1B2B5C;
  transform: translateY(-1px);
}

.c2c-btn-outline {
  padding: 17px 26px;
  border: 1px solid #7E6A4F;
  color: var(--c2c-dark);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 6px;
  display: inline-block;
  transition: background 0.18s ease, color 0.18s ease;
}

.c2c-btn-outline:hover {
  background: #F8F9FA;
  color: #243875;
}

.c2c-stats-row {
  display: flex;
  gap: 26px;
  padding-top: 22px;
  margin-top: 6px;
  border-top: 1px solid var(--c2c-border);
}

.c2c-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.c2c-stat-val {
  font-family: var(--font-2c-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.c2c-stat-lbl {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  color: var(--c2c-muted);
}

.c2c-hero-right {
  position: relative;
  min-height: 640px;
  background: var(--c2c-bg-subtle);
  overflow: hidden;
}

.c2c-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Manufacturer Bar */
.c2c-mfr-bar {
  padding: 52px;
  border-top: 1px solid var(--c2c-border);
  border-bottom: 1px solid var(--c2c-border);
  display: flex;
  align-items: center;
  gap: 56px;
  background: #FFFFFF;
}

.c2c-mfr-intro {
  max-width: 250px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.c2c-mfr-intro span:first-child {
  font-weight: 700;
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c2c-dark);
}

.c2c-mfr-intro span:last-child {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c2c-muted);
}

.c2c-mfr-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.c2c-mfr-box {
  height: 82px;
  background: var(--c2c-bg-alt);
  border: 1px solid var(--c2c-border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-align: center;
  transition: all 0.2s ease;
}

.c2c-mfr-box:hover {
  border-color: var(--c2c-dark);
  transform: translateY(-2px);
}

.c2c-mfr-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--c2c-dark);
}

.c2c-mfr-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c2c-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Visualizer Section */
.c2c-visualizer-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  background: var(--c2c-bg-alt);
  border-bottom: 1px solid var(--c2c-border);
}

.c2c-viz-left {
  padding: 64px 52px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.c2c-viz-title {
  font-family: var(--font-2c-display);
  font-size: 38px;
  line-height: 1.14;
  font-weight: 400;
  color: var(--c2c-dark);
}

.c2c-viz-desc {
  max-width: 480px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--c2c-muted);
}

.c2c-viz-controls-card {
  background: #FFFFFF;
  border: 1px solid var(--c2c-border);
  border-radius: 6px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.c2c-ctrl-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.c2c-ctrl-label {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c2c-light-muted);
}

.c2c-type-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.c2c-type-chip {
  padding: 6px 12px;
  border: 1px solid #D3DBD4;
  border-radius: 4px;
  background: #FFFFFF;
  color: var(--c2c-dark);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.c2c-type-chip.active {
  background: var(--c2c-dark);
  color: #FFFFFF;
  border-color: var(--c2c-dark);
}

.c2c-swatches-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.c2c-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #E2E8F0;
  cursor: pointer;
  position: relative;
  transition: transform 0.15s ease;
}

.c2c-swatch:hover {
  transform: scale(1.15);
}

.c2c-swatch.active {
  border-color: var(--c2c-dark);
  box-shadow: 0 0 0 2px var(--c2c-dark);
}

.c2c-height-slider-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--c2c-muted);
  font-weight: 600;
}

.c2c-height-slider {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: #E5E7EB;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.c2c-height-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--c2c-sky);
  cursor: pointer;
}

/* Visualizer Stage Viewport */
.c2c-viz-stage-card {
  position: relative;
  min-height: 580px;
  background: #111827;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.c2c-window-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: filter 0.3s ease;
}

.c2c-window-frame {
  position: absolute;
  top: 36px;
  left: 36px;
  right: 36px;
  bottom: 36px;
  border: 12px solid rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  z-index: 2;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.5), 0 10px 40px rgba(0,0,0,0.4);
  overflow: hidden;
}

.c2c-blind-draw {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: height 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, opacity 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.c2c-blind-slats {
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(0deg, rgba(0,0,0,0.06) 0px, rgba(0,0,0,0.06) 2px, transparent 2px, transparent 24px);
}

.c2c-blind-rail {
  height: 14px;
  background: rgba(0,0,0,0.12);
  border-top: 1px solid rgba(0,0,0,0.15);
}

.c2c-stage-hud {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 4px;
  color: #FFF;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}

/* What Actually Happens (4 Steps) */
.c2c-process-section {
  padding: 88px 52px;
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 72px;
  align-items: start;
  background: #FFFFFF;
}

.c2c-process-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.c2c-process-title {
  font-family: var(--font-2c-display);
  font-size: 40px;
  line-height: 1.14;
  font-weight: 400;
  color: var(--c2c-dark);
}

.c2c-process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px 44px;
}

.c2c-step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.c2c-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 59px;
  border-radius: 50%;
  color: #FFF;
  font-weight: 700;
  font-size: 19px;
  flex-shrink: 0;
}

.c2c-step-content h4 {
  font-weight: 600;
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--c2c-dark);
}

.c2c-step-content p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--c2c-muted);
}

/* Our Story Section (4 Eras) */
.c2c-story-section {
  padding: 88px 52px;
  background: var(--c2c-bg-alt);
  border-top: 1px solid var(--c2c-border);
  border-bottom: 1px solid var(--c2c-border);
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.c2c-story-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
}

.c2c-story-title {
  font-family: var(--font-2c-display);
  font-size: 42px;
  line-height: 1.12;
  font-weight: 400;
  color: var(--c2c-dark);
}

.c2c-story-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.c2c-story-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c2c-story-img-wrap {
  position: relative;
  height: 280px;
  background: var(--c2c-bg-subtle);
  border: 1px solid var(--c2c-border);
  border-radius: 4px;
  overflow: hidden;
}

.c2c-story-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.c2c-story-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c2c-story-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.c2c-year-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 79px;
  border-radius: 50%;
  color: #FFF;
  font-weight: 700;
  font-size: 22px;
  flex-shrink: 0;
}

.c2c-story-badge-row h4 {
  font-family: var(--font-2c-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  color: var(--c2c-dark);
}

.c2c-story-meta p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c2c-muted);
}

/* Showroom Section */
.c2c-showroom-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: #FFFFFF;
}

.c2c-showroom-left {
  padding: 84px 52px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
}

.c2c-showroom-title {
  font-family: var(--font-2c-display);
  font-size: 40px;
  line-height: 1.14;
  font-weight: 400;
  color: var(--c2c-dark);
}

.c2c-showroom-right {
  position: relative;
  min-height: 560px;
  background: var(--c2c-bg-subtle);
  overflow: hidden;
}

.c2c-showroom-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Trade Banner */
.c2c-trade-banner {
  background: var(--c2c-dark);
  color: #EDEBE7;
  padding: 64px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 56px;
}

.c2c-trade-content {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c2c-trade-title {
  font-family: var(--font-2c-display);
  font-size: 32px;
  line-height: 1.18;
  font-weight: 400;
  color: #FFFFFF;
}

.c2c-trade-btn {
  flex-shrink: 0;
  padding: 18px 30px;
  background: var(--c2c-green);
  color: var(--c2c-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 6px;
}

/* 3-Question Appointment Selector */
.c2c-appointment-section {
  padding: 88px 52px;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 64px;
  align-items: start;
  background: #FFFFFF;
}

.c2c-app-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.c2c-app-title {
  font-family: var(--font-2c-display);
  font-size: 40px;
  line-height: 1.14;
  font-weight: 400;
  color: var(--c2c-dark);
  letter-spacing: -0.01em;
}

.c2c-app-desc {
  font-size: 16.5px;
  line-height: 1.7;
  color: #4B5563;
}

.c2c-app-card {
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  background: #FFFFFF;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05), 0 4px 12px -2px rgba(0, 0, 0, 0.03);
}

.c2c-q-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c2c-q-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7E6A4F;
}

.c2c-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.c2c-chip {
  padding: 10px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  background: #FFFFFF;
  color: #111827;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
}

.c2c-chip:hover {
  border-color: #243875;
  color: #243875;
  background: #F8F9FA;
}

.c2c-chip.active {
  background: #243875;
  color: #FFFFFF;
  border-color: #243875;
  box-shadow: 0 2px 8px rgba(36, 56, 117, 0.25);
}

.c2c-summary-box {
  background: #F8F9FA;
  border: 1px solid #E5E7EB;
  border-left: 3px solid #243875;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 0 6px 6px 0;
}

.c2c-summary-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #243875;
}

.c2c-summary-text {
  font-size: 15.5px;
  line-height: 1.6;
  color: #111827;
  font-weight: 500;
}

.c2c-input {
  padding: 15px 4px;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid #E5E7EB;
  font-size: 15.5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  color: #111827;
  width: 100%;
  outline: none;
  transition: border-color 0.2s ease;
}

.c2c-input::placeholder {
  color: #9CA3AF;
  font-weight: 400;
}

.c2c-input:focus {
  border-bottom-color: #243875;
}

.c2c-submit-btn {
  padding: 16px 28px;
  background: #243875;
  color: #FFFFFF;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(36, 56, 117, 0.25);
  margin-top: 4px;
}

.c2c-submit-btn:hover {
  background: #1B2B5C;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(36, 56, 117, 0.35);
}

/* Footer */
.c2c-footer {
  padding: 56px 52px 48px;
  background: #F8F9FA;
  font-size: 13.5px;
  color: var(--c2c-muted);
}

.c2c-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--c2c-border);
}

.c2c-footer-heading {
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  color: #7E6A4F;
  margin-bottom: 16px;
}

.c2c-footer-logo {
  display: block;
  margin-bottom: 16px;
}

.c2c-footer-logo img {
  height: 52px;
  width: auto;
  display: block;
}

.c2c-footer-tagline {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--c2c-muted);
  margin-bottom: 12px;
  max-width: 28ch;
}

.c2c-footer-division {
  font-size: 12.5px;
  color: var(--c2c-light-muted);
}

.c2c-footer-division strong {
  color: var(--c2c-text);
  font-weight: 600;
}

.c2c-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c2c-footer-links a {
  color: var(--c2c-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.c2c-footer-links a:hover {
  color: #243875;
  opacity: 1;
}

.c2c-footer-shop-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--c2c-muted);
  margin-bottom: 16px;
  max-width: 32ch;
}

.c2c-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.c2c-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--c2c-text);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.45;
}

a.c2c-footer-contact-item:hover {
  opacity: 0.75;
}

.c2c-footer-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  flex-shrink: 0;
  margin-top: 1px;
}

.c2c-footer-icon--purple { background: #642771; }
.c2c-footer-icon--orange { background: #F58220; }
.c2c-footer-icon--emerald { background: #0F8F47; }
.c2c-footer-icon--teal { background: #05979A; }

.c2c-footer-social-label {
  display: block;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 10px;
  color: #7E6A4F;
  margin-bottom: 10px;
}

.c2c-footer-social-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.c2c-footer-social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.c2c-footer-social-link:hover {
  transform: scale(1.1);
  opacity: 1;
}

.c2c-footer-social-link--orchid { background: #A02274; }
.c2c-footer-social-link--navy { background: #243875; }
.c2c-footer-social-link--red { background: #ED1C24; }

.c2c-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  font-size: 12.5px;
  color: var(--c2c-light-muted);
}

.c2c-footer-parent-link {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #243875;
  text-decoration: none;
  white-space: nowrap;
}

.c2c-footer-parent-link:hover {
  opacity: 0.75;
}

@media (max-width: 1024px) {
  .c2c-hero, .c2c-visualizer-section, .c2c-process-section, .c2c-showroom-section, .c2c-appointment-section {
    grid-template-columns: 1fr;
  }
  .c2c-story-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .c2c-header, .variant-banner, .c2c-mfr-bar, .c2c-trade-banner, .c2c-footer {
    padding: 24px;
  }
  .c2c-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 28px;
  }
  .c2c-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .c2c-nav {
    display: none;
  }
  .c2c-story-grid, .c2c-process-grid, .c2c-mfr-grid {
    grid-template-columns: 1fr;
  }
  .c2c-hero-title {
    font-size: 40px;
  }
  .c2c-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .c2c-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
