/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: hsl(25, 25%, 15%);
    background-color: hsl(45, 20%, 97%);
    overflow-x: hidden;
}

/* Color Variables */
:root {
    --sage: hsl(85, 35%, 45%);
    --sage-light: hsl(85, 25%, 75%);
    --sage-dark: hsl(85, 45%, 35%);
    --earth: hsl(25, 75%, 55%);
    --earth-light: hsl(25, 50%, 75%);
    --gold: hsl(35, 80%, 55%);
    --cream: hsl(45, 40%, 95%);
    --charcoal: hsl(25, 25%, 15%);
    --muted: hsl(25, 10%, 50%);
    --white: #ffffff;
    --danger: hsl(0, 70%, 50%);
    --success: hsl(140, 60%, 45%);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0.5rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-hero {
    background: linear-gradient(135deg, var(--sage), var(--sage-dark));
    color: var(--white);
    border: 2px solid transparent;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 1.125rem;
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--earth), var(--earth-light));
    border-radius: 50px;
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-hero:hover::before {
    width: 100%;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.btn-outline {
    background: var(--white);
    color: var(--charcoal);
    border-color: hsl(45, 15%, 88%);
}

.btn-outline:hover {
    background: var(--cream);
    border-color: var(--sage);
}

.full-width {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 0 3rem;
}

.hero-bg-hp {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/hpbg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.12;
}

.hero-bg-dom {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/agenciesbg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.12;
}

.hero-bg-wl {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/whitelabelbg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.12;
}

.hero-bg-seo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/ranchstylebg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.12;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, hsla(85, 35%, 45%, 0.08), hsla(25, 75%, 55%, 0.08));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1100px;
    width: 100%;
    padding: 0 1.5rem;
}

.eyebrow {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--gold), var(--earth));
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--charcoal);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 5vw, 2.5rem);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--charcoal);
    font-weight: 500;
}

.trust-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--sage);
}

/* Section Styles */
section {
    padding: 4rem 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: clamp(1rem, 4vw, 2rem);
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Pain Points Section */
.pain-points {
    background: linear-gradient(135deg, hsla(0, 70%, 50%, 0.03), hsla(25, 75%, 55%, 0.03));
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.problem-card {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 2rem;
    border-left: 4px solid var(--danger);
    box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.problem-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
}

.problem-icon {
    flex-shrink: 0;
}

.problem-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--danger);
}

.problem-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.problem-content p {
    color: var(--muted);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Solution Section */
.solution {
    background-color: var(--cream);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.solution-card {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--sage);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.solution-card.highlight {
    border-left: 4px solid var(--success);
}

.solution-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px hsla(85, 35%, 45%, 0.2);
}

.solution-icon {
    flex-shrink: 0;
}

.solution-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--success);
}

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

.solution-content p {
    color: var(--muted);
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.benefit-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: hsla(140, 60%, 45%, 0.1);
    color: var(--success);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-top: 0.5rem;
}

/* How It Works */
.how-it-works {
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    justify-content: center;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--gold), var(--earth));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.step-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ROI Calculator Section */
.roi-calculator {
    background: linear-gradient(135deg, hsla(85, 35%, 45%, 0.05), hsla(25, 75%, 55%, 0.05));
    padding: 5rem 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.comparison-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 25px -4px rgba(0, 0, 0, 0.12);
    position: relative;
}

.comparison-card.traditional {
    border: 2px solid hsl(0, 0%, 90%);
}

.comparison-card.ranch {
    border: 3px solid var(--sage);
}

.comparison-header {
    background: var(--cream);
    padding: 1.5rem;
    text-align: center;
}

.comparison-card.ranch .comparison-header {
    background: linear-gradient(135deg, hsla(85, 35%, 45%, 0.1), hsla(25, 75%, 55%, 0.1));
}

.comparison-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.comparison-label {
    font-size: 0.875rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cost-breakdown {
    padding: 2rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid hsl(0, 0%, 95%);
}

.cost-item:last-child {
    border-bottom: none;
}

.cost-item.subtotal {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--charcoal);
    border-bottom: none;
}

.cost-item.limitation {
    background: hsla(0, 0%, 0%, 0.02);
    padding: 0.75rem 1rem;
    margin: 1rem -2rem 0;
    border-bottom: none;
}

.cost-item.highlight-item {
    font-weight: 600;
    color: var(--sage-dark);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.cost {
    font-weight: 600;
    color: var(--charcoal);
}

.cost-total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--danger);
}

.comparison-card.ranch .cost-total {
    color: var(--sage-dark);
}

.cost-features {
    margin-top: 1rem;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--muted);
}

.feature-check svg {
    width: 1rem;
    height: 1rem;
    color: var(--success);
    flex-shrink: 0;
}

.comparison-result {
    padding: 1.5rem;
    text-align: center;
    font-size: 1.125rem;
}

.comparison-result.negative {
    background: hsla(0, 70%, 50%, 0.1);
    color: var(--danger);
}

.comparison-result.positive {
    background: hsla(140, 60%, 45%, 0.1);
    color: var(--success);
}

.roi-summary {
    background: var(--white);
    border-radius: 1rem;
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 6px 30px -6px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.roi-summary > p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--charcoal);
}

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

.roi-stat {
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 0.75rem;
}

.roi-stat.highlight {
    background: hsla(85, 35%, 45%, 0.1);
    border: 2px solid var(--sage);
}

.roi-stat.positive {
    background: hsla(140, 60%, 45%, 0.1);
    border: 2px solid var(--success);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
}

.stat-note {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.25rem;
    font-weight: 400;
}

.roi-stat.positive .stat-value {
    color: var(--success);
}

/* Features Section */
.features {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: hsl(45, 25%, 98%);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    border-color: var(--sage);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px hsla(85, 35%, 45%, 0.2);
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* Pricing Section */
.pricing {
    background-color: var(--cream);
    padding: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 25px -4px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px -8px rgba(0, 0, 0, 0.2);
}

.pricing-card.popular {
    border: 3px solid var(--sage);
}

.popular-badge {
    background: linear-gradient(135deg, var(--sage), var(--sage-dark));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.popular-badge svg {
    width: 1rem;
    height: 1rem;
}

.pricing-card.secondary {
    border: 3px solid var(--gold);
}

.secondary-badge {
    background: linear-gradient(135deg, var(--gold), var(--earth));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.secondary-badge svg {
    width: 1rem;
    height: 1rem;
}

.pricing-header {
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.sites {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1;
}

.amount-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
}

.period {
    font-size: 1.25rem;
    color: var(--muted);
}

.price-per-site {
    font-size: 1rem;
    color: var(--muted);
}

.pricing-features {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--charcoal);
    width: 280px;
}

.pricing-feature svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--sage);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing-feature.highlighted {
    background: hsla(85, 35%, 45%, 0.05);
    padding: 0.75rem 0.75rem;
    margin: 0 -0.75rem;
    border-left: 3px solid var(--sage);
}

.pricing-content {
    padding: 0 1.5rem 2rem;
}

.pricing-footer {
    text-align: center;
    margin-top: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-footer p {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.pricing-footer a {
    color: var(--sage-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.pricing-footer a:hover {
    color: var(--earth);
    text-decoration: underline;
}

.guarantee {
    font-weight: 600;
    color: var(--success);
    background: hsla(140, 60%, 45%, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    display: inline-block;
    margin-top: 1rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--sage), var(--sage-dark));
    color: var(--white);
    padding: 5rem 0;
}

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

.final-cta h2 {
    color: var(--white);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.final-cta .btn-hero {
    background: var(--white);
    color: var(--sage-dark);
}

.final-cta .btn-hero::before {
    background: var(--earth);
}

.final-cta .btn-hero:hover {
    color: var(--white);
}

.final-cta .btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.final-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.cta-subtext {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.cta-subtext a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
}

.cta-subtext a:hover {
    color: var(--earth-light);
}

/* Footer */
.footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--sage-light);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Footer logo (replaces footer-contact links) */
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-logo-img {
  display: block;
  width: 140px;
  max-width: 70%;
  height: auto;
}


.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--sage-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--white);
}

.contact-link svg {
    width: 1rem;
    height: 1rem;
}

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

.footer-copyright p {
    color: var(--sage-light);
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid hsla(85, 35%, 45%, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--sage-light);
    font-size: 0.875rem;
}

.footer-bottom p a {
    color: var(--sage-light) !important;
    text-decoration: none;
}

.footer-bottom p a:hover {
    color: var(--white) !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .roi-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
    
    .hero {
        min-height: 80vh;
        padding: 3rem 0 2rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .problems-grid,
    .solution-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Fix problem cards for mobile - smaller icons */
    .problem-card {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .problem-icon svg {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    /* Fix solution cards for mobile - smaller icons */
    .solution-card {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .solution-icon svg {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn,
    .cta-buttons .btn {
        width: 100%;
        max-width: 400px;
    }
    
    .roi-calculator {
        padding: 3rem 0;
    }
    
    .pricing {
        padding: 3rem 0;
    }
    
    .final-cta {
        padding: 3rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .btn-hero {
        padding: 1.125rem 2rem;
        font-size: 1.125rem;
    }
    
    .step-card,
    .feature-card {
        padding: 1.5rem;
    }
    
    .comparison-card {
        margin: 0 -0.5rem;
    }
    
    .cost-breakdown {
        padding: 1.5rem;
    }
    
    .roi-summary {
        padding: 1.5rem;
    }
    
    .pricing-card {
        max-width: 100%;
        padding: 0;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

/* Desktop Enhancements */
@media (min-width: 1200px) {
    section {
        padding: 5rem 0;
    }
    
    .hero {
        min-height: 95vh;
    }
    
    .roi-calculator {
        padding: 6rem 0;
    }
}

/* ===========================================
   FAQ PAGE STYLES
   =========================================== */

.faq {
    padding: 3rem 0;
    min-height: calc(100vh - 80px);
}

.faq-index {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto 3rem;
    columns: 2;
    column-gap: 2rem;
}

.faq-index a {
    color: var(--sage-dark);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    font-size: 1.5rem;
    line-height: 1.4;
    break-inside: avoid;
    width: 100%;
}

.faq-index a:hover {
    color: var(--earth);
    transform: translateX(5px);
}

.faq-items {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.faq-items h3 {
    color: var(--sage-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--cream);
    font-size: 1.75rem;
    position: relative;
    scroll-margin-top: 100px;
}

.faq-items h3:first-child {
    margin-top: 0;
    border-top: none;
}

.faq-items h3::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, var(--sage), var(--earth));
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-items h3:hover::before {
    opacity: 1;
}

.faq-items p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.faq-disclaimer {
    background: linear-gradient(135deg, hsla(85, 35%, 45%, 0.05), hsla(25, 75%, 55%, 0.05));
    border-left: 4px solid var(--earth);
    border-radius: 0.75rem;
    padding: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-disclaimer p {
    color: var(--charcoal);
    line-height: 1.7;
    margin: 0;
}

.faq-disclaimer strong {
    color: var(--sage-dark);
    font-weight: 600;
}

.faq-disclaimer em {
    color: var(--earth);
    font-style: normal;
    font-weight: 500;
}

/* ===========================================
   PRIVACY/TERMS PAGE STYLES
   =========================================== */

.privacy {
    padding: 3rem 0;
    min-height: calc(100vh - 80px);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content h3 {
    color: var(--sage-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--cream);
    font-size: 1.5rem;
    position: relative;
    scroll-margin-top: 100px;
}

.privacy-content h3:first-child {
    margin-top: 0;
    border-top: none;
}

.privacy-content p,
.privacy-content ul {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.privacy-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

/* ===========================================
   RANCH-STYLE SEO PAGE STYLES
   =========================================== */

.quote-section {
    background: linear-gradient(135deg, hsla(85, 35%, 45%, 0.08), hsla(25, 75%, 55%, 0.08));
    padding: 5rem 0;
}

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

.quote-icon {
    width: 4rem;
    height: 4rem;
    color: var(--sage);
    margin: 0 auto 2rem;
    opacity: 0.3;
}

.quote-content blockquote {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.quote-content cite {
    font-size: 1.125rem;
    color: var(--muted);
    font-style: normal;
}

.what-it-is {
    background: var(--white);
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.philosophy-text {
    font-size: 1.05rem;
    color: var(--charcoal);
    line-height: 1.8;
}

.philosophy-text p {
    margin-bottom: 1.5rem;
}

.philosophy-principles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.principle-card {
    background: var(--cream);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.principle-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.1);
}

.principle-icon {
    flex-shrink: 0;
    padding: 0.75rem;
    background: var(--white);
    border-radius: 0.5rem;
}

.principle-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--sage);
}

.principle-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.principle-content p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.why-it-works {
    background: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.why-card {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.12);
}

.why-icon {
    flex-shrink: 0;
    padding: 1rem;
    background: hsla(85, 35%, 45%, 0.1);
    border-radius: 0.75rem;
}

.why-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--sage);
}

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

.why-content p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.what-its-not {
    background: var(--white);
}

.not-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.not-card {
    background: var(--cream);
    border-radius: 0.75rem;
    padding: 2rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    border-left: 4px solid hsl(0, 60%, 50%);
    transition: all 0.3s ease;
}

.not-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.12);
}

.not-icon {
    flex-shrink: 0;
}

.not-icon svg {
    width: 2rem;
    height: 2rem;
    color: hsl(0, 60%, 50%);
}

.not-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.not-content p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.timeline {
    background: linear-gradient(135deg, hsla(85, 35%, 45%, 0.05), hsla(25, 75%, 55%, 0.05));
    padding: 5rem 0;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.timeline-card {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--sage);
}

.timeline-card.highlight {
    border-top: 4px solid var(--earth);
    background: linear-gradient(135deg, hsla(25, 75%, 55%, 0.05), hsla(85, 35%, 45%, 0.05));
}

.timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
}

.timeline-period {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--sage);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-card.highlight .timeline-period {
    background: var(--earth);
}

.timeline-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.timeline-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.timeline-metric {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sage-dark);
    padding: 0.75rem 1rem;
    background: hsla(85, 35%, 45%, 0.1);
    border-radius: 0.5rem;
}

.timeline-note {
    background: var(--white);
    border-left: 4px solid var(--earth);
    border-radius: 0.75rem;
    padding: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-note p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

.timeline-note strong {
    color: var(--charcoal);
}

.best-for {
    background: var(--cream);
}

.best-for-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.best-for-card {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.best-for-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px hsla(85, 35%, 45%, 0.2);
}

.best-for-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--sage-dark);
}

.best-for-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* ===========================================
   RESPONSIVE - FAQ
   =========================================== */

@media (max-width: 768px) {
    .faq-index {
        columns: 1;
        padding: 1.5rem;
    }
    
    .faq-items {
        padding: 0 1rem;
    }
    
    .faq-items h3 {
        font-size: 1.125rem;
        scroll-margin-top: 80px;
    }
    
    .faq-items h3::before {
        display: none;
    }
    
    .faq-items p {
        padding-left: 0;
        font-size: 0.95rem;
    }
    
    .faq-disclaimer {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }
    
    .privacy-content {
        padding: 0 1rem;
    }

    .privacy-content h3 {
        font-size: 1.125rem;
        scroll-margin-top: 80px;
    }
    
    .privacy-content p {
        font-size: 0.95rem;
    }
    
    .philosophy-content {
        grid-template-columns: 1fr;
    }
    
    .not-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-grid {
        grid-template-columns: 1fr;
    }
    
    .best-for-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 2rem 0;
    }
    
    .faq-index a {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .faq-items h3 {
        margin-top: 2rem;
    }
    
    .privacy {
        padding: 2rem 0;
    }
}

/* ===========================================
   HOMEPAGE SPECIFIC STYLES
   =========================================== */

/* Check Icon (used on homepage) */
.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--sage);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* What We Do / Services Section */
.what-we-do {
    background-color: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

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

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

.service-card {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px -4px hsla(25, 25%, 15%, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 30px -10px hsla(85, 35%, 45%, 0.2);
    transform: translateY(-2px);
}

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

.service-card h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--muted);
    margin: 0;
}

/* Who It's For / Audience Section */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

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

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

.audience-card {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px -4px hsla(25, 25%, 15%, 0.1);
    transition: all 0.3s ease;
}

.audience-card:hover {
    box-shadow: 0 10px 30px -10px hsla(85, 35%, 45%, 0.2);
    transform: translateY(-2px);
}

.audience-icon {
    width: 3rem;
    height: 3rem;
    color: var(--sage);
    margin: 0 auto 1rem;
    transition: color 0.3s ease;
}

.audience-card:hover .audience-icon {
    color: var(--earth);
}

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

.audience-card p {
    font-size: 0.875rem;
    color: var(--muted);
    margin: 0;
}

/* Why Content Ranch / Reasons Section */
.why-content-ranch {
    background: linear-gradient(135deg, hsla(85, 35%, 45%, 0.05), hsla(25, 75%, 55%, 0.05));
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

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

.reason-card {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 20px -4px hsla(25, 25%, 15%, 0.1);
    transition: all 0.3s ease;
}

.reason-card:hover {
    box-shadow: 0 10px 30px -10px hsla(85, 35%, 45%, 0.2);
    transform: translateY(-2px);
}

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

.reason-icon {
    padding: 0.75rem;
    background: hsla(85, 35%, 45%, 0.1);
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.reason-card:hover .reason-icon {
    background: hsla(85, 35%, 45%, 0.2);
}

.reason-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--sage);
}

.reason-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.reason-card p {
    color: var(--muted);
    margin: 0;
}

/* Included Features Section (homepage hero area) */
.included-features {
    max-width: 64rem;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.included-features .feature-card {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 20px -4px hsla(25, 25%, 15%, 0.1);
}

.included-features .feature-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

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

@media (min-width: 768px) {
    .included-features .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .included-features .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item .check-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0;
}

/* Single Centered Pricing Card */
.pricing-single {
    max-width: 450px;
    margin: 0 auto;
}

.pricing-single .pricing-card {
    width: 100%;
}

@media (max-width: 480px) {
    .pricing-single {
        max-width: 100%;
    }
}

.pricing-note {
    font-size: 0.875rem;
    color: var(--muted);
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--cream);
}

/* ===========================================
   WHITE LABEL PAGE STYLES
   =========================================== */

/* Gold step numbers for white label */
.step-number.gold {
    background: linear-gradient(135deg, var(--gold, hsl(35, 80%, 55%)), var(--earth));
}

/* Four column steps grid */
.steps-grid.four-col {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
}

@media (max-width: 1024px) {
    .steps-grid.four-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Opportunity Section */
.opportunity {
    background: var(--white);
}

.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

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

.opportunity-card {
    background: var(--cream);
    border-radius: 0.75rem;
    padding: 2rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.opportunity-card.highlight {
    border-left: 4px solid var(--earth);
}

.opportunity-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.12);
}

.opportunity-icon {
    flex-shrink: 0;
    padding: 0.75rem;
    background: var(--white);
    border-radius: 0.5rem;
}

.opportunity-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--earth);
}

.opportunity-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.opportunity-content p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* Benefits Grid */
.what-you-get {
    background: var(--cream);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

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

.benefit-card {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    flex-shrink: 0;
    padding: 0.5rem;
    background: hsla(85, 35%, 45%, 0.1);
    border-radius: 0.5rem;
}

.benefit-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--sage);
}

.benefit-content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* Pricing footer */
.pricing-footer {
    text-align: center;
    margin-top: 2rem;
    color: var(--muted);
}

.pricing-footer p {
    margin-bottom: 0.5rem;
}

.pricing-footer a {
    color: var(--sage-dark);
    text-decoration: none;
}

.pricing-footer a:hover {
    color: var(--earth);
}

/* Why Number Circles (ranch-style page) */
.why-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--gold), var(--earth));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* ===========================================
   WHITE LABEL PAGE - GOLD ACCENT STYLES
   =========================================== */

/* WL Benefits Section */
.wl-benefits {
    background: var(--cream);
    padding: 5rem 0;
}

.wl-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .wl-benefits-grid {
        grid-template-columns: 1fr;
    }
}

.wl-benefit-card {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 2rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    border-left: 4px solid var(--gold);
    box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.wl-benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.12);
}

.wl-benefit-icon {
    flex-shrink: 0;
    padding: 0.75rem;
    background: hsla(35, 80%, 55%, 0.1);
    border-radius: 0.5rem;
}

.wl-benefit-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--gold);
}

.wl-benefit-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.wl-benefit-content p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* WL Audience Section */
.wl-audience {
    background: var(--white);
    padding: 5rem 0;
}

.wl-audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.wl-audience-card {
    background: var(--cream);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.wl-audience-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.12);
}

.wl-audience-icon {
    width: 3rem;
    height: 3rem;
    color: var(--gold);
    margin: 0 auto 1rem;
}

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

.wl-audience-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* WL Included Section */
.wl-included {
    background: var(--cream);
    padding: 5rem 0;
}

.wl-included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

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

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

.wl-included-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.wl-included-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold);
    flex-shrink: 0;
}

/* Four column steps grid */
.steps-grid.four-col {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
}

@media (max-width: 1024px) {
    .steps-grid.four-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

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