:root {
    --primary: #2d5a3d;
    --primary-dark: #1e3d29;
    --secondary: #e8a849;
    --accent: #4a7c59;
    --bg-light: #f9f7f4;
    --bg-dark: #1a1a1a;
    --text-dark: #2c2c2c;
    --text-light: #f5f5f5;
    --text-muted: #6b6b6b;
    --border: #e0ddd8;
    --card-bg: #ffffff;
    --shadow: rgba(0,0,0,0.08);
    --shadow-strong: rgba(0,0,0,0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

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

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

/* Header */
.site-header {
    background: var(--card-bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: #fff8e7;
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid #f0e0b8;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    color: var(--text-dark);
    font-size: 0.95rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.nav-link:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--primary-dark);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero-funnel {
    background-color: #2a4a3a;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    max-width: 700px;
    padding: 60px 24px;
}

.hero-badge {
    background: var(--secondary);
    color: var(--bg-dark);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.15;
    color: var(--text-light);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    max-width: 550px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary);
    color: var(--bg-dark);
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232,168,73,0.4);
}

/* Problem Section */
.section-problem {
    padding: 100px 0;
    background: var(--card-bg);
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.problem-text {
    flex: 1 1 500px;
}

.problem-image {
    flex: 1 1 400px;
    background-color: #d8e4dc;
    border-radius: 16px;
    overflow: hidden;
}

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

.section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-heading {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.25;
}

.problem-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 10px;
}

.problem-icon {
    width: 28px;
    height: 28px;
    background: #fde8e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #c53030;
    font-weight: 700;
}

.problem-item p {
    color: var(--text-dark);
    font-size: 1rem;
}

/* Story Section */
.section-story {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, #e8f0ea 100%);
}

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

.story-content .section-heading {
    font-size: 2rem;
    margin-bottom: 32px;
}

.story-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 24px;
}

.story-highlight {
    background: var(--card-bg);
    border-left: 4px solid var(--secondary);
    padding: 24px 28px;
    margin: 40px 0;
    text-align: left;
    border-radius: 0 12px 12px 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
}

/* Solution Section */
.section-solution {
    padding: 100px 0;
    background: var(--primary);
    color: var(--text-light);
}

.solution-header {
    text-align: center;
    margin-bottom: 60px;
}

.solution-header .section-label {
    color: var(--secondary);
}

.solution-header .section-heading {
    color: var(--text-light);
    font-size: 2.4rem;
}

.solution-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.solution-card {
    flex: 1 1 280px;
    max-width: 350px;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}

.solution-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.15);
}

.solution-icon {
    width: 64px;
    height: 64px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.solution-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.solution-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.7;
}

/* Benefits Section */
.section-benefits {
    padding: 100px 0;
    background: var(--card-bg);
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.benefits-visual {
    flex: 1 1 450px;
    position: relative;
}

.benefits-main-img {
    background-color: #c9d9cf;
    border-radius: 20px;
    overflow: hidden;
}

.benefits-main-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.benefits-floating {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--card-bg);
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 40px var(--shadow-strong);
    display: flex;
    align-items: center;
    gap: 14px;
}

.floating-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
}

.floating-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.benefits-content {
    flex: 1 1 450px;
}

.benefit-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: box-shadow 0.2s;
}

.benefit-item:hover {
    box-shadow: 0 4px 20px var(--shadow);
}

.benefit-check {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-light);
    font-weight: 700;
}

.benefit-text h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.benefit-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Testimonials */
.section-testimonials {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 320px;
    max-width: 400px;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px var(--shadow);
}

.testimonial-rating {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info h5 {
    font-size: 1rem;
    color: var(--text-dark);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Pricing Section */
.section-pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--card-bg) 0%, var(--bg-light) 100%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header .section-heading {
    font-size: 2.4rem;
}

.pricing-subtext {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 16px auto 0;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.pricing-card {
    flex: 1 1 300px;
    max-width: 380px;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 8px 30px var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.pricing-card.featured {
    border: 3px solid var(--primary);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--secondary);
    color: var(--bg-dark);
    padding: 6px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
}

.pricing-name {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
}

.price-currency {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.feature-check {
    color: var(--primary);
    font-weight: 700;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: var(--primary);
    color: var(--text-light);
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}

.pricing-cta:hover {
    background: var(--primary-dark);
}

/* Science Section */
.section-science {
    padding: 80px 0;
    background: var(--bg-dark);
    color: var(--text-light);
}

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

.science-content .section-label {
    color: var(--secondary);
}

.science-content .section-heading {
    color: var(--text-light);
    margin-bottom: 32px;
}

.science-text {
    font-size: 1.05rem;
    line-height: 1.9;
    opacity: 0.9;
    margin-bottom: 20px;
}

.citation-link {
    color: var(--secondary);
    font-weight: 600;
    transition: opacity 0.2s;
}

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

.references-list {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.references-list h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--secondary);
}

.references-list ol {
    list-style-position: inside;
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.8;
}

.references-list a {
    color: var(--secondary);
    word-break: break-word;
}

/* Form Section */
.section-form {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.form-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.form-info {
    flex: 1 1 400px;
    color: var(--text-light);
}

.form-info .section-heading {
    color: var(--text-light);
    font-size: 2.2rem;
}

.form-info p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 20px;
    line-height: 1.8;
}

.form-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.trust-icon {
    width: 24px;
    height: 24px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--bg-dark);
}

.form-container {
    flex: 1 1 450px;
}

.contact-form {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    padding: 16px 24px;
    background: var(--primary);
    color: var(--text-light);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.form-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

/* Footer */
.site-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 70px 0 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links {
    flex: 1 1 200px;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact {
    flex: 1 1 250px;
}

.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    opacity: 0.7;
}

.contact-icon {
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    opacity: 0.6;
    line-height: 1.8;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.6;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.9rem;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.footer-legal a:hover {
    opacity: 1;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    flex: 1 1 500px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cookie-text a {
    color: var(--secondary);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
}

.cookie-accept {
    background: var(--primary);
    color: var(--text-light);
}

.cookie-accept:hover {
    background: var(--primary-dark);
}

.cookie-reject {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-reject:hover {
    background: rgba(255,255,255,0.1);
}

/* Thanks Page */
.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8f0ea 100%);
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: var(--text-light);
}

.thanks-content h1 {
    font-size: 2.4rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.thanks-cta {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary);
    color: var(--text-light);
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s;
}

.thanks-cta:hover {
    background: var(--primary-dark);
}

/* Page Headers */
.page-header {
    background: var(--primary);
    color: var(--text-light);
    padding: 80px 24px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Pages */
.page-content {
    padding: 60px 0;
    background: var(--card-bg);
}

.page-content h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 40px 0 20px;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.page-content ul {
    margin: 16px 0 16px 24px;
    color: var(--text-muted);
    line-height: 1.8;
}

.page-content a {
    color: var(--primary);
}

/* About Page */
.about-intro {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.about-image {
    flex: 1 1 400px;
    background-color: #c9d9cf;
    border-radius: 16px;
    overflow: hidden;
}

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

.about-text {
    flex: 1 1 450px;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-values {
    padding: 80px 0;
    background: var(--card-bg);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    flex: 1 1 250px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    text-align: center;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--text-light);
}

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

.value-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Services Page */
.services-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 350px;
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-image {
    height: 200px;
    background-color: #c9d9cf;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.service-price .amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.service-price .period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.service-cta {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--text-light);
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s;
}

.service-cta:hover {
    background: var(--primary-dark);
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1 1 350px;
}

.contact-info h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.contact-info p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

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

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.detail-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.detail-text h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.detail-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.contact-form-wrapper {
    flex: 1 1 450px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 24px;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--secondary);
    color: var(--bg-dark);
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(232,168,73,0.4);
    transition: transform 0.2s;
}

.sticky-cta a:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 20px 0;
        gap: 8px;
    }

    .main-nav.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

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

    .section-heading {
        font-size: 1.8rem;
    }

    .pricing-header .section-heading {
        font-size: 2rem;
    }

    .benefits-floating {
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 600px) {
    .hero-funnel {
        min-height: 70vh;
    }

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

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

    .contact-form {
        padding: 28px 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
