/* ===================================
   DIYHome.app — Main Stylesheet
   Color Palette:
   Soft Brown:  #8B6B52, #A07855, #C4956A
   Beige:       #F5EFE6, #EDE0CF, #D4B896
   Light Blue:  #A8C5DA, #7BA7C0, #5A8FA8
   White:       #FFFFFF, #FAFAF8
   =================================== */

:root {
  --brown-dark:    #6B4F3A;
  --brown-mid:     #8B6B52;
  --brown-light:   #C4956A;
  --beige-dark:    #D4B896;
  --beige-mid:     #EDE0CF;
  --beige-light:   #F5EFE6;
  --blue-dark:     #4A7A95;
  --blue-mid:      #7BA7C0;
  --blue-light:    #A8C5DA;
  --blue-pale:     #D6E9F3;
  --white:         #FFFFFF;
  --off-white:     #FAFAF8;
  --text-dark:     #2C1F14;
  --text-mid:      #5C4033;
  --text-light:    #8B7355;
  --text-muted:    #B0977E;
  --success:       #5A9E6F;
  --warning:       #D4863A;
  --error:         #C0524A;
  --gold:          #C8A84B;

  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --radius-full:   999px;

  --shadow-sm:  0 1px 4px rgba(139,107,82,0.10);
  --shadow-md:  0 4px 20px rgba(139,107,82,0.14);
  --shadow-lg:  0 12px 40px rgba(139,107,82,0.18);
  --shadow-xl:  0 24px 60px rgba(139,107,82,0.22);

  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --font-main: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================
   NAVBAR
======================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,149,106,0.15);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-dark);
}
.logo-icon { font-size: 1.6rem; }
.logo-text { letter-spacing: -0.02em; }
.logo-dot { color: var(--blue-mid); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links li a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
}
.nav-links li a:hover {
  color: var(--brown-mid);
  background: var(--beige-light);
}
.btn-nav-login {
  border: 1.5px solid var(--beige-dark) !important;
  color: var(--text-mid) !important;
  border-radius: var(--radius-full) !important;
}
.btn-nav-login:hover {
  border-color: var(--brown-mid) !important;
  background: var(--beige-light) !important;
}
.btn-nav-cta {
  background: linear-gradient(135deg, var(--brown-mid), var(--brown-light)) !important;
  color: var(--white) !important;
  border-radius: var(--radius-full) !important;
  padding: 9px 22px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(139,107,82,0.35);
}
.btn-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139,107,82,0.45) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================
   BUTTONS
======================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--brown-mid), var(--brown-light));
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(139,107,82,0.35);
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,107,82,0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--brown-mid);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--brown-mid);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--beige-light);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: rgba(255,255,255,0.2);
  color: var(--text-dark);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(139,107,82,0.25);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.4);
  border-color: var(--brown-mid);
}

.btn-xl { padding: 16px 36px; font-size: 1.05rem; }
.btn-blue {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  box-shadow: 0 4px 16px rgba(74,122,149,0.35);
}
.btn-blue:hover { box-shadow: 0 8px 24px rgba(74,122,149,0.45); }

/* ========================
   SECTION HEADERS
======================== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-badge {
  display: inline-block;
  padding: 6px 18px;
  background: var(--beige-mid);
  color: var(--brown-mid);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.gradient-text {
  background: linear-gradient(135deg, var(--brown-mid), var(--blue-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================
   HERO
======================== */
.hero {
  min-height: 100vh;
  padding: 120px 24px 80px;
  background: linear-gradient(160deg, var(--beige-light) 0%, var(--off-white) 50%, var(--blue-pale) 100%);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 60px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}
.shape-1 {
  width: 400px; height: 400px;
  background: var(--beige-dark);
  top: -100px; right: -100px;
}
.shape-2 {
  width: 300px; height: 300px;
  background: var(--blue-light);
  bottom: 0; left: -80px;
}
.shape-3 {
  width: 200px; height: 200px;
  background: var(--brown-light);
  top: 40%; left: 40%;
  opacity: 0.15;
}
.hero-container { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brown-mid);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 24px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--beige-dark);
  margin: 0 24px 0 0;
}
.hero-mockup {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mockup-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  border: 1px solid var(--beige-mid);
}
.mockup-header {
  background: var(--beige-light);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--beige-mid);
}
.mockup-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.mockup-dot.red    { background: #FC5F57; }
.mockup-dot.yellow { background: #FEBC2E; }
.mockup-dot.green  { background: #28C840; }
.mockup-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-left: 8px;
}
.mockup-body { padding: 24px 20px; }
.mockup-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.mockup-row.highlight { background: var(--beige-light); }
.mockup-label { color: var(--text-light); font-weight: 500; }
.mockup-val { font-weight: 700; color: var(--text-dark); }
.green-text  { color: var(--success) !important; }
.red-text    { color: var(--error) !important; }
.gold-text   { color: var(--gold) !important; }
.mockup-difficulty {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  margin-bottom: 6px;
}
.difficulty-label { font-size: 0.85rem; color: var(--text-light); font-weight: 500; }
.difficulty-bars { display: flex; gap: 4px; }
.bar {
  width: 24px; height: 6px;
  border-radius: 3px;
  background: var(--beige-mid);
}
.bar.filled { background: var(--brown-mid); }
.difficulty-text { font-size: 0.82rem; color: var(--text-muted); }
.mockup-rec {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  margin-top: 8px;
}
.mockup-rec.diy {
  background: rgba(90,158,111,0.12);
  color: var(--success);
  border: 1px solid rgba(90,158,111,0.3);
}

/* ========================
   TRUST BAR
======================== */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--beige-mid);
  border-bottom: 1px solid var(--beige-mid);
  padding: 28px 0;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
  flex-shrink: 0;
}
.trust-logos {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}
.trust-item i { color: var(--brown-light); }

/* ========================
   HOW IT WORKS
======================== */
.how-it-works {
  padding: 100px 0;
  background: var(--off-white);
}
.steps-grid {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--beige-mid);
  box-shadow: var(--shadow-sm);
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  transition: var(--transition);
  position: relative;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brown-light);
}
.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--beige-dark);
  line-height: 1;
  margin-bottom: 16px;
  font-family: var(--font-display);
}
.step-icon-wrap {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--beige-mid), var(--blue-pale));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--brown-mid);
}
.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}
.step-arrow {
  color: var(--beige-dark);
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* ========================
   FEATURES
======================== */
.features {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--beige-light) 0%, var(--off-white) 100%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--beige-mid);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brown-light);
}
.feature-card.featured {
  background: linear-gradient(135deg, var(--brown-mid), var(--brown-dark));
  color: var(--white);
  border-color: transparent;
  grid-row: span 1;
}
.feature-icon {
  width: 52px; height: 52px;
  background: var(--beige-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--brown-mid);
  margin-bottom: 20px;
}
.feature-card.featured .feature-icon {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.feature-card.featured h3 { color: var(--white); }
.feature-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; }
.feature-card.featured p { color: rgba(255,255,255,0.82); }
.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--beige-mid);
}
.feature-link:hover { color: var(--white); }

/* ========================
   PROJECTS GRID
======================== */
.projects {
  padding: 100px 0;
  background: var(--off-white);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 16px;
  text-align: center;
  border: 1.5px solid var(--beige-mid);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: block;
  cursor: pointer;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-mid);
  background: var(--blue-pale);
}
.project-emoji { font-size: 2.4rem; margin-bottom: 10px; }
.project-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.project-range {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mt-20 { margin-top: 20px; }

/* ========================
   SAMPLE PREVIEW
======================== */
.sample-preview {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--blue-pale) 0%, var(--beige-light) 100%);
}
.sample-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sample-text { padding: 20px 0; }
.sample-list {
  list-style: none;
  margin: 24px 0;
}
.sample-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(196,149,106,0.15);
}
.sample-list li:last-child { border-bottom: none; }
.sample-list li i { color: var(--success); font-size: 1rem; }

.sample-report-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--beige-mid);
}
.report-header {
  background: linear-gradient(135deg, var(--brown-mid), var(--brown-light));
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
}
.report-logo { font-weight: 700; font-size: 1rem; }
.report-meta { text-align: right; font-size: 0.8rem; opacity: 0.9; }
.report-meta span { display: block; }
.report-body { padding: 24px; }
.report-section { margin-bottom: 20px; }
.report-section h4 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brown-mid);
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.report-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--beige-light);
}
.report-row span:last-child { font-weight: 600; color: var(--text-dark); }
.stars { font-size: 0.82rem; color: var(--text-light); }
.report-cost { margin: 16px 0; border-radius: var(--radius-md); overflow: hidden; }
.cost-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 600;
}
.cost-row.diy { background: rgba(90,158,111,0.08); color: var(--success); }
.cost-row.pro { background: rgba(192,82,74,0.06); color: var(--error); }
.cost-row.savings { background: rgba(200,168,75,0.12); color: var(--gold); font-size: 1.05rem; }
.report-verdict {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  line-height: 1.6;
}
.report-verdict.diy-rec {
  background: rgba(90,158,111,0.1);
  color: var(--success);
  border: 1px solid rgba(90,158,111,0.25);
}
.report-verdict.pro-rec {
  background: rgba(74,122,149,0.1);
  color: var(--blue-dark);
  border: 1px solid rgba(74,122,149,0.25);
}

/* ========================
   TESTIMONIALS
======================== */
.testimonials {
  padding: 100px 0;
  background: var(--off-white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--beige-mid);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-card.featured-quote {
  background: linear-gradient(135deg, var(--beige-light), var(--blue-pale));
  border-color: var(--blue-light);
}
.testimonial-stars { font-size: 0.9rem; margin-bottom: 14px; }
.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-author strong { font-size: 0.95rem; color: var(--text-dark); }
.testimonial-author small { font-size: 0.8rem; color: var(--text-muted); }

/* ========================
   PRICING TEASER
======================== */
.pricing-teaser {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--beige-light) 0%, var(--off-white) 100%);
}
.pricing-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  border: 2px solid var(--beige-mid);
  box-shadow: var(--shadow-sm);
  text-align: center;
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  position: relative;
  transition: var(--transition);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.price-card.popular {
  border-color: var(--brown-mid);
  box-shadow: 0 12px 48px rgba(139,107,82,0.2);
  transform: scale(1.03);
}
.price-card.popular:hover { transform: scale(1.03) translateY(-6px); }
.price-badge {
  display: inline-block;
  padding: 5px 16px;
  background: var(--beige-light);
  color: var(--brown-mid);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.price-badge.best {
  background: linear-gradient(135deg, var(--brown-mid), var(--brown-light));
  color: var(--white);
}
.price-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 8px;
}
.price-dollar { font-size: 1.8rem; vertical-align: top; margin-top: 12px; display: inline-block; }
.price-cents { font-size: 1.4rem; color: var(--text-muted); }
.price-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}
.price-features li {
  padding: 9px 0;
  font-size: 0.92rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--beige-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-features li:last-child { border-bottom: none; }
.price-features li i { color: var(--success); font-size: 0.9rem; flex-shrink: 0; }

/* ========================
   CTA BANNER
======================== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-mid) 50%, var(--blue-dark) 100%);
}
.cta-content {
  text-align: center;
  color: var(--white);
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn-primary {
  background: var(--white);
  color: var(--brown-dark);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.cta-banner .btn-primary:hover {
  box-shadow: 0 10px 32px rgba(0,0,0,0.3);
  background: var(--beige-light);
}

/* ========================
   FOOTER
======================== */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: 16px; }
.footer-brand .logo-dot { color: var(--blue-light); }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.6);
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--brown-mid);
  color: var(--white);
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--beige-mid); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--beige-mid); }
.footer-disclaimer {
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.3) !important;
}

/* ========================
   FORM ELEMENTS
======================== */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--beige-mid);
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--brown-mid);
  box-shadow: 0 0 0 3px rgba(139,107,82,0.12);
}
.form-control::placeholder { color: var(--text-muted); }
select.form-control { cursor: pointer; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ========================
   TABS
======================== */
.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.tab-btn {
  padding: 9px 20px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--beige-mid);
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn:hover, .tab-btn.active {
  background: var(--brown-mid);
  color: var(--white);
  border-color: var(--brown-mid);
}

/* ========================
   CARDS / PANELS
======================== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--beige-mid);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--beige-light);
  background: var(--beige-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}
.card-body { padding: 24px; }

/* ========================
   BADGES
======================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-success { background: rgba(90,158,111,0.12); color: var(--success); }
.badge-warning { background: rgba(212,134,58,0.12); color: var(--warning); }
.badge-error   { background: rgba(192,82,74,0.12);  color: var(--error); }
.badge-info    { background: rgba(74,122,149,0.12); color: var(--blue-dark); }

/* ========================
   RANGE SLIDER
======================== */
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--beige-mid);
  outline: none;
  margin: 8px 0;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--brown-mid);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(139,107,82,0.4);
  transition: var(--transition);
}
input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* ========================
   PROGRESS BARS
======================== */
.progress-bar-wrap {
  width: 100%;
  height: 8px;
  background: var(--beige-mid);
  border-radius: 4px;
  overflow: hidden;
  margin: 6px 0;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brown-mid), var(--brown-light));
  border-radius: 4px;
  transition: width 0.5s ease;
}

/* ========================
   ALERTS
======================== */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}
.alert-success { background: rgba(90,158,111,0.1); color: var(--success); border: 1px solid rgba(90,158,111,0.25); }
.alert-warning { background: rgba(212,134,58,0.1); color: var(--warning); border: 1px solid rgba(212,134,58,0.25); }
.alert-info    { background: rgba(74,122,149,0.1); color: var(--blue-dark); border: 1px solid rgba(74,122,149,0.25); }

/* ========================
   DIVIDERS
======================== */
.divider {
  height: 1px;
  background: var(--beige-mid);
  margin: 24px 0;
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; text-align: center; }
  .hero-container { order: 1; }
  .hero-mockup { order: 2; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-badge { display: inline-flex; }
  .sample-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px 24px; gap: 4px; border-bottom: 1px solid var(--beige-mid); box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .step-arrow { display: none; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-card { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-cards { flex-direction: column; align-items: center; }
  .price-card.popular { transform: scale(1); }
  .price-card.popular:hover { transform: translateY(-6px); }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 90px 20px 60px; }
  .section-title { font-size: 1.8rem; }
  .projects-grid { grid-template-columns: repeat(3, 1fr); }
  .sample-card-wrap { padding: 0 10px; }
}

@media (max-width: 480px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { text-align: center; justify-content: center; }
  .stat-divider { display: none; }
  .hero-stats { gap: 16px; }
}

/* ========================
   ANIMATIONS
======================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
.animate-in { animation: fadeInUp 0.5s ease forwards; }
.mockup-card { animation: float 6s ease-in-out infinite; }

/* Print styles for estimates */
@media print {
  .navbar, .cta-banner, .footer { display: none; }
  body { background: white; }
  .card { box-shadow: none; border: 1px solid #ddd; }
}
