html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 15px;
    /* толщина вертикального скроллбара */
    height: 16px;
    /* толщина горизонтального (если есть) */
}


::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: #b0b0b0;
    border-radius: 10px;
    border: 3px solid #fff;
}

::-webkit-scrollbar-thumb:hover {
    background: #999;
}




/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1A53E0;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease, background 0.2s ease;
    will-change: transform, width, height;
}

.custom-cursor.hover {
    background: #1A53E0;
    opacity: 0.7;
}

.custom-cursor.click {
    opacity: 0.9;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
}

header {
    background: #fff;
    width: 100%;
    font-family: 'Inter', Arial, sans-serif;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #222;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-line1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
}

.logo-line2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 40px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

nav ul li a:hover {
    color: #2ca6f7;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.2s;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.services-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1A53E0;
    min-width: 400px;
    padding: 40px;
    display: none;
    flex-direction: column;
    gap: 24px;
    z-index: 1000;
    margin-top: 8px;
}

.dropdown:hover .services-dropdown {
    display: flex;
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    transition: opacity 0.2s;
    padding: 8px 0;
}

.service-item:hover {
    opacity: 0.8;
}

.service-item .arrow {
    font-size: 1.5rem;
    margin-left: 16px;
}

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

.tg-btn {
    display: flex;
    align-items: center;
    background: #6A3EE8;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s;
}

.tg-btn:hover {
    background: #5a2fd4;
}

.tg-btn svg {
    margin-left: 12px;
    width: 22px;
    height: 22px;
    fill: #fff;
    display: inline-block;
    vertical-align: middle;
}

/* Hide custom cursor on mobile */
@media (max-width: 768px) {
    .custom-cursor {
        display: none;
    }

    * {
        cursor: auto !important;
    }
}

@media (max-width: 950px) {
    .container {
        flex-direction: column;
        align-items: stretch;
        height: auto;
    }

    nav ul {
        gap: 24px;
    }

    .logo-line1,
    .logo-line2 {
        font-size: 1.1rem;
    }
}

/* Hero Section Styles */
.hero-section {
    background: #fff;
    padding: 160px 0 120px;
    font-family: 'Inter', Arial, sans-serif;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.hero-title {
    font-size: 8rem;
    font-weight: 700;
    color: #222;
    line-height: 1.1;
    margin: 0;
    max-width: 1200px;
}

.hero-number {
    font-size: 10rem;
    display: inline-block;
}

.hero-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
}

.hero-left-text {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
}

.hero-right-text {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 6rem;
    }

    .hero-number {
        font-size: 7.5rem;
    }
}

@media (max-width: 950px) {
    .hero-section {
        padding: 100px 0 80px;
        min-height: auto;
    }

    .hero-container {
        gap: 60px;
    }

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

    .hero-number {
        font-size: 4.5rem;
    }

    .hero-bottom {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left-text,
    .hero-right-text {
        font-size: 1rem;
    }
}

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

    .hero-number {
        font-size: 3rem;
    }
}

/* Showreel Section Styles */
.showreel-section {
    background: #000;
    padding: 120px 0;
    font-family: 'Inter', Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

.showreel-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    min-height: 600px;
}

.showreel-decorative-text {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 40px;
    pointer-events: none;
}

.decorative-word {
    font-size: 6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.showreel-frame {
    position: relative;
    height: 600px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
}

.showreel-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    display: block;
}

.showreel-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    will-change: transform, left, top, width, height;
}

.showreel-play-btn:hover {
    background: #5a2fd4;
}

.showreel-play-btn svg {
    width: 40px;
    height: 40px;
}

.showreel-play-btn.playing .play-icon {
    display: none;
}

.showreel-play-btn.playing .stop-icon {
    display: block !important;
}

.showreel-play-btn:not(.playing) .play-icon {
    display: block;
}

.showreel-play-btn:not(.playing) .stop-icon {
    display: none;
}

@media (max-width: 1200px) {
    .showreel-frame {
        margin-left: 150px;
    }

    .decorative-word {
        font-size: 4rem;
    }
}

@media (max-width: 950px) {
    .showreel-section {
        padding: 80px 0;
    }

    .showreel-container {
        min-height: 500px;
    }

    .showreel-frame {
        height: 500px;
        margin-left: 0;
    }

    .showreel-decorative-text {
        left: 16px;
        gap: 20px;
    }

    .decorative-word {
        font-size: 3rem;
    }


    .showreel-play-btn {
        width: 80px;
        height: 80px;
    }

    .showreel-play-btn svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 600px) {
    .showreel-frame {
        height: 400px;
    }

    .decorative-word {
        font-size: 2rem;
    }

}

/* Service Block Styles */
.service-block {
    background: #fff;
    padding: 120px 0;
    font-family: 'Inter', Arial, sans-serif;
}

.service-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 80px;
    align-items: start;
}

.service-number {
    font-size: 12rem;
    font-weight: 700;
    color: #f0f0f0;
    line-height: 1;
    user-select: none;
    margin-top: -20px;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 20px;
}

.service-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.service-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
    margin: 0;
    flex: 1;
}

.service-nav-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #1A53E0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.2s, background 0.2s;
}

.service-nav-btn:hover {
    transform: scale(1.05);
    background: #1542b8;
}

.service-nav-btn svg {
    width: 24px;
    height: 24px;
}

.service-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-description p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.service-tags {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tags-line {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.tag {
    font-size: 1rem;
    color: #333;
    font-weight: 400;
}

@media (max-width: 1200px) {
    .service-number {
        font-size: 8rem;
    }

    .service-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 950px) {
    .service-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-number {
        font-size: 6rem;
        text-align: center;
        margin-top: 0;
    }

    .service-title {
        font-size: 2rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-nav-btn {
        align-self: flex-end;
    }
}

/* Footer Styles */
footer {
    background: #1A53E0;
    color: #fff;
    font-family: 'Inter', Arial, sans-serif;
    padding: 80px 0 40px;
    position: relative;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    position: relative;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.request-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.request-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.request-btn:hover {
    transform: scale(1.05);
}

.request-btn svg {
    width: 24px;
    height: 24px;
}

.request-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
}

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

.phone {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.phone:hover {
    opacity: 0.8;
}

.email {
    font-size: 1.125rem;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.email:hover {
    opacity: 0.8;
}

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

.badge {
    border: 1px solid #fff;
    border-radius: 8px;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge-label {
    font-size: 0.875rem;
    color: #fff;
    opacity: 0.8;
}

.badge-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    transition: opacity 0.2s;
}

.legal-links a:hover {
    opacity: 0.8;
}

.copyright {
    font-size: 0.875rem;
    color: #fff;
    margin-top: 8px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.about-btn {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s;
}

.about-btn:hover {
    transform: scale(1.05);
}

.about-btn svg {
    width: 32px;
    height: 32px;
}

.about-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
}

.social-icons {
    position: absolute;
    bottom: 40px;
    right: 16px;
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: transparent;
    transition: background 0.2s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 950px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-right {
        align-items: flex-start;
    }

    .social-icons {
        position: static;
        margin-top: 20px;
    }

    .phone {
        font-size: 1.5rem;
    }
}

/* Cases Section */
.cases-section {
    background: #fff;
    padding: 120px 0;
    font-family: 'Inter', Arial, sans-serif;
}

.cases-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.case-card {
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

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

.case-card-dark {
    background: #1A1A1A;
}

.case-card-light {
    background: #F5F5F5;
}

.case-visual {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.case-card-dark .case-visual {
    background: #0A0A0A;
}

.case-card-light .case-visual {
    background: #E8E8E8;
}

.case-mockup-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.case-mockup-content {
    width: 80%;
    height: 70%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.case-action-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    z-index: 10;
}

.case-action-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

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

.case-action-dark {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    backdrop-filter: blur(10px);
}

.case-action-light {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #222;
    backdrop-filter: blur(10px);
}

.case-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.case-card-dark .case-content {
    background: #1A1A1A;
}

.case-card-light .case-content {
    background: #F5F5F5;
}

.case-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.case-card-dark .case-title {
    color: #fff;
}

.case-card-light .case-title {
    color: #222;
}

.case-description {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.case-card-dark .case-description {
    color: rgba(255, 255, 255, 0.9);
}

.case-card-light .case-description {
    color: #333;
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.case-tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 20px;
    border: 1px solid;
    transition: opacity 0.2s;
}

.case-tag:hover {
    opacity: 0.8;
}

.case-card-dark .case-tag {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.case-card-light .case-tag {
    color: #222;
    border-color: rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1200px) {
    .cases-container {
        gap: 32px;
    }

    .case-title {
        font-size: 2rem;
    }
}

@media (max-width: 950px) {
    .cases-section {
        padding: 80px 0;
    }

    .cases-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .case-visual {
        height: 350px;
    }

    .case-content {
        padding: 24px;
    }

    .case-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 600px) {
    .case-visual {
        height: 280px;
    }

    .case-title {
        font-size: 1.5rem;
    }

    .case-description {
        font-size: 0.9375rem;
    }
}

/* Brief modal */
.brief-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    font-family: 'Inter', Arial, sans-serif;
}

.brief-modal.is-open {
    display: flex;
}

.brief-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.brief-popup {
    position: relative;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    padding: 40px 32px 32px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

.brief-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.brief-close:hover {
    background: #f0f0f0;
    color: #000;
}

.brief-close svg {
    width: 24px;
    height: 24px;
}

.brief-title {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px;
    padding-right: 48px;
}

.brief-subtitle {
    font-size: 1rem;
    color: #666;
    margin: 0 0 24px;
    line-height: 1.5;
}

.brief-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.brief-phone,
.brief-email {
    font-size: 1.125rem;
    color: #1A53E0;
    text-decoration: none;
    transition: opacity 0.2s;
}

.brief-phone:hover,
.brief-email:hover {
    opacity: 0.8;
}

.brief-tg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: #1A53E0;
    background: #fff;
    border: 2px solid #1A53E0;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.brief-tg-btn:hover {
    background: #1A53E0;
    color: #fff;
}

.brief-budget {
    margin-bottom: 28px;
}

.brief-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #666;
    margin: 0 0 14px;
}

.budget-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.budget-opt {
    padding: 12px 18px;
    font-size: 1rem;
    font-weight: 500;
    color: #222;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.budget-opt:hover {
    border-color: #b0b0b0;
}

.budget-opt.selected {
    border-color: #1A53E0;
    background: rgba(26, 83, 224, 0.06);
    color: #1A53E0;
}

.budget-opt.selected::before {
    content: '';
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A53E0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.brief-section-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 16px;
}

.brief-project {
    margin-bottom: 32px;
}

.brief-textarea {
    width: 100%;
    min-height: 120px;
    padding: 16px;
    font-size: 1rem;
    line-height: 1.5;
    color: #222;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    resize: vertical;
    font-family: inherit;
    box-sizing: border-box;
    margin-bottom: 12px;
}

.brief-textarea::placeholder {
    color: #999;
}

.brief-textarea:focus {
    outline: none;
    border-color: #1A53E0;
    background: #fff;
}

.brief-attach-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: #222;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    font-family: inherit;
}

.brief-attach-btn:hover {
    border-color: #b0b0b0;
    background: #fafafa;
}

.brief-attach-btn svg {
    width: 18px;
    height: 18px;
    color: #666;
}

.brief-contacts-form {
    margin-top: 32px;
}

.brief-inputs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.brief-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    line-height: 1.5;
    color: #222;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.2s, background 0.2s;
}

.brief-input::placeholder {
    color: #999;
}

.brief-input:focus {
    outline: none;
    border-color: #1A53E0;
    background: #fff;
}

.brief-submit-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #1A53E0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
    margin-bottom: 16px;
}

.brief-submit-btn:hover {
    background: #1542b8;
}

.brief-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.brief-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #1A53E0;
}

.brief-consent-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
    cursor: pointer;
}

.brief-consent-text strong {
    color: #222;
    font-weight: 600;
}

.brief-trigger {
    cursor: pointer;
}






.request-btn {

    width: 200px;
    height: 80px;
    border-radius: 200px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.2s;
}





/* Thank You Modal */
.thank-you-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    font-family: 'Inter', Arial, sans-serif;
}

.thank-you-modal.is-open {
    display: flex;
}

.thank-you-popup {
    position: relative;
    width: 100%;
    max-width: 600px;
    background: #fff;
    border-radius: 12px;
    padding: 60px 40px 40px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.thank-you-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.thank-you-close:hover {
    background: #f0f0f0;
    color: #000;
}

.thank-you-close svg {
    width: 24px;
    height: 24px;
}

.thank-you-illustration {
    width: 100%;
    max-width: 400px;
    height: 300px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-illustration svg {
    width: 100%;
    height: 100%;
}

.thank-you-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 16px;
    line-height: 1.2;
}

.thank-you-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #666;
    margin: 0 0 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #1A53E0;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
}

.thank-you-btn:hover {
    background: #1542b8;
}

@media (max-width: 600px) {
    .brief-popup {
        padding: 32px 20px 24px;
    }

    .brief-title {
        font-size: 1.5rem;
    }

    .budget-options {
        flex-direction: column;
    }

    .budget-opt {
        width: 100%;
        justify-content: center;
    }

    .brief-inputs-grid {
        grid-template-columns: 1fr;
    }

    .brief-section-title {
        font-size: 1rem;
    }

    .thank-you-popup {
        padding: 40px 24px 32px;
    }

    .thank-you-title {
        font-size: 2rem;
    }

    .thank-you-text {
        font-size: 1rem;
    }

    .thank-you-illustration {
        height: 220px;
        margin-bottom: 24px;
    }
}