:root {
    --primary: #1e4d2b;
    --primary-light: #2d6a3f;
    --primary-dark: #143620;
    --secondary: #f4a524;
    --secondary-light: #f7b84d;
    --accent: #e8f5ec;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #717171;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --bg-cream: #f9f7f4;
    --border-light: #e5e5e5;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
    --radius-small: 6px;
    --radius-medium: 12px;
    --radius-large: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

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;
}

.ad-disclosure {
    background-color: var(--text-dark);
    color: var(--bg-white);
    font-size: 12px;
    padding: 8px 0;
    text-align: center;
}

.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    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: 22px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary);
}

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

.nav-desktop a {
    color: var(--text-medium);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-desktop a:hover {
    color: var(--primary);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-white);
    z-index: 200;
    flex-direction: column;
    padding: 80px 24px 40px;
}

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

.nav-mobile a {
    font-size: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-dark);
}

.nav-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-dark);
}

.hero-funnel {
    background-color: var(--primary);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-funnel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: var(--primary-dark);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--bg-white);
    max-width: 600px;
}

.hero-eyebrow {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--text-dark);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 36px;
}

.hero-image-container {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 550px;
    z-index: 1;
    background-color: var(--primary-dark);
    border-radius: var(--radius-large);
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--radius-small);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--text-dark);
}

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

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
}

.btn-outline:hover {
    background-color: var(--bg-white);
    color: var(--primary);
}

.btn-dark {
    background-color: var(--primary);
    color: var(--bg-white);
}

.btn-dark:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

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

.section {
    padding: 100px 0;
}

.section-alt {
    background-color: var(--bg-cream);
}

.section-dark {
    background-color: var(--primary);
    color: var(--bg-white);
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
}

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

.section-header .section-subtitle {
    margin: 0 auto;
}

.problem-section {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-white) 100%);
}

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

.problem-content {
    flex: 1;
    min-width: 300px;
}

.problem-visual {
    flex: 1;
    min-width: 300px;
    background-color: var(--accent);
    border-radius: var(--radius-large);
    overflow: hidden;
}

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

.problem-list {
    list-style: none;
    margin-top: 32px;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

.problem-list li:last-child {
    border-bottom: none;
}

.problem-icon {
    width: 24px;
    height: 24px;
    background-color: #ffebe6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #d94c4c;
    font-size: 14px;
}

.story-section {
    position: relative;
}

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

.story-block {
    background-color: var(--bg-white);
    border-left: 4px solid var(--primary);
    padding: 32px 40px;
    margin-bottom: 40px;
    border-radius: 0 var(--radius-medium) var(--radius-medium) 0;
    box-shadow: var(--shadow-soft);
}

.story-block p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
}

.story-block p:first-of-type::first-letter {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    float: left;
    line-height: 1;
    padding-right: 12px;
}

.insight-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 48px;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    border-radius: var(--radius-medium);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--secondary);
}

.insight-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.insight-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.insight-text {
    color: var(--text-light);
    font-size: 15px;
}

.trust-section {
    background-color: var(--primary);
    color: var(--bg-white);
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
}

.trust-content {
    flex: 1.2;
    min-width: 320px;
}

.trust-content .section-subtitle {
    color: rgba(255,255,255,0.85);
}

.trust-stats {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-stat {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 24px;
    background-color: rgba(255,255,255,0.1);
    border-radius: var(--radius-medium);
}

.trust-stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary);
}

.trust-stat-label {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 8px;
}

.testimonials-section {
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    border-radius: var(--radius-medium);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.testimonial-quote {
    font-size: 48px;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 16px;
    left: 24px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 24px;
    padding-top: 20px;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary);
}

.testimonial-name {
    font-weight: 600;
    font-size: 15px;
}

.testimonial-role {
    color: var(--text-light);
    font-size: 14px;
}

.benefits-section {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--accent) 100%);
}

.benefits-wrapper {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.benefit-row {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
}

.benefit-row:nth-child(even) {
    flex-direction: row-reverse;
}

.benefit-content {
    flex: 1;
    min-width: 300px;
}

.benefit-image {
    flex: 1;
    min-width: 300px;
    background-color: var(--primary-light);
    border-radius: var(--radius-large);
    overflow: hidden;
}

.benefit-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.benefit-tag {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.benefit-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.benefit-text {
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.7;
}

.pricing-section {
    padding: 120px 0;
}

.pricing-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

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

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: var(--bg-white);
    border-radius: var(--radius-large);
    padding: 40px 32px;
    box-shadow: var(--shadow-medium);
    position: relative;
    border: 2px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

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

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

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.pricing-desc {
    color: var(--text-light);
    font-size: 14px;
    text-align: center;
    margin-bottom: 24px;
}

.pricing-amount {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-currency {
    font-size: 20px;
    font-weight: 600;
    vertical-align: top;
}

.pricing-value {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.pricing-period {
    color: var(--text-light);
    font-size: 14px;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 15px;
}

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

.pricing-check {
    width: 20px;
    height: 20px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 12px;
    flex-shrink: 0;
}

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

.form-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
}

.form-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 64px;
    align-items: center;
}

.form-content {
    flex: 1;
    min-width: 300px;
}

.form-content .section-subtitle {
    color: rgba(255,255,255,0.85);
}

.form-container {
    flex: 1;
    min-width: 320px;
    background-color: var(--bg-white);
    border-radius: var(--radius-large);
    padding: 40px;
    color: var(--text-dark);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-input,
.form-select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-small);
    font-size: 16px;
    transition: border-color 0.2s ease;
    background-color: var(--bg-white);
}

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

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a4a4a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-submit {
    width: 100%;
    margin-top: 8px;
}

.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-light);
    padding: 16px 24px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 90;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.cta-sticky.visible {
    display: flex;
}

.cta-sticky-text {
    font-weight: 600;
    font-size: 15px;
}

.cta-sticky .btn {
    padding: 12px 24px;
    font-size: 14px;
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 64px 0 32px;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col:first-child {
    flex: 2;
    min-width: 280px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.7;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--bg-white);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: color 0.2s ease;
}

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

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

.footer-copyright {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

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

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.footer-legal a:hover {
    color: var(--secondary);
}

.disclaimer {
    background-color: var(--bg-light);
    padding: 48px 0;
    border-top: 1px solid var(--border-light);
}

.disclaimer-text {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.references {
    background-color: var(--bg-cream);
    padding: 48px 0;
}

.references-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.references-list {
    list-style: none;
}

.references-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}

.references-list li:last-child {
    border-bottom: none;
}

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

.references-list a:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 280px;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border-radius: var(--radius-small);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.cookie-accept {
    background-color: var(--secondary);
    color: var(--text-dark);
}

.cookie-accept:hover {
    background-color: var(--secondary-light);
}

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

.cookie-reject:hover {
    border-color: var(--bg-white);
}

.page-header {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 80px 0;
    text-align: center;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.content-section {
    padding: 80px 0;
}

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

.content-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--primary);
}

.content-text h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 32px 0 16px;
}

.content-text p {
    margin-bottom: 20px;
    color: var(--text-medium);
    line-height: 1.8;
}

.content-text ul {
    margin: 20px 0;
    padding-left: 24px;
}

.content-text ul li {
    margin-bottom: 12px;
    color: var(--text-medium);
}

.about-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text {
    flex: 1.2;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 280px;
    background-color: var(--accent);
    border-radius: var(--radius-large);
    overflow: hidden;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    flex: 1;
    min-width: 260px;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: var(--radius-medium);
}

.value-icon {
    width: 56px;
    height: 56px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--bg-white);
    font-size: 24px;
}

.value-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.value-text {
    color: var(--text-light);
    font-size: 15px;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: var(--bg-white);
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 200px;
    background-color: var(--accent);
    overflow: hidden;
}

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

.service-content {
    padding: 28px;
}

.service-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-medium);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

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

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-form-wrapper {
    flex: 1.2;
    min-width: 320px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 17px;
    font-weight: 500;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}

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

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

.thanks-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.thanks-text {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.7;
}

.thanks-service {
    background-color: var(--bg-light);
    padding: 20px 32px;
    border-radius: var(--radius-medium);
    margin-bottom: 32px;
    display: inline-block;
}

.thanks-service-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.thanks-service-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
}

@media (max-width: 900px) {
    .nav-desktop {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-image-container {
        display: none;
    }

    .hero-funnel::before {
        display: none;
    }

    .section-title {
        font-size: 32px;
    }

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

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

    .cta-sticky {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .section {
        padding: 64px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 15px;
    }

    .footer-grid {
        flex-direction: column;
    }

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

    .footer-legal {
        justify-content: center;
    }
}
