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

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    color: #0F172A;
    background: #F8FAFC;
    font-family: 'Montserrat', sans-serif;
}

.main {
    min-height: 100vh;
    background: #F8FAFC;
}

.container {
    max-width: 952px;
    margin: 0 auto;
    background: #F8FAFC;
    border-radius: 45.24px;
    overflow: visible;
    position: relative;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    border-radius: 0 0 37.02px 37.02px;
    overflow: visible;
}

.hero-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    background-color: #F8FAFC;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
}

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

.logo h1 {
    font-family: 'Acme', sans-serif;
    font-size: 20px;
    line-height: 1.1em;
    color: #0F172A;
}

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

.nav-btn {
    padding: 10.58px 21.16px;
    border-radius: 31.73px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 9.26px;
    line-height: 1.3em;
    letter-spacing: 0.5%;
    text-transform: uppercase;
    color: #0F172A;
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.nav-btn:hover {
    opacity: 0.8;
}

.nav-btn {
    text-decoration: none;
}

a.nav-btn {
    display: inline-block;
}

.btn-outline {
    width: 132.22px;
    height: 37.02px;
    padding: 10.58px 21.16px;
    border-radius: 31.73px;
    border: 1px solid #5e8123;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 10.58px;
    line-height: 1.3em;
    letter-spacing: 0.5%;
    text-transform: uppercase;
    color: #5e8123;
    background: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #5e8123;
    color: white;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.telegram-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #5e8123;
    color: #5e8123;
    text-decoration: none;
    transition: all 0.3s;
    flex-shrink: 0;
}

.telegram-btn:hover {
    background: #5e8123;
    color: white;
}

.telegram-btn svg {
    width: 16px;
    height: 16px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 79.33px 79.33px 105.78px;
    max-width: 512px;
}

.hero-heading {
    display: flex;
    flex-direction: column;
    gap: 10.58px;
}

.hero-heading h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: 26.66px;
    line-height: 1.1em;
    color: #0F172A;
}

.hero-heading h1 .highlight-yellow {
    background-color: #5e8123;
    color: white;
    padding: 1px 4px;
    border-radius: 4px;
    line-height: 1.2em;
}

.hero-heading p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 13.22px;
    line-height: 1.5em;
    color: #475569;
    max-width: 448px;
}

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

.btn-primary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 52.89px;
    background: #5e8123;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    opacity: 0.9;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.input {
    width: 100%;
    height: 48px;
    padding: 10px 20px;
    border-radius: 26.44px;
    background: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #1E293B;
    border: 2px solid #E2E8F0;
    outline: none;
    transition: all 0.3s;
}

.input::placeholder {
    color: #64748B;
}

.input:focus {
    border-color: #5e8123;
    box-shadow: 0 0 0 3px rgba(94, 129, 35, 0.1);
}

select.input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.hero-image {
    position: absolute;
    right: 79.33px;
    top: 87px;
    width: 379.51px;
    height: 379.09px;
    z-index: 20;
    pointer-events: none;
    border-radius: 30px !important;
    overflow: hidden !important;
    background: transparent;
}

.hero-image img {
    width: 100%;
    height: calc(100% + 180px);
    object-fit: cover;
    object-position: center -70px;
    border-radius: 30px !important;
    display: block;
    -webkit-border-radius: 30px !important;
    -moz-border-radius: 30px !important;
}

.hero-image-caption {
    position: absolute;
    right: 79.33px;
    top: 476px;
    width: 379.51px;
    z-index: 20;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-image-caption p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 11px;
    line-height: 1.5em;
    color: #475569;
    margin: 0;
    padding-top: 16px;
}

.signature-image {
    width: 150px;
    height: auto;
    filter: invert(1);
    opacity: 0.9;
    margin-top: -60px;
    margin-left: 250px;
}

/* Difficulties Section */
.difficulties {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 64px;
}

.difficulties h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 26.44px;
    line-height: 1.2em;
    text-align: center;
    color: #0F172A;
    max-width: 768px;
}

.difficulties-grid {
    display: flex;
    gap: 16px;
    width: 100%;
}

.difficulty-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border: 1px solid #64748B;
    border-radius: 26.44px;
    background: white;
    transition: all 0.3s;
}

.difficulty-card:hover {
    border-color: #5e8123;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.difficulty-number {
    font-family: 'Angry', sans-serif;
    font-size: 18px;
    line-height: 1.4em;
    background-color: #5e8123;
    color: white;
    font-weight: 700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.difficulty-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5em;
    color: #5e8123;
}

.difficulty-card p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4em;
    color: #475569;
}

/* Services Section */
.services {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 16px;
    margin-bottom: 0;
}

.approach {
    margin-bottom: 0;
    padding-bottom: 0;
}

.services-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 42.31px;
    line-height: 1.1em;
    text-transform: uppercase;
    color: #94A3B8;
    text-align: center;
    padding: 32px 16px;
}

.services-list {
    display: flex;
    flex-direction: column;
    border-left: 2px solid white;
    border-radius: 37px;
    overflow: hidden;
}

.service-item {
    display: flex;
    gap: 32px;
    padding: 40px 48px;
    background: #5e8123;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s;
}

.service-item:hover {
    background: #1a2e0f;
}

.service-item svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.service-item > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.service-item h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 26.44px;
    line-height: 1.2em;
    color: white;
}

.service-item p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4em;
    color: rgba(255, 255, 255, 0.9);
}

.service-toggle {
    align-self: flex-start;
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    color: #F8FAFC;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

.service-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
}

.service-text {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 8px;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.service-item.is-open .service-text {
    max-height: 600px;
    opacity: 1;
}

.service-cta {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px 64px;
    background: #B1B1B1;
    box-shadow: 13.22px 13.22px 26.44px rgba(112, 129, 136, 0.2);
}

.service-cta h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 24px;
    line-height: 1.2em;
    color: white;
    flex-shrink: 0;
}

.btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 31.73px;
    border: 2px solid #F8FAFC;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: #F8FAFC;
    background: none;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-cta:hover {
    background: #F8FAFC;
    color: #5e8123;
}

/* Pricing Section */
.pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    gap: 48px;
    padding: 64px;
}

.pricing h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 26.44px;
    line-height: 1.2em;
    text-align: center;
    color: #0F172A;
}

.pricing-grid {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.pricing-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border: 2px solid #64748B;
    border-radius: 26.44px;
    background: white;
    transition: all 0.3s;
    height: auto;
}

.pricing-btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

.pricing-card:hover {
    border-color: #5e8123;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.pricing-card-featured {
    background: linear-gradient(135deg, #5e8123 0%, #1a2e0f 100%);
    border-color: #5e8123;
}

.pricing-card-featured .price,
.pricing-card-featured h3,
.pricing-card-featured p,
.pricing-card-featured p strong {
    color: white !important;
}

.pricing-card-featured h3 {
    background: white !important;
    color: #5e8123 !important;
}

.pricing-card-featured:hover {
    background: linear-gradient(135deg, #4a6b1a 0%, #0f1f08 100%);
    border-color: #4a6b1a;
}

.pricing-card-featured .btn-primary {
    background: white;
    color: #5e8123;
    border-color: white;
}

.pricing-card-featured .btn-primary:hover {
    background: #F8FAFC;
    color: #4a6b1a;
}

.price {
    font-family: 'Aclonica', sans-serif;
    font-size: 24px;
    line-height: 1.4em;
    color: #5e8123;
}

.pricing-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5em;
    color: white;
    background: #5e8123;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
    width: fit-content;
}

.pricing-card p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2em;
    color: #475569;
    white-space: pre-line;
    margin: 0;
}

/* Approach Section */
.approach {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 0;
    padding-bottom: 0;
}

.approach .services-list {
    border-left: 2px solid #5e8123;
}

.approach-item {
    display: flex;
    gap: 32px;
    padding: 40px 48px;
    background: transparent;
    border: 2px solid #5e8123;
    border-bottom: none;
    transition: all 0.3s;
}

.approach-item:last-child {
    border-bottom: 2px solid #5e8123;
    border-radius: 0 0 37px 37px;
}

.approach-item:first-child {
    border-radius: 37px 37px 0 0;
}

.approach-item:hover {
    border-color: #1a2e0f;
    background: rgba(94, 129, 35, 0.05);
}

.approach-item svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.approach-item > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.approach-item h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 26.44px;
    line-height: 1.2em;
    color: #5e8123;
}

.approach-item p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4em;
    color: #1E293B;
}

.approach-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

@media (min-width: 1024px) {
    .approach-header {
        flex-direction: row;
    }
}

.approach-title-block {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-bottom: 16px;
}

.approach-title-row {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 16px;
}

.approach-title-block h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 42.31px;
    line-height: 1.1em;
    text-transform: uppercase;
    color: #0F172A;
}

.approach-step {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 40px 48px;
    background: transparent;
    border: 2px solid #5e8123;
    border-radius: 26.44px;
    transition: all 0.3s;
}

.approach-step:hover {
    border-color: #1a2e0f;
}

.approach-step p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4em;
    color: #1E293B;
}

.approach-step strong {
    font-weight: 700;
    font-size: 18px;
    color: #5e8123;
    display: block;
    margin-bottom: 8px;
}

.brief-link {
    color: #5e8123;
    text-decoration: underline;
}

.brief-link:hover {
    color: #4a6b1a;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.approach-step-pair {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

@media (min-width: 1024px) {
    .approach-step-pair {
        flex-direction: row;
    }
}

.approach-step-pair .approach-step {
    flex: 1;
    max-width: none;
}

.approach-step-pair--full .approach-step {
    max-width: none;
}


.approach-step-single {
    display: flex;
    justify-content: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.approach-step-single p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    color: #64748B;
    text-align: center;
    max-width: 768px;
}

.approach-step-single strong {
    font-weight: 700;
    color: #1E293B;
}

/* Testimonials Section */
.testimonials {
    position: relative;
    display: flex;
    gap: 40px;
    padding: 96px 64px 80px;
    background: #1a2e0f;
    overflow: hidden;
}

.testimonials-decor-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: #F8FAFC;
    border-radius: 0 0 37px 37px;
}

.testimonials-decor-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: #64748B;
    border-radius: 37px 37px 0 0;
}

.testimonials-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    z-index: 10;
    position: relative;
    width: 100%;
}

.testimonials-content h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 42.31px;
    line-height: 1.1em;
    text-transform: uppercase;
    color: white;
}

.testimonials-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    color: rgba(255, 255, 255, 0.8);
    max-width: 720px;
}

.testimonials-grid {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

.testimonial-card {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-radius: 26.44px;
    background: rgba(94, 129, 35, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card.highlighted {
    background: #5e8123;
}

.testimonial-card .quote {
    font-family: 'Angry', sans-serif;
    font-size: 36px;
    line-height: 1;
    color: white;
}

.testimonial-card p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4em;
    color: white;
}

.testimonial-card h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 16px;
    line-height: 1.2em;
    color: white;
}

.testimonial-hidden {
    display: none;
}

.testimonial-card.expanded .testimonial-hidden {
    display: block;
}

.testimonial-toggle-btn {
    margin-top: 16px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid white;
    border-radius: 8px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.testimonial-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.testimonial-card.expanded .testimonial-toggle-btn {
    display: none;
}

/* Contact Section */
.contact {
    display: flex;
    gap: 48px;
    padding: 48px 64px;
    background: #64748B;
    position: relative;
    z-index: 10;
}

.contact-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 48px;
    padding-right: 48px;
    flex: 1;
}

.contact-heading {
    display: flex;
    flex-direction: column;
}

.contact-title-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-left h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 35px;
    line-height: 1.1em;
    text-transform: uppercase;
    color: white;
}

.contact-left p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4em;
    color: rgba(255, 255, 255, 0.9);
    max-width: 384px;
    padding-left: 64px;
    margin-top: 16px;
}

.contact-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 336px;
    gap: 24px;
}

.contact-image {
    width: 379.51px;
    height: 379.09px;
    border-radius: 30px !important;
    overflow: hidden !important;
    background: transparent;
}

.contact-image img {
    width: 100%;
    height: calc(100% + 180px);
    object-fit: cover;
    object-position: center -70px;
    border-radius: 30px !important;
    display: block;
    -webkit-border-radius: 30px !important;
    -moz-border-radius: 30px !important;
}

.contact-right .btn-primary {
    width: 100%;
    max-width: 300px;
}

.contact-right h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5em;
    color: white;
}

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

@media (min-width: 640px) {
    .contact-form {
        flex-direction: row;
        align-items: center;
    }
}

.contact-form .input {
    flex: 1;
    min-width: 193px;
}

.contact-form .btn-primary {
    white-space: nowrap;
}

/* Footer */
.footer {
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 32px 48px;
    background: #1a2e0f;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.footer > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

@media (min-width: 640px) {
    .footer > div {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 640px) {
    .footer {
        flex-direction: row;
    }
}

.footer-logo {
    font-family: 'Acme', sans-serif;
    font-size: 20px;
    line-height: 1.1em;
    color: white;
}

.footer p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.4em;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

@media (min-width: 640px) {
    .footer p {
        text-align: right;
    }
}

.footer span {
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
}

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

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

.footer-links span {
    color: rgba(255, 255, 255, 0.5);
}

/* Consent Checkboxes */
.consent-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 1.5em;
    color: #475569;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}

.checkbox-label:hover {
    background: rgba(94, 129, 35, 0.05);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    min-width: 18px;
    cursor: pointer;
    accent-color: #5e8123;
    border-radius: 4px;
}

.checkbox-label span {
    flex: 1;
    color: inherit;
}

.checkbox-label a {
    color: #5e8123;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
}

.checkbox-label a:hover {
    color: #4a6b1a;
}

.modal-form .consent-checkboxes {
    margin-top: 0;
}

.contact-form .consent-checkboxes {
    margin-top: 16px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 12px;
}

.contact-form .checkbox-label {
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
}

.contact-form .checkbox-label:hover {
    background: rgba(255, 255, 255, 0.15);
}

.contact-form .checkbox-label a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.contact-form .checkbox-label a:hover {
    color: white;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    font-size: 28px;
    color: #64748B;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.modal-close:hover {
    background: #F1F5F9;
    color: #0F172A;
}

.modal-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 28px;
    line-height: 1.2em;
    color: #0F172A;
    margin-bottom: 24px;
}

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

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

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #1E293B;
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.modal-form-state {
    display: block;
}

.modal-success-state {
    display: none;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
}

.success-message {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.5em;
}

.btn-gift {
    text-decoration: none;
    margin-top: 0;
}

.days-grid {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.day-card {
    flex: 1;
    padding: 16px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.day-card:hover {
    border-color: #5e8123;
    background: #F8FAFC;
}

.day-card.selected {
    border-color: #5e8123;
    background: #5e8123;
    color: white;
}

.day-card .day-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #64748B;
    margin-bottom: 4px;
}

.day-card.selected .day-name {
    color: rgba(255, 255, 255, 0.9);
}

.day-card .day-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1E293B;
}

.day-card.selected .day-number {
    color: white;
}

.day-card .day-month {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 11px;
    color: #94A3B8;
    margin-top: 4px;
}

.day-card.selected .day-month {
    color: rgba(255, 255, 255, 0.8);
}

.times-grid {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.time-btn {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    background: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #1E293B;
    cursor: pointer;
    transition: all 0.3s;
}

.time-btn:hover {
    border-color: #5e8123;
    background: #F8FAFC;
}

.time-btn.selected {
    border-color: #5e8123;
    background: #5e8123;
    color: white;
}

.time-btn-alt {
    width: 100%;
    margin-top: 0;
}

/* Schedule Toggle Button */
.schedule-toggle-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border: 2px solid #E2E8F0;
    border-radius: 26.44px;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #1E293B;
    gap: 8px;
    position: relative;
}

.schedule-toggle-btn:hover {
    border-color: #5e8123;
    background: #F8FAFC;
}

.schedule-toggle-btn > span:first-child {
    flex: 1;
    text-align: left;
}

.schedule-toggle-btn .schedule-optional {
    font-size: 11px;
    font-weight: 400;
    color: #64748B;
    margin-left: auto;
    margin-right: 8px;
}

.schedule-toggle-btn .schedule-arrow {
    transition: transform 0.3s;
    flex-shrink: 0;
    color: #64748B;
}

.schedule-toggle-btn.active .schedule-arrow {
    transform: rotate(180deg);
}

.schedule-options {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #E2E8F0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quiz Styles */
.quiz-modal-content {
    max-width: 600px;
}

.quiz-block {
    display: block;
}

.quiz-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #64748B;
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.5em;
}

.quiz-progress {
    margin-bottom: 32px;
}

.quiz-progress-bar {
    width: 100%;
    height: 8px;
    background: #E2E8F0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.quiz-progress-fill {
    height: 100%;
    background: #5e8123;
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.quiz-progress-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #475569;
    text-align: center;
}

.quiz-question {
    min-height: 300px;
}

.quiz-question-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #1E293B;
    margin-bottom: 24px;
    line-height: 1.4em;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-option {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    background: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #1E293B;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
}

.quiz-option:hover {
    border-color: #5e8123;
    background: #F8FAFC;
}

.quiz-option.selected {
    border-color: #5e8123;
    background: #5e8123;
    color: white;
}

.result-card {
    background: #F8FAFC;
    border-radius: 16px;
    padding: 24px;
    margin: 24px 0;
}

.result-description {
    margin-bottom: 20px;
}

.result-description p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #475569;
    line-height: 1.5em;
}

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

.result-detail-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #1E293B;
    line-height: 1.6em;
}

.result-detail-item strong {
    font-weight: 700;
    color: #0F172A;
    display: block;
    margin-bottom: 8px;
}

.result-detail-item ul {
    margin: 8px 0 0 20px;
    padding: 0;
}

.result-detail-item li {
    margin-bottom: 6px;
    color: #475569;
}

.result-budget {
    background: white;
    padding: 16px;
    border-radius: 12px;
    border: 2px solid #5e8123;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #1E293B;
    margin-top: 8px;
}

.result-budget strong {
    font-weight: 700;
    color: #5e8123;
    display: block;
    margin-bottom: 8px;
}

.result-expansion {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #475569;
    margin-top: 8px;
}

.result-expansion strong {
    font-weight: 700;
    color: #1E293B;
}

.result-candidates {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #E2E8F0;
    text-align: center;
}

.result-candidates p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #5e8123;
    margin: 0;
}

.result-contact-form {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #E2E8F0;
}

.result-contact-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1E293B;
    margin-bottom: 16px;
}

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

.quiz-contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quiz-contact-form label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #1E293B;
}

.quiz-contact-form .input {
    width: 100%;
    height: 48px;
    padding: 10px 20px;
    border-radius: 26.44px;
    background: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #1E293B;
    border: 2px solid #E2E8F0;
    outline: none;
    transition: all 0.3s;
}

.quiz-contact-form .input:focus {
    border-color: #5e8123;
    box-shadow: 0 0 0 3px rgba(94, 129, 35, 0.1);
}

.quiz-contact-form .consent-checkboxes {
    margin-top: 8px;
    background: #F8FAFC;
    padding: 16px;
    border-radius: 12px;
}

.success-content {
    text-align: center;
    padding: 24px 0;
}

.success-message {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #475569;
    margin: 16px 0 24px;
    line-height: 1.6em;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-content {
    background: #DC2626;
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.5em;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.notification-close:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .container {
        border-radius: 0;
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 20px;
    }

    .nav {
        width: 100%;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .btn-outline {
        width: 100%;
        max-width: none;
        height: 40px;
    }

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

    .hero-text {
        padding: 48px 20px 28px;
        max-width: 100%;
    }

    .hero-heading h1 {
        font-size: 20.16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-image {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        width: 100%;
        max-width: 100%;
        height: 379.09px;
        transform: none;
        margin: 0 auto 24px;
    }

    .hero-image img {
        width: 100%;
        height: calc(100% + 180px);
        object-fit: cover;
        object-position: center -70px;
        border-radius: 30px !important;
    }

    .hero-image-caption {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        margin-top: 16px;
        padding: 0;
        text-align: left;
    }

    .hero-image-caption p {
        font-size: 13px;
    }

    .signature-image {
        margin-top: -50px;
        margin-left: 200px;
        width: 156px;
    }

    .hero-bg {
        width: 100%;
        left: 0;
        transform: none;
    }

    .difficulties {
        padding: 40px 20px;
        gap: 32px;
    }

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

    .services {
        padding: 0 12px;
    }

    .services-title {
        font-size: 28px;
        padding: 24px 12px;
    }

    .service-item {
        flex-direction: column;
        gap: 20px;
        padding: 28px 20px;
    }

    .service-item h3 {
        font-size: 20px;
    }

    .service-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
    }

    .pricing {
        padding: 40px 20px;
        gap: 32px;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        max-width: 400px;
    }

    .pricing-card:nth-child(2) {
        order: 3;
    }

    .pricing-card:nth-child(3) {
        order: 2;
    }

    .approach-header {
        padding: 40px 20px;
    }

    .approach-title-block h2 {
        font-size: 28px;
    }

    .approach-step {
        max-width: 100%;
    }

    .approach-step-pair {
        padding: 24px 20px;
        gap: 20px;
    }

    .approach-step-single {
        padding: 24px 20px;
    }

    .approach-item {
        padding: 24px 20px;
    }

    .approach-item h3 {
        font-size: 20px;
    }

    .testimonials {
        padding: 72px 20px 64px;
    }

    .testimonials-content h2 {
        font-size: 28px;
    }

    .testimonials-grid {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-card {
        min-width: 100%;
        width: 100%;
    }

    .testimonial-toggle-btn {
        width: 100%;
        margin-top: 20px;
    }

    .pricing-card {
        width: 100%;
    }

    .pricing-card h3 {
        font-size: 18px;
    }

    .contact {
        flex-direction: column;
        padding: 32px 20px;
        gap: 24px;
        align-items: center;
        text-align: center;
    }

    .contact-left {
        padding-right: 0;
        gap: 24px;
        text-align: center;
        align-items: center;
    }

    .contact-left h2 {
        font-size: 26px;
    }

    .contact-left p {
        padding-left: 0;
        max-width: 100%;
    }

    .contact-right {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .contact-image {
        width: 100%;
        max-width: 100%;
        height: 379.09px;
        margin: 0 auto;
    }

    .contact-image img {
        height: calc(100% + 180px);
        object-position: center -70px;
    }

    .contact-right h3 {
        text-align: center;
    }

    .contact-right .btn-primary {
        margin: 0 auto;
    }

    .footer {
        padding: 24px 20px;
        text-align: center;
    }

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

    .modal-content {
        padding: 28px 20px;
    }

    .days-grid,
    .times-grid {
        flex-direction: column;
    }
}

@media (max-width: 480px) {

    .nav-btn {
        padding: 8px 12px;
        font-size: 8px;
    }

    .header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .btn-outline {
        flex: 1;
        max-width: none;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
        font-size: 12px;
        padding: 10px 20px;
    }

    .hero-text {
        padding: 32px 16px 24px;
    }

    .hero-heading h1 {
        font-size: 17.28px;
    }

    .hero-heading p {
        font-size: 12px;
    }

    .hero-image {
        margin: 0 auto 20px;
        width: 100%;
        max-width: 100%;
        height: 300px;
    }

    .hero-image img {
        height: calc(100% + 150px);
        object-position: center -60px;
    }

    .hero-image-caption {
        padding: 0;
    }

    .hero-image-caption p {
        font-size: 12px;
    }

    .hero-image-caption {
        padding: 0 16px;
    }

    .hero-image-caption p {
        font-size: 10px;
    }

    .signature-image {
        width: 130px;
        margin-top: -50px;
        margin-left: 200px;
    }

    .difficulties {
        padding: 32px 16px;
    }

    .difficulties h2,
    .pricing h2 {
        font-size: 20px;
    }

    .difficulties-grid {
        gap: 20px;
    }

    .services-title {
        font-size: 24px;
        padding: 20px 12px;
    }

    .service-item {
        padding: 24px 16px;
    }

    .service-item h3 {
        font-size: 18px;
    }

    .service-cta {
        padding: 20px 16px;
    }

    .service-cta h3 {
        font-size: 18px;
    }

    .pricing {
        padding: 32px 16px;
    }

    .pricing-grid {
        gap: 20px;
        align-items: center;
    }

    .pricing-card {
        padding: 20px;
        max-width: 100%;
    }

    .pricing-card h3 {
        font-size: 16px;
    }

    .pricing-card p {
        font-size: 13px;
    }

    .approach {
        padding: 0 16px;
    }

    .approach-item {
        padding: 20px 16px;
    }

    .approach-item h3 {
        font-size: 18px;
    }

    .approach-item p {
        font-size: 13px;
    }

    .testimonials {
        padding: 48px 16px 40px;
    }

    .testimonials-content h2 {
        font-size: 24px;
    }

    .testimonials-subtitle {
        font-size: 14px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-card h3 {
        font-size: 14px;
    }

    .testimonial-card p {
        font-size: 13px;
    }

    .contact {
        padding: 32px 16px;
    }

    .contact-left h2 {
        font-size: 22px;
    }

    .contact-right {
        align-items: center;
        text-align: center;
    }

    .contact-image {
        width: 100%;
        max-width: 100%;
        height: 300px;
    }

    .contact-image img {
        height: calc(100% + 150px);
        object-position: center -60px;
    }

    .contact-right h3 {
        text-align: center;
    }

    .modal-content {
        padding: 24px 16px;
        margin: 20px;
    }

    .modal-title {
        font-size: 20px;
    }
}
