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

:root {
    --sage: #B5C9C3;
    --sage-light: #d0dfdb;
    --sage-dark: #8fa89f;
    --charcoal: #2c3a4a;
    --charcoal-dark: #1e2a38;
    --charcoal-light: #3d5066;
    --white: #ffffff;
    --off-white: #f5f7f6;
    --text-dark: #1a2332;
    --text-muted: #4a5a6a;
    --accent-coral: #d9685e;
    --accent-green: #5a9a8a;
    --border: #d5ddd9;
    --shadow-sm: 0 1px 3px rgba(26, 35, 50, 0.08);
    --shadow-md: 0 4px 16px rgba(26, 35, 50, 0.10);
    --shadow-lg: 0 8px 32px rgba(26, 35, 50, 0.14);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

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

/* === Typography === */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    color: var(--charcoal);
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 34px;
    width: auto;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-dark);
}

.nav-cta {
    background: var(--charcoal);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
    background: var(--charcoal-light);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
}

.btn-primary:hover {
    background: var(--charcoal-light);
    border-color: var(--charcoal-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}

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

.btn-full {
    width: 100%;
}

/* === Hero === */
.hero {
    background: var(--sage);
    padding: 120px 0 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-bar {
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    background: var(--charcoal);
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    max-width: 640px;
}

.hero-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-green);
    margin-bottom: 16px;
}

.hero-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.hero-headline em {
    font-style: italic;
    color: var(--charcoal-light);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-logo-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-logo-img {
    width: 320px;
    max-width: 100%;
    margin-bottom: 24px;
    filter: invert(1);
}

.hero-logo-tagline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    max-width: 280px;
    line-height: 1.5;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    grid-column: 1 / -1;
    margin-top: 32px;
}

.hero-stat {
    background: var(--white);
    padding: 28px 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.hero-stat-number {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.4rem;
    color: var(--charcoal);
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-stat-label {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* === Sections === */
.section {
    padding: 100px 0;
}

.section-white {
    background: var(--white);
}

.section-sage {
    background: var(--sage);
}

.section-dark {
    background: var(--charcoal);
}

.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-green);
    margin-bottom: 16px;
}

.section-label-light {
    color: var(--sage);
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--text-dark);
    margin-bottom: 16px;
    max-width: 700px;
}

.section-title-light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 56px;
}

.section-subtitle-light {
    color: var(--sage-light);
}

/* === Problem Section === */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 56px;
}

.problem-card {
    background: var(--off-white);
    padding: 36px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    color: var(--charcoal);
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.problem-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Cost Highlight */
.cost-highlight {
    text-align: center;
    margin-bottom: 56px;
}

.cost-highlight-inner {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--charcoal);
    color: var(--white);
    padding: 48px 80px;
    border-radius: var(--radius-lg);
}

.cost-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    margin-bottom: 8px;
    font-weight: 700;
}

.cost-label {
    font-size: 1.1rem;
    color: var(--sage-light);
    margin-bottom: 8px;
}

.cost-source {
    font-size: 0.8rem;
    color: var(--sage-dark);
}

/* Wellbeing Comparison */
.wellbeing-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: start;
    background: var(--off-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.comparison-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.comparison-low h4 {
    color: var(--accent-coral);
}

.comparison-high h4 {
    color: var(--accent-green);
}

.comparison-stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.comparison-stat span {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    color: var(--text-dark);
    min-width: 60px;
    font-weight: 700;
}

.comparison-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
}

/* === Solution / Perks === */
.perks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.perk-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(6px);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.7);
    transition: transform 0.2s, box-shadow 0.2s;
}

.perk-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.perk-icon {
    color: var(--charcoal);
    margin-bottom: 16px;
}

.perk-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

.solution-benefits {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.benefit-item svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

/* === How It Works === */
.steps-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.step-card {
    flex: 1;
    padding: 32px 24px;
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--charcoal);
    color: var(--white);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.step-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.step-connector {
    width: 40px;
    height: 2px;
    background: var(--border);
    margin-top: 55px;
    flex-shrink: 0;
}

/* === Value Section === */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.value-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 40px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform 0.2s;
}

.value-card:hover {
    transform: translateY(-4px);
}

.value-card-highlight {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.04);
}

.value-card-highlight:hover {
    transform: scale(1.04) translateY(-4px);
}

.value-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    color: var(--sage);
    margin-bottom: 8px;
    font-weight: 700;
}

.value-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.value-detail {
    font-size: 0.88rem;
    color: var(--sage-dark);
    line-height: 1.6;
}

.value-roi {
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-roi p {
    font-size: 1.15rem;
    color: var(--sage-light);
    margin-bottom: 8px;
}

.value-roi strong {
    color: var(--white);
}

.value-source {
    font-size: 0.8rem;
    color: var(--sage-dark);
}

/* === Market Section === */
.market-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.market-stat {
    text-align: center;
    padding: 32px 16px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.market-stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.market-stat-label {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.differentiators h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 36px;
    color: var(--text-dark);
}

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

.diff-item {
    text-align: center;
    padding: 24px;
}

.diff-icon {
    color: var(--accent-green);
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.diff-item h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.diff-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* === Pricing === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

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

.pricing-card-featured {
    background: var(--charcoal);
    border-color: var(--charcoal);
    transform: scale(1.05);
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-card-featured .pricing-tier,
.pricing-card-featured .pricing-size,
.pricing-card-featured .pricing-price,
.pricing-card-featured .pricing-features li {
    color: var(--white);
}

.pricing-card-featured .pricing-price span {
    color: var(--sage-dark);
}

.pricing-card-featured .btn {
    background: var(--sage);
    color: var(--charcoal);
    border-color: var(--sage);
}

.pricing-card-featured .btn:hover {
    background: var(--sage-light);
    border-color: var(--sage-light);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-green);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-tier {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.pricing-size {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.pricing-price span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-left: 24px;
    position: relative;
}

.pricing-card-featured .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--accent-green);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5.5L4 7.5L8 3' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
}

/* === Contact === */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 16px;
}

.contact-info p {
    font-size: 1.05rem;
    color: var(--sage-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--sage);
    font-size: 0.95rem;
}

.contact-detail svg {
    color: var(--sage-dark);
    flex-shrink: 0;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--off-white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(90, 154, 138, 0.15);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: -8px;
}

/* === Footer === */
.footer {
    background: var(--charcoal-dark);
    padding: 48px 0 32px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.footer-logo-img {
    height: 28px;
    width: auto;
    filter: invert(1);
    margin-bottom: 4px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 8px;
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--sage-dark);
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

/* === Animations === */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Preserve scale on elements that use it */
.value-card-highlight.fade-in {
    transform: scale(1.04) translateY(24px);
}

.value-card-highlight.fade-in.visible {
    transform: scale(1.04) translateY(0);
}

.pricing-card-featured.fade-in {
    transform: scale(1.05) translateY(24px);
}

.pricing-card-featured.fade-in.visible {
    transform: scale(1.05) translateY(0);
}

/* === Responsive === */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-bg-bar {
        display: none;
    }

    .hero-logo-side {
        order: -1;
    }

    .hero-logo-img {
        filter: none;
        width: 240px;
    }

    .hero-logo-tagline {
        color: var(--text-muted);
    }

    .problem-grid,
    .perks-grid,
    .value-grid,
    .pricing-grid,
    .diff-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .steps-grid {
        flex-direction: column;
        gap: 0;
    }

    .step-connector {
        width: 2px;
        height: 32px;
        margin: 0 auto;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        grid-column: 1 / -1;
    }

    .wellbeing-comparison {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .comparison-divider {
        width: 100%;
        height: 1px;
    }
}

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

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 16px 24px 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        transition: transform 0.3s;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-cta {
        text-align: center;
        margin-top: 8px;
    }

    .hero {
        padding: 104px 0 56px;
        min-height: auto;
    }

    .hero-headline {
        font-size: 2.2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        text-align: center;
    }

    .section {
        padding: 64px 0;
    }

    .problem-grid,
    .perks-grid,
    .value-grid,
    .pricing-grid,
    .diff-grid,
    .market-stats {
        grid-template-columns: 1fr;
    }

    .pricing-card-featured {
        transform: none;
        order: -1;
    }

    .pricing-card-featured:hover {
        transform: translateY(-4px);
    }

    .value-card-highlight {
        transform: none;
    }

    .value-card-highlight:hover {
        transform: translateY(-4px);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cost-highlight-inner {
        padding: 36px 32px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 16px;
    }

    .solution-benefits {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}
