/* ==========================================
   RESET & BASE STYLES
   ========================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #0F172A;
    background-color: #FAFAF9;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ==========================================
   TYPOGRAPHY
   ========================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #0F172A;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #475569;
}

.emphasis {
    font-weight: 600;
    color: #0F172A;
}

/* ==========================================
   LAYOUT UTILITIES
   ========================================== */

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

section {
    padding: 5rem 0;
}

.centered {
    text-align: center;
}

.section-title {
    margin-bottom: 3rem;
}

/* ==========================================
   HEADER
   ========================================== */

.header {
    position: sticky;
    top: 0;
    background: rgba(250, 250, 249, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    padding: 1rem 0;
    z-index: 1000;
}

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

.logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0D7FFF;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-image {
    height: 32px;
    width: auto;
    object-fit: contain;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #0D7FFF;
    color: white;
}

.btn-primary:hover {
    background: #0b6edb;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13, 127, 255, 0.3);
}

.btn-small {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.app-store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  line-height: 0;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.app-store-link:focus-visible {
  box-shadow: 0 0 0 4px rgba(13, 127, 255, 0.25);
}

.app-store-link:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

.app-store-badge {
  height: 54px;
  width: auto;
  display: block;
}

/* ==========================================
   ICON SYSTEM (replaces emojis)
   ========================================== */

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  line-height: 0;
}

.icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Size presets */
.icon--sm { width: 22px; height: 22px; }
.icon--md { width: 24px; height: 24px; }
.icon--lg { width: 36px; height: 36px; }

/* Color presets */
.icon--blue  svg { stroke: #0D7FFF; }
.icon--amber svg { stroke: #F59E0B; }
.icon--green svg { stroke: #22C55E; }
.icon--red   svg { stroke: #EF4444; }
.icon--slate svg { stroke: #64748B; }

/* Filled variants when you want a solid mark */
.icon--fill-blue  svg { fill: #0D7FFF; stroke: none; }
.icon--fill-amber svg { fill: #F59E0B; stroke: none; }
.icon--fill-green svg { fill: #22C55E; stroke: none; }
.icon--fill-red   svg { fill: #EF4444; stroke: none; }

.step-icon,
.feature-icon,
.history-icon,
.issue-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.issue-icon {
  width: 100%;
  margin-bottom: 1rem;
}

.issue-icon svg {
  display: block;
}


.step-icon { width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem; }
.feature-icon,
.history-icon { margin-top: 2px; }

.step-icon svg {
  stroke: #D97706;
}

.comparison-item .icon,
.pricing-feature .icon,
.trust-item .icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}



/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, #FAFAF9 0%, #FFF7ED 100%);
}

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

.hero-title {
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748B;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.stat {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.stat-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.stat-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.stat-text strong {
    font-size: 1.125rem;
    color: #0F172A;
    font-weight: 600;
}

.stat-text span {
    font-size: 0.875rem;
    color: #64748B;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  height: 54px;
  padding: 0 1.1rem;

  background: #F0FDF4;
  border: 1px solid #22C55E;
  border-radius: 14px;

  color: #065F46;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;

  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.12);
}


.trust-icon {
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .trust-badge {
    height: auto;
    padding: 0.85rem 1rem;
    white-space: normal;
  }
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.phone-mockup.has-frame {
    max-width: 520px;
}

.app-screenshot {
    width: 100%;
    height: auto;
    display: block;
}



/* ==========================================
   PROBLEM SECTION
   ========================================== */

.problem-section {
    padding: 6rem 0;
    background: white;
}

.problem-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.problem-text {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
    color: #475569;
}

.problem-text.emphasis {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0F172A;
    margin-top: 2rem;
}

.problem-visual {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.screenshot-rounded {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   HOW IT WORKS SECTION
   ========================================== */

.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFF7ED 0%, #FAFAF9 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    position: relative;
}

.step-number {
    position: absolute;
    top: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background: #F59E0B;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.step-title {
    margin-bottom: 0.5rem;
    color: #0F172A;
}

.step-time {
    font-size: 0.875rem;
    font-weight: 600;
    color: #F59E0B;
    margin-bottom: 0.75rem;
}

.step-description {
    color: #64748B;
    font-size: 1rem;
}

.handwriting-underline {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.handwriting-underline::after {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: -4px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='8' viewBox='0 0 100 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5C15 3 30 2 45 3.5C60 5 75 6 85 5.5C90 5.2 95 4.5 98 4' stroke='%23F59E0B' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: 0 100%;
}

/* ==========================================
   VALUE SECTION
   ========================================== */

.value-section {
    padding: 6rem 0;
    background: white;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.value-screenshot {
    display: flex;
    justify-content: center;
}

.screenshot-large {
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.value-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #0D7FFF 0%, #1a56db 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.value-content h3 {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.value-content p {
    color: #64748B;
    font-size: 1rem;
}

.value-tagline {
    text-align: center;
    font-size: 1.375rem;
    font-weight: 500;
    color: #0F172A;
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================================
   CONTRACTOR SECTION
   ========================================== */

.contractor-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FAFAF9 0%, #FFF7ED 100%);
}

.contractor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.contractor-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.feature-content h3 {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.feature-content p {
    color: #64748B;
}

.contractor-screenshot {
    display: flex;
    justify-content: center;
}

.contractor-screenshot img {
    max-width: 380px;
    width: 100%;
    height: auto;
}

.contractor-callout {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.contractor-callout p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contractor-callout p.emphasis {
    font-size: 1.375rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 0;
}

/* ==========================================
   HISTORY SECTION
   ========================================== */

.history-section {
    padding: 6rem 0;
    background: white;
}

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

.history-content .section-title {
    text-align: left;
    margin-bottom: 2.5rem;
}

.history-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.history-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.history-screenshot {
    display: flex;
    justify-content: center;
}

.history-screenshot img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.history-item h3 {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.history-item p {
    color: #64748B;
}

/* ==========================================
   ISSUES SECTION
   ========================================== */

.issues-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFF7ED 0%, #FAFAF9 100%);
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.issue-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.1);
}

.issue-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.issue-card p {
    font-size: 0.875rem;
    color: #64748B;
}

/* ==========================================
   FOUNDER SECTION
   ========================================== */

.founder-section {
    padding: 6rem 0;
    background: white;
}

.founder-content {
    max-width: 800px;
    margin: 0 auto;
}

.founder-story::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: #F59E0B;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}



.founder-story p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #475569;
}

.founder-story p:last-of-type {
    margin-bottom: 0;
}

.founder-signature {
    font-weight: 600;
    color: #0F172A;
    font-style: italic;
    margin-top: 2rem;
}

/* ==========================================
   COMPARISON SECTION
   ========================================== */

.comparison-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FAFAF9 0%, #FFF7ED 100%);
}

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

.comparison-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.comparison-card.highlight {
    background: linear-gradient(135deg, #0D7FFF 0%, #1a56db 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(13, 127, 255, 0.3);
}

.comparison-card h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.comparison-card.highlight h3 {
    color: white;
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.comparison-item span:last-child {
    color: #475569;
    font-size: 1rem;
}

.comparison-card.highlight .comparison-item span:last-child {
    color: rgba(255, 255, 255, 0.95);
}

/* ==========================================
   VALUE SECTION - CAROUSEL ADDITIONS
   Add this to your existing styles.css
   ========================================== */

/* Carousel Wrapper */
.value-carousel-wrapper {
    margin-bottom: 4rem;
}

.carousel-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 3rem; /* Space for arrows */
}

.carousel-viewport{
  overflow: hidden;
  width: 100%;
}

.carousel-track{
  display: flex;
  transform: translateX(0);
  transition: transform 0.45s ease;
  will-change: transform;
}

.carousel-slide{
  flex: 0 0 100%;
  min-width: 100%;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Phone Mockup in Carousel */
.carousel-slide .phone-mockup {
    max-width: 350px;
    margin: 0 auto;
}

/* Slide Caption */
.slide-caption {
    text-align: center;
}

.slide-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #0F172A;
}

.slide-caption p {
    font-size: 1rem;
    color: #64748B;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #CBD5E1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover {
    background: #94A3B8;
}

.dot.active {
    background: #0D7FFF;
    width: 28px;
    border-radius: 5px;
}

/* Carousel Arrow Buttons */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #64748B;
}

.carousel-arrow:hover {
    background: #0D7FFF;
    border-color: #0D7FFF;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow--prev {
    left: 0;
}

.carousel-arrow--next {
    right: 0;
}

.carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-arrow:disabled:hover {
    background: white;
    border-color: #E2E8F0;
    color: #64748B;
    transform: translateY(-50%);
}

/* Value Features Grid Below Carousel */
.value-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.value-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #FAFAF9;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-feature-item:hover {
    background: #FFF7ED;
    transform: translateY(-2px);
}

.value-feature-item.highlighted {
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
    border: 2px solid #22C55E;
}

.value-feature-item.highlighted:hover {
    background: linear-gradient(135deg, #DCFCE7 0%, #D1FAE5 100%);
}

.feature-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.9375rem;
    color: #64748B;
    line-height: 1.5;
}

/* ==========================================
   RESPONSIVE DESIGN FOR CAROUSEL
   ========================================== */

@media (max-width: 768px) {
    .carousel-container {
        padding: 0 2.5rem;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-slide .phone-mockup {
        max-width: 300px;
    }

    .value-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .slide-caption h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        padding: 0 2rem;
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
    }

    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }

    .value-feature-item {
        padding: 1.25rem;
    }

    .feature-text h4 {
        font-size: 1rem;
    }

    .feature-text p {
        font-size: 0.875rem;
    }
}
/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .carousel-container {
        padding: 0 2.5rem;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-slide .phone-mockup {
        max-width: 300px;
    }

    .value-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-tagline {
        font-size: 1.125rem;
    }

    .slide-caption h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        padding: 0 2rem;
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
    }

    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }

    .value-feature-item {
        padding: 1.25rem;
    }

    .feature-text h4 {
        font-size: 1rem;
    }

    .feature-text p {
        font-size: 0.875rem;
    }
}

/* ==========================================
   PRICING SECTION
   ========================================== */

.pricing-section {
    padding: 6rem 0;
    background: white;
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FFF7ED 0%, #FAFAF9 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #F59E0B;
}

.pricing-badge {
    display: inline-block;
    background: #F59E0B;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pricing-feature span:last-child {
    font-size: 1.125rem;
    color: #0F172A;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.125rem;
    color: #64748B;
    font-style: italic;
}

.pricing-header{
  display:flex;
  flex-direction:column;
  gap:1.25rem;
  margin-bottom:1.5rem;
  text-align:left;
}

.pricing-price .price-main{
  font-size:2rem;
  font-weight:800;
  color:#0F172A;
  line-height:1.1;
}

.pricing-price .price-sub{
  margin-top:0.25rem;
  color:#475569;
  font-size:1rem;
  font-weight:500;
}

.pricing-pills{
  display:flex;
  flex-wrap:wrap;
  gap:0.5rem;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding:0.4rem 0.7rem;
  border-radius:999px;
  background:#ffffff;
  border:1px solid rgba(15,23,42,0.08);
  font-size:0.875rem;
  font-weight:600;
  color:#0F172A;
}

.pricing-divider{
  height:1px;
  background:rgba(15,23,42,0.08);
  margin:1.25rem 0 1.5rem;
}


/* ==========================================
   FINAL CTA SECTION
   ========================================== */

.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0D7FFF 0%, #1a56db 100%);
    color: white;
}

.final-cta .section-title {
    color: white;
}

.final-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

.final-content p.emphasis {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2.5rem;
}

.final-content .btn-primary {
    background: white;
    color: #0D7FFF;
    margin-bottom: 2.5rem;
}

.final-content .btn-primary:hover {
    background: #FAFAF9;
    color: #0b6edb;
}

.final-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: #0F172A;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.social-links a:hover {
    color: white;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a:not(.btn) {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:not(.btn):hover,
.nav a:not(.btn).active {
    color: #0D7FFF;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #0F172A;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: rgba(250, 250, 249, 0.97);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(15, 23, 42, 0.1);
        padding: 1rem 2rem 1.5rem;
    }

    .nav.open {
        display: flex;
    }

    .nav a:not(.btn) {
        padding: 0.75rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    }

    .nav .btn {
        margin-top: 1rem;
    }
}

/* ==========================================
   PAGE HERO (Support, About, Blog)
   ========================================== */

.page-hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, #FAFAF9 0%, #FFF7ED 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================
   SUPPORT/FAQ PAGE
   ========================================== */

.faq-section {
    padding: 4rem 0;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category-title {
    font-size: 1.5rem;
    color: #0D7FFF;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #F59E0B;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: #0F172A;
    text-align: left;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #FAFAF9;
}

.faq-icon {
    font-size: 1.5rem;
    color: #0D7FFF;
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-answer > * {
  overflow: hidden;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    color: #475569;
}

.faq-answer {
  padding: 0 1.5rem 0;
  transition: grid-template-rows 0.25s ease, padding 0.25s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
}

.faq-question:focus-visible {
  outline: 2px solid #0D7FFF;
  outline-offset: 3px;
  border-radius: 10px;
}


.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFF7ED 0%, #FAFAF9 100%);
}

.contact-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

.contact-card h2 {
    margin-bottom: 1rem;
}

.contact-card p {
    margin-bottom: 2rem;
}

.contact-note {
    font-size: 0.875rem;
    color: #64748B;
    margin-top: 1rem;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */

.about-story {
    padding: 4rem 0;
    background: white;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #475569;
}

.mission-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFF7ED 0%, #FAFAF9 100%);
}

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

.mission-content h2 {
    margin-bottom: 2rem;
}

.mission-text {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(15, 23, 42, 0.05);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.value-card p {
    font-size: 1rem;
    color: #64748B;
}

.journey-section {
    padding: 4rem 0;
    background: white;
}

.journey-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #F59E0B;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    background: #F59E0B;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    z-index: 1;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.timeline-content p {
    color: #64748B;
}

.different-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FAFAF9 0%, #FFF7ED 100%);
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.different-item {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(15, 23, 42, 0.05);
}

.different-item h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.different-item p {
    color: #64748B;
}

.founder-note {
    padding: 4rem 0;
    background: white;
}

.founder-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background: linear-gradient(
    180deg,
    #FFFBF6 0%,
    #FFF7ED 100%
  );
  border-radius: 18px;
}

.founder-content h2 {
    margin-bottom: 2rem;
}

.founder-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #475569;
}

.founder-signature {
    font-weight: 600;
    color: #0F172A;
    font-style: italic;
    margin-top: 2rem;
    font-size: 1.25rem;
}

.founder-title {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    color: #64748B;
    font-style: normal;
    margin-top: 0.25rem;
}

.about-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0D7FFF 0%, #1a56db 100%);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.about-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.about-cta .btn-primary {
    background: white;
    color: #0D7FFF;
}

.about-cta .btn-primary:hover {
    background: #FAFAF9;
}

/* ==========================================
   BLOG PAGES
   ========================================== */

.blog-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #FFF7ED 0%, #FAFAF9 100%);
    text-align: center;
}

.blog-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.category-tag {
    padding: 0.5rem 1.25rem;
    background: white;
    border: 2px solid transparent;
    border-radius: 24px;
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.category-tag:hover,
.category-tag.active {
    border-color: #0D7FFF;
    color: #0D7FFF;
}

.featured-post {
    padding: 3rem 0;
    background: white;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, #FFF7ED 0%, #FAFAF9 100%);
    padding: 2rem;
    border-radius: 20px;
}

.featured-image {
    position: relative;
}

.featured-image img {
    border-radius: 12px;
    width: 100%;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #F59E0B;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
}

.featured-content h2 {
    margin-bottom: 1rem;
}

.featured-content h2 a {
    text-decoration: none;
    color: #0F172A;
    transition: color 0.3s ease;
}

.featured-content h2 a:hover {
    color: #0D7FFF;
}

.read-more {
    display: inline-block;
    color: #0D7FFF;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.read-more:hover {
    transform: translateX(5px);
}

.blog-grid-section {
    padding: 3rem 0 5rem;
    background: white;
}

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

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.1);
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.post-category {
    color: #0D7FFF;
    font-weight: 600;
}

.post-date {
    color: #64748B;
}

.post-read-time {
    color: #64748B;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.blog-content h3 a {
    text-decoration: none;
    color: #0F172A;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #0D7FFF;
}

.blog-content > p {
    color: #64748B;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.read-time {
    font-size: 0.875rem;
    color: #64748B;
}

.read-link {
    color: #0D7FFF;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: inline-block;
}

.read-link:hover {
    transform: translateX(5px);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.page-link {
    padding: 0.75rem 1.25rem;
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: #0D7FFF;
    color: white;
    border-color: #0D7FFF;
}

.page-link.active {
    background: #0D7FFF;
    color: white;
    border-color: #0D7FFF;
}

.page-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-link.disabled:hover {
    background: white;
    color: #475569;
    border-color: rgba(15, 23, 42, 0.1);
}

.newsletter-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0D7FFF 0%, #1a56db 100%);
}

.newsletter-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-card h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-card p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
}

.newsletter-form button {
    flex-shrink: 0;
}

.newsletter-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================
   BLOG POST PAGE
   ========================================== */

.blog-post {
    background: white;
}

.post-header {
    padding: 3rem 0;
    background: linear-gradient(135deg, #FFF7ED 0%, #FAFAF9 100%);
}

.post-title {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.post-excerpt {
    font-size: 1.25rem;
    color: #64748B;
    margin-bottom: 2rem;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #0F172A;
}

.author-bio {
    font-size: 0.875rem;
    color: #64748B;
}

.post-featured-image {
    max-width: 1200px;
    margin: 0 auto;
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-content {
    padding: 4rem 0;
}

.post-content .lead {
    font-size: 1.375rem;
    line-height: 1.7;
    color: #475569;
    font-weight: 500;
    margin-bottom: 2rem;
}

.post-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.post-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.75rem;
    color: #475569;
}

.post-content strong {
    color: #0F172A;
    font-weight: 600;
}

.post-cta {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #FFF7ED 0%, #FAFAF9 100%);
    border-radius: 16px;
    border-left: 4px solid #0D7FFF;
    text-align: center;
}

.post-cta h3 {
    margin-bottom: 1rem;
}

.post-cta p {
    margin-bottom: 1.5rem;
}

.post-footer {
    padding: 2rem 0 4rem;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.tag {
    padding: 0.5rem 1rem;
    background: #FAFAF9;
    border-radius: 20px;
    font-size: 0.875rem;
    color: #475569;
    font-weight: 500;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.share-label {
    font-weight: 600;
    color: #0F172A;
}

.share-link {
    color: #0D7FFF;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.share-link:hover {
    opacity: 0.7;
}

.related-posts {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FAFAF9 0%, #FFF7ED 100%);
}

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

.related-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.1);
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-card h3 {
    padding: 1.5rem;
    font-size: 1.125rem;
    margin-bottom: 0;
}

.related-card h3 a {
    text-decoration: none;
    color: #0F172A;
    transition: color 0.3s ease;
}

.related-card h3 a:hover {
    color: #0D7FFF;
}

.related-card .read-time {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.875rem;
    color: #64748B;
    display: block;
}

/* ==========================================
   LEGAL PAGES (Privacy Policy, Terms of Service)
   ========================================== */

.legal-content {
    padding: 3rem 0 5rem;
    background: white;
}

.legal-meta {
    display: flex;
    gap: 2rem;
    padding: 1.25rem 1.75rem;
    background: linear-gradient(135deg, #FFF7ED 0%, #FEFAF5 100%);
    border-radius: 12px;
    margin-bottom: 3rem;
    border-left: 4px solid #F59E0B;
    font-size: 0.9375rem;
}

.legal-meta p {
    margin: 0;
    color: #475569;
}

.legal-meta strong {
    color: #0F172A;
    font-weight: 600;
}

.legal-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.legal-intro p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #475569;
}

.legal-intro p:last-child {
    margin-bottom: 0;
}

.legal-content h2 {
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    font-size: 1.875rem;
    color: #0F172A;
    font-weight: 700;
    scroll-margin-top: 100px;
}

.legal-content h2:first-of-type {
    margin-top: 2rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: #0F172A;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: #475569;
    font-size: 1rem;
}

.legal-content ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.legal-content ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #475569;
}

.legal-content ul li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #0D7FFF;
    font-weight: 700;
    font-size: 1.25rem;
}

.legal-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    counter-reset: item;
    list-style: none;
}

.legal-content ol > li {
    position: relative;
    margin-bottom: 1.75rem;
    line-height: 1.8;
    color: #475569;
    counter-increment: item;
    padding-left: 0.5rem;
}

.legal-content ol > li:before {
    content: counter(item) ".";
    position: absolute;
    left: -2rem;
    color: #0D7FFF;
    font-weight: 700;
}

.legal-content ol li ul {
    margin-top: 1rem;
}

.legal-content a {
    color: #0D7FFF;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.legal-content a:hover {
    border-bottom-color: #0D7FFF;
}

.legal-content strong {
    color: #0F172A;
    font-weight: 700;
}

.legal-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2.5rem 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.legal-table thead {
    background: linear-gradient(135deg, #0D7FFF 0%, #0b6edb 100%);
}

.legal-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.legal-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    color: #475569;
    line-height: 1.7;
    vertical-align: top;
}

.legal-table td:first-child {
    font-weight: 600;
    color: #0F172A;
}

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

.legal-table tbody tr {
    transition: background 0.2s ease;
}

.legal-table tbody tr:hover {
    background: #FAFAF9;
}

.legal-caps {
    font-size: 0.9375rem;
    line-height: 1.8;
    background: linear-gradient(135deg, #FFF7ED 0%, #FEFAF5 100%);
    padding: 1.75rem 2rem;
    border-radius: 12px;
    border-left: 4px solid #F59E0B;
    margin: 2rem 0;
}

.legal-caps strong {
    font-weight: 700;
}

.legal-section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(15, 23, 42, 0.1), transparent);
    margin: 3rem 0;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1024px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-grid,
    .value-grid,
    .contractor-grid,
    .history-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .comparison-card.highlight {
        transform: scale(1);
    }

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

    /* New pages responsive */
    .mission-grid,
    .featured-card {
        grid-template-columns: 1fr;
    }

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

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

    .nav {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .container-narrow {
        padding: 0 1.5rem;
    }

    section {
        padding: 3rem 0;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

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

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

    .final-trust {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .problem-text {
        font-size: 1.125rem;
    }

    .value-tagline,
    .contractor-callout p {
        font-size: 1.125rem;
    }

    /* New pages responsive */
    .page-hero h1 {
        font-size: 2.25rem;
    }

    .post-title {
        font-size: 2rem;
    }

    .journey-timeline::before {
        left: 1.5rem;
    }

    .timeline-marker {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }

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

    .blog-categories {
        justify-content: flex-start;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .nav {
        display: none;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.875rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .post-content .lead {
        font-size: 1.125rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.25rem;
    }

    /* Legal pages responsive */
    .legal-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .legal-table {
        font-size: 0.875rem;
    }

    .legal-table th,
    .legal-table td {
        padding: 1rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
        margin-top: 2.5rem;
    }

    .legal-content ol,
    .legal-content ul {
        padding-left: 1.5rem;
    }
}
