/* Fonts & imports */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:wght@300..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* CSS variables */
:root {
    --font-family-montserrat: 'Montserrat', sans-serif;
    --font-family-inter: 'Inter', sans-serif;

    --font-size-large: 6rem;
    --font-size-large-medium: 3rem;
    --font-size-medium: 2rem;
    --font-size-regular: 1.5rem;
    --font-size-light: 1rem;
    --font-size-lighter: 0.5rem;
    --font-size-small: 0.9rem;
    --font-size-smaller: 0.8rem;
    --font-size-tiny: 0.85rem;
    --font-size-micro: 0.75rem;
}

/* Global styles */
* {
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    line-height: auto;
}

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
    overflow-x: hidden;
}

body {
    position: relative;

    padding-top: 0;

    background: #fff;

    font-weight: normal;

    z-index: 1;
}

.blob-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: -2;
}

/* Background */
.big-blob {
    position: absolute;
    top: -100px;
    right: -100px;
    overflow: hidden;

    background: linear-gradient(135deg, #a2c5bf, #b5e8b7);

    width: 900px;
    height: 760px;
    border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;

    animation: morph 10s ease-in-out infinite;
    transform-origin: center;

    pointer-events: auto;
    z-index: -1;
}

.small-blob {
    position: absolute;
    top: 650px;
    left: -150px;
    overflow: hidden;

    background: linear-gradient(135deg, #b5e8b7, #a2c5bf);

    width: 300px;
    height: 250px;
    border-radius: 50% 40% 60% 30% / 40% 50% 30% 60%;

    animation: morph 8s ease-in-out infinite reverse;
    transform-origin: center;

    pointer-events: auto;
    z-index: -1;
}

.medium-blob {
    position: absolute;
    top: 2500px;
    right: -200px;
    overflow: hidden;

    background: linear-gradient(135deg, #a2c5bf, #b5e8b7);

    width: 500px;
    height: 400px;
    border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;

    animation: morph 9s ease-in-out infinite;
    transform-origin: center;

    pointer-events: auto;
    z-index: -1;
}

.footer-blob {
    position: absolute;
    bottom: 0;
    right: -150px;
    overflow: hidden;

    background: linear-gradient(135deg, #b5e8b7, #a2c5bf);

    width: 500px;
    height: 400px;
    border-radius: 50% 40% 60% 30% / 40% 50% 30% 60%;

    animation: morph 7s ease-in-out infinite reverse;
    transform-origin: center;

    pointer-events: auto;
    z-index: -1;
}

.big-blob,
.medium-blob,
.small-blob,
.footer-blob {
    pointer-events: auto;
}

.big-blob,
.medium-blob,
.small-blob,
.footer-blob {
    clip-path: inset(0 0 0 0);
    max-width: 100vw;
    box-sizing: border-box;
}

/* Animations */
@keyframes morph {
    0% {
        border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
    }

    25% {
        border-radius: 50% 50% 60% 40% / 50% 40% 60% 50%;
    }

    50% {
        border-radius: 70% 30% 50% 50% / 30% 70% 50% 50%;
    }

    75% {
        border-radius: 55% 45% 65% 35% / 45% 55% 35% 65%;
    }

    100% {
        border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
    }
}

@keyframes floatAround {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-20px, 10px);
    }

    50% {
        transform: translate(-15px, -20px);
    }

    75% {
        transform: translate(-25px, 15px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* Button styles */
.btn-animated {
    position: relative;
    overflow: hidden;

    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    user-select: none;
    cursor: pointer;
}

.btn-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );

    transition: left 0.5s ease;
}

.btn-animated:hover,
.btn-animated:focus {
    background: #333;

    transform: translateY(-2px);
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.3);
}

.btn-animated:hover::before,
.btn-animated:focus::before {
    left: 100%;
}

.btn-animated:active {
    background: #111;

    transform: translateY(0);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
}

@media (hover: none) and (pointer: coarse) {
    .btn-animated:hover {
        transform: none;
        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    }

    .btn-animated:active {
        background: #333;

        transform: translateY(-2px);
        box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.3);
    }
}
/* header section */
.header {
    position: relative;
    padding-bottom: 1.25rem;

    background: transparent;

    z-index: 1000;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 1.25rem 0;

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    z-index: 1001;
}

.header.scrolled .nav {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;

    animation: slideInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navigation elements */
.logo-link {
    position: relative;

    font-size: var(--font-size-medium);
    font-weight: bold;
    color: #000;
    text-decoration: none;

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-link:hover {
    transform: scale(1.05);
    color: #333;
}

.logo-link:active {
    transform: scale(0.98);
}

.nav-menu {
    display: inline-flex;
    position: relative;
    gap: 0;
    padding: 0.625rem;

    border-radius: 1rem;
}

.nav-menu::before {
    content: '';
    position: absolute;
    top: 0.625rem;
    left: 0;
    width: var(--widthJS);
    height: calc(100% - 20px);

    background: #fff;
    border-radius: 15px;
    box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.2);

    transition: all 0.3s linear;
    transform: translateX(var(--transformJS));

    z-index: 0;
}

.nav-item {
    position: relative;

    z-index: 1;
}

.nav-item:not(:last-child) {
    margin-right: 20px;
}

.nav-link {
    position: relative;
    display: inline-block;
    padding: 0.625rem 1.25rem;

    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
    font-size: var(--font-size-light);
    color: #000;
    text-decoration: none;

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    z-index: 1;
}

.nav-item.active .nav-link {
    color: #333;
}

.cta-button {
    width: 194px;
    height: 45px;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5rem;

    font-family: var(--font-family-inter);
    font-size: var(--font-size-light);
    font-weight: 400;
    font-style: regular;
    line-height: 100%;
    color: #fff;

    background: #000;
}

/* header animations */
.logo {
    animation: fadeInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.nav-cta {
    animation: fadeInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.header-main-block {
    padding: 4rem 0;
    padding-top: calc(4rem + 80px);
    display: flex;
    align-items: center;
}

.header-main-container {
    display: grid;
    align-items: center;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.header-main-left {
    color: #000;
}

.header-main-title {
    max-width: 733px;
    width: 100%;
    margin-bottom: 1.5rem;

    font-size: var(--font-size-large);
    font-weight: bold;
    line-height: 105%;
}

.subtitle {
    font-weight: bold;
    color: #a4d0aa;
}

.header-main-description {
    max-width: 500px;
    margin-bottom: 2.5rem;

    font-weight: 300;
    font-size: var(--font-size-regular);
    color: #000;
}

.header-main-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cta-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.header-main-cta {
    width: 15.625rem;
    height: 3.6875rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5rem;

    font-family: var(--font-family-inter);
    font-weight: 400;
    font-style: regular;
    font-size: var(--font-size-light);
    line-height: 100%;
    color: #fff;

    background: #000;
}

/* Header Projects Showcase */
.header-main-right {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects-showcase {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 600px;
}

.project-mockup {
    position: absolute;
    border-radius: 0.5rem;
    box-shadow: none;
    overflow: hidden;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border: none;
}

.project-mockup img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Individual project positioning and animation */
.project-1 {
    top: 20px;
    right: 30px;
    z-index: 4;
    transform: rotate(3deg) translateX(0px);
    animation: slideInProject1 1.2s ease-out 0.5s forwards;
}

.project-2 {
    top: -30px;
    right: 20px;
    z-index: 3;
    transform: rotate(2deg) translateX(150px);
    animation: slideInProject2 1.2s ease-out 0.8s forwards;
}

.project-3 {
    top: -150px;
    right: 40px;
    z-index: 2;
    transform: rotate(-6deg) translateX(0px);
    animation: slideInProject3 1.2s ease-out 1.1s forwards;
}

/* Project animations */
@keyframes slideInProject1 {
    0% {
        opacity: 0;
        transform: rotate(0deg) translateX(100px);
    }
    100% {
        opacity: 1;
        transform: rotate(3deg) translateX(0);
    }
}

@keyframes slideInProject2 {
    0% {
        opacity: 0;
        transform: rotate(0deg) translateX(0px);
    }
    100% {
        opacity: 1;
        transform: rotate(-2deg) translateX(-200px);
    }
}

@keyframes slideInProject3 {
    0% {
        opacity: 0;
        transform: rotate(0deg) translateX(0px);
    }
    100% {
        opacity: 1;
        transform: rotate(2deg) translateX(0px);
    }
}

@media (max-width: 1380px) {
    .header-main-block {
        padding: 3rem 0;
        padding-top: calc(3rem + 80px);
    }

    .header-main-title {
        font-size: 4.5rem;
        max-width: 600px;
    }

    .header-main-description {
        max-width: 500px;
        margin-bottom: 2.5rem;
        font-size: 1.25rem;
    }

    .header-main-right {
        height: 450px;
    }

    .projects-showcase {
        max-width: 550px;
    }

    .project-1 {
        top: 15px;
        right: 0px;
        transform: rotate(3deg) translateX(0px);
    }

    .project-2 {
        top: -25px;
        right: -70px;
        transform: rotate(2deg) translateX(120px);
    }

    .project-3 {
        top: -120px;
        right: 35px;
        transform: rotate(-6deg) translateX(0px);
    }
}

@media (max-width: 1150px) {
    .project-2 {
        right: -110px;
        width: 400px;
    }

    .project-3 {
        right: 0px;
        width: 400px;
    }
}

@media (max-width: 1024px) {
    .header-main-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .header-main-title {
        font-size: 3.5rem;
        max-width: 100%;
    }

    .header-main-description {
        max-width: 100%;
        font-size: 1.1rem;
    }

    .header-main-actions {
        justify-content: center;
    }

    .header-main-right {
        height: 400px;
        order: -1;
    }

    .projects-showcase {
        max-width: 500px;
    }

    .project-1 {
        top: -110px;
        right: -90px;
        transform: rotate(3deg) translateX(0px);
    }

    .project-2 {
        width: none;
        top: -90px;
        right: 10px;
        transform: rotate(2deg) translateX(100px);
    }

    .project-3 {
        top: -150px;
        right: 30px;
        transform: rotate(-6deg) translateX(0px);
        z-index: 3;
    }

    @keyframes slideInProject3 {
        0% {
            opacity: 0;
            transform: rotate(0deg) translateX(0px);
        }
        100% {
            opacity: 1;
            transform: rotate(-2deg) translateX(0px);
        }
    }
}

@media (max-width: 768px) {
    .header-main-block {
        padding: 2rem 0;
        padding-top: calc(2rem + 80px);
        min-height: 70vh;
    }

    .header-main-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .header-main-description {
        font-size: var(--font-size-small);
        margin-bottom: 2rem;
    }

    .header-main-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .header-main-right {
        height: 300px;
        order: -1;
    }

    .projects-showcase {
        max-width: 350px;
    }

    .project-1 {
        width: 300px;
        top: -50px;
        right: -70px;
        transform: rotate(3deg) translateX(0px);
    }

    .project-2 {
        width: 300px;
        top: -60px;
        right: -90px;
        transform: rotate(2deg) translateX(80px);
    }

    .project-3 {
        width: 300px;
        top: -80px;
        right: 10px;
        transform: rotate(-6deg) translateX(0px);
    }

    .header-main-cta {
        padding: 0.875rem 2rem;
        font-size: var(--font-size-small);
    }
}

@media (max-width: 480px) {
    .header-main-block {
        padding: 1.5rem 0;
        padding-top: calc(1.5rem + 80px);
        min-height: 60vh;
    }

    .header-main-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .header-main-description {
        font-size: var(--font-size-tiny);
        margin-bottom: 1.5rem;
    }

    .header-main-right {
        height: 250px;
        order: -1;
    }

    .projects-showcase {
        max-width: 280px;
    }

    .project-1 {
        width: 200px;
        top: -10px;
        right: -40px;
        transform: rotate(3deg) translateX(0px);
    }

    .project-2 {
        width: 200px;
        top: -30px;
        right: -80px;
        transform: rotate(2deg) translateX(60px);
    }

    .project-3 {
        width: 200px;
        top: -60px;
        right: 20px;
        transform: rotate(-6deg) translateX(0px);
    }
}

@media (max-width: 380px) {
    .project-1 {
        width: 140px;
        top: -10px;
        right: 0px;
    }

    .project-2 {
        width: 140px;
        top: -20px;
        right: -80px;
    }

    .project-3 {
        width: 140px;
        top: -40px;
        right: 40px;
    }
}

/* Mobile Navigation */
.burger-menu {
    display: none;
    z-index: 1002;
}

.hidden {
    visibility: hidden;
}

.burger-button {
    position: relative;
    height: 40px;
    width: 42px;
    display: block;
    z-index: 60;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    pointer-events: all;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.burger-button:focus {
    outline: 0;
}

.burger-bar {
    background-color: #000;
    position: absolute;
    top: 50%;
    right: 6px;
    left: 6px;
    height: 3px;
    width: auto;
    margin-top: -1.5px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
        opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
        background-color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 1;
    z-index: 1;
    border-radius: 2px;
}

.burger-bar--1 {
    transform: translateY(-6px);
    opacity: 1;
    z-index: 3;
}

.burger-bar--2 {
    transform-origin: 100% 50%;
    transform: scaleX(0.8);
    opacity: 1;
    z-index: 2;
}

.burger-button:hover .burger-bar--2 {
    transform: scaleX(1);
}

.burger-bar--3 {
    transform: translateY(6px);
    opacity: 1;
    z-index: 3;
}

.burger-menu.active .burger-button {
    transform: rotate(-180deg);
}

.burger-menu.active .burger-bar--1 {
    transform: rotate(45deg);
}

.burger-menu.active .burger-bar--2 {
    opacity: 0;
}

.burger-menu.active .burger-bar--3 {
    transform: rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background: linear-gradient(135deg, #5aa3d7 0%, #af81d2 100%);
    padding: 80px 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu-overlay.active .mobile-menu {
    right: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: #fff;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-item {
    list-style: none;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #a4d0aa;
    padding-left: 1rem;
}

.mobile-nav-item.active .mobile-nav-link {
    color: #a4d0aa;
    font-weight: 700;
}

.mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Remove default link styles for mobile contact links */
.mobile-contact a {
    color: inherit;
    text-decoration: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.mobile-contact a:visited {
    color: inherit;
}

.mobile-contact a:focus {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.mobile-contact a:active {
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

.mobile-contact a:hover {
    color: inherit;
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-phone-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-phone-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-phone-text {
    font-size: var(--font-size-light);
    font-weight: 300;
    line-height: 100%;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.mobile-phone-number {
    font-size: var(--font-size-regular);
    font-weight: 700;
    line-height: 100%;
    transition: all 0.3s ease;
}

.mobile-phone:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mobile-phone:hover .mobile-phone-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mobile-phone:hover .mobile-phone-info {
    transform: translateX(5px);
}

.mobile-phone:hover .mobile-phone-text {
    opacity: 1;
}

.mobile-phone:hover .mobile-phone-number {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mobile-phone:active {
    transform: translateY(0);
}

.mobile-phone:active .mobile-phone {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(0.98);
}

.mobile-phone:active .mobile-phone-icon {
    transform: scale(1.05) rotate(2deg);
}

.mobile-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-social-title {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

.mobile-social-links {
    display: flex;
    gap: 1rem;
}

.mobile-social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.mobile-social-link:visited {
    color: #fff;
}

.mobile-social-link:focus {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.mobile-social-link:active {
    color: #fff;
    -webkit-tap-highlight-color: transparent;
}

.mobile-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 1280px) {
    .nav-menu {
        padding: 0.625rem 0.2rem;
    }

    .nav-link {
        padding: 0.8rem;
    }
}

/* Responsive design - navigation */
@media (max-width: 1024px) {
    .nav-menu,
    .nav-cta {
        display: none;
    }

    .burger-menu {
        display: block;
    }

    .nav-container {
        justify-content: space-between;
    }
}

/* Tablet styles (768px - 1024px) - menu slides from right */
@media (max-width: 1024px) and (min-width: 769px) {
    .mobile-menu {
        width: 400px;
        right: -400px;
        height: 100%;
        background: linear-gradient(135deg, #5aa3d7 0%, #af81d2 100%);
        padding: 80px 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }

    .mobile-menu-overlay.active .mobile-menu {
        right: 0;
    }

    .mobile-nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
    }

    .mobile-phone {
        padding: 1rem 1.5rem;
    }

    .mobile-phone-text {
        font-size: var(--font-size-small);
    }

    .mobile-phone-number {
        font-size: var(--font-size-light);
    }

    .mobile-phone-icon {
        width: 40px;
        height: 40px;
    }

    .mobile-social-link {
        width: 45px;
        height: 45px;
    }
}

/* Mobile styles (up to 768px) - menu slides from bottom */
@media (max-width: 768px) {
    .mobile-menu {
        width: 100%;
        height: 80vh;
        right: 0;
        bottom: -80vh;
        top: auto;
        background: linear-gradient(135deg, #5aa3d7 0%, #af81d2 100%);
        padding: 2rem 1.5rem;
        transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
        border-radius: 1.5rem 1.5rem 0 0;
    }

    .mobile-menu-overlay.active .mobile-menu {
        bottom: 0;
    }

    .mobile-nav-link {
        font-size: 1.1rem;
        padding: 0.875rem 0;
    }

    .mobile-phone {
        padding: 0.75rem 1rem;
    }

    .mobile-phone-text {
        font-size: var(--font-size-smaller);
    }

    .mobile-phone-number {
        font-size: var(--font-size-small);
    }

    .mobile-phone-icon {
        width: 35px;
        height: 35px;
    }

    .mobile-social-link {
        width: 40px;
        height: 40px;
    }

    .mobile-phone:hover {
        transform: none;
    }

    .mobile-phone:hover .mobile-phone-icon {
        transform: scale(1.05);
    }

    .mobile-phone:hover .mobile-phone-info {
        transform: none;
    }
}

/* Responsive design - background elements */
@media (max-width: 1280px) {
    .big-blob {
        top: -80px;
        right: -80px;
        width: 750px;
    }
}

@media (max-width: 1024px) {
    .big-blob {
        top: -80px;
        right: -80px;
        width: 680px;
        height: 580px;
    }

    .small-blob {
        top: 500px;
        left: -100px;
        width: 240px;
        height: 200px;
    }

    .medium-blob {
        top: 3200px;
        right: -150px;
        width: 400px;
        height: 320px;
    }

    .footer-blob {
        bottom: -130px;
        right: -100px;
        width: 240px;
        height: 290px;
    }
}

@media (max-width: 768px) {
    .big-blob {
        top: -60px;
        right: -60px;
        width: 460px;
        height: 410px;

        border-radius: 50% 40% 60% 30% / 40% 50% 30% 60%;
    }

    .small-blob {
        top: 375px;
        left: -75px;
        width: 180px;
        height: 150px;

        border-radius: 45% 35% 55% 25% / 35% 45% 25% 55%;
    }

    .medium-blob {
        top: 2900px;
        right: -100px;
        width: 300px;
        height: 240px;

        border-radius: 55% 35% 65% 25% / 35% 55% 25% 65%;
    }

    .footer-blob {
        bottom: -100px;
        right: -80px;
        width: 180px;
        height: 220px;

        border-radius: 45% 35% 55% 25% / 35% 45% 25% 55%;
    }

    @keyframes morph {
        0% {
            border-radius: 50% 40% 60% 30% / 40% 50% 30% 60%;
        }

        25% {
            border-radius: 45% 45% 55% 35% / 45% 45% 35% 55%;
        }

        50% {
            border-radius: 60% 30% 45% 45% / 30% 60% 45% 45%;
        }

        75% {
            border-radius: 50% 40% 55% 35% / 40% 50% 35% 55%;
        }

        100% {
            border-radius: 50% 40% 60% 30% / 40% 50% 30% 60%;
        }
    }
}

@media (max-width: 480px) {
    .big-blob {
        top: -40px;
        right: -40px;
        width: 340px;
        height: 290px;

        border-radius: 45% 35% 55% 25% / 35% 45% 25% 55%;
    }

    .small-blob {
        top: 250px;
        left: -50px;
        width: 120px;
        height: 100px;

        border-radius: 40% 30% 50% 20% / 30% 40% 20% 50%;
    }

    .medium-blob {
        top: 2600px;
        right: -60px;
        width: 200px;
        height: 160px;

        border-radius: 50% 30% 60% 20% / 30% 50% 20% 60%;
    }

    .footer-blob {
        bottom: -80px;
        right: -60px;
        width: 140px;
        height: 170px;

        border-radius: 40% 30% 50% 20% / 30% 40% 20% 50%;
    }

    @keyframes morph {
        0% {
            border-radius: 45% 35% 55% 25% / 35% 45% 25% 55%;
        }

        25% {
            border-radius: 40% 40% 50% 30% / 40% 40% 30% 50%;
        }

        50% {
            border-radius: 55% 25% 40% 40% / 25% 55% 40% 40%;
        }

        75% {
            border-radius: 45% 35% 50% 30% / 35% 45% 30% 50%;
        }

        100% {
            border-radius: 45% 35% 55% 25% / 35% 45% 25% 55%;
        }
    }
}

/* Lost sales section */
.lost-sales {
    padding-top: 4.5rem;
    padding-bottom: 2rem;
}

.lost-sales-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.lost-sales-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;

    text-align: center;
}

.lost-sales-title {
    font-size: var(--font-size-large-medium);
    font-weight: 700;
    line-height: 135%;

    max-width: 813px;
    width: 100%;
}

.lost-sales-title .highlight {
    position: relative;
    display: inline-block;

    font-size: var(--font-size-large-medium);
    font-weight: bold;
    line-height: 135%;
    color: #fff;

    z-index: 1;
}

.lost-sales-title .highlight::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;

    background: #a4d0aa;

    width: 290px;
    height: 75px;
    border-radius: 1.25rem;

    transform: translate(-50%, -50%) rotate(-0.82deg);
    z-index: -1;
}

.lost-sales-description {
    max-width: 520px;
    font-weight: 300;
    font-size: var(--font-size-light);
    color: #000;
    text-align: center;
}

.customer-doubts {
    display: flex;
    align-items: center;
    justify-content: center;

    max-width: 1440px;
    width: 100%;
    height: 100%;
}

.customer-doubts-image {
    object-fit: cover;

    width: 100%;
    height: 100%;
}

/* Responsive design - lost-sales section */
@media (max-width: 1024px) {
    .lost-sales {
        padding-top: 3.5rem;
        padding-bottom: 1.5rem;
        gap: 2.5rem;
    }

    .lost-sales-title {
        font-size: 2.5rem;
        max-width: 43.75rem;
    }

    .lost-sales-title .highlight {
        font-size: 2.5rem;
    }

    .lost-sales-title .highlight::before {
        width: 250px;
        height: 65px;
    }

    .lost-sales-description {
        max-width: 30rem;
        font-size: var(--font-size-small);
    }
}

@media (max-width: 768px) {
    .lost-sales {
        padding-top: 3rem;
        padding-bottom: 1rem;
        gap: 2rem;
    }

    .lost-sales-title {
        font-size: var(--font-size-medium);
        max-width: 37.5rem;
        letter-spacing: 0.05rem;
    }

    .lost-sales-title .highlight {
        font-size: var(--font-size-medium);
    }

    .lost-sales-title .highlight::before {
        width: 200px;
        height: 55px;
        border-radius: 1rem;
    }

    .lost-sales-description {
        max-width: 28.125rem;
        font-size: var(--font-size-small);
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .lost-sales {
        padding-top: 2.5rem;
        padding-bottom: 1rem;
        gap: 1.5rem;
    }

    .lost-sales-content {
        gap: 1.5rem;
    }

    .lost-sales-title {
        font-size: var(--font-size-regular);
        max-width: 100%;
        letter-spacing: 0.02rem;
    }

    .lost-sales-title .highlight {
        font-size: var(--font-size-regular);
    }

    .lost-sales-title .highlight::before {
        width: 150px;
        height: 40px;
        border-radius: 0.8rem;
    }

    .lost-sales-description {
        max-width: 100%;
        font-size: var(--font-size-tiny);
        padding: 0 0.5rem;
    }
}

.landing-7-days {
    color: #fff;

    padding: 3rem 1.5rem;
    max-width: 1440px;
    margin: 0 auto;
}

.landing-7-days-container {
    background: linear-gradient(#5aa3d7 0%, #af81d2 100%);

    max-width: 1440px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    border-radius: 1.5rem;
}

.landing-7-days-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
}

.landing-7-days-top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;

    text-align: center;
}

.landing-7-days-title {
    position: relative;
    display: inline-block;

    color: #fff;
    z-index: 1;

    font-size: 3.5rem;
    font-weight: bold;
    line-height: 135%;
}

.landing-7-days-title .highlight {
    position: relative;
    display: inline-block;

    font-size: 3.5rem;
    font-weight: bold;
    line-height: 135%;
    color: #fff;

    z-index: 1;
}

.landing-7-days-title .highlight::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;

    background: #a4d0aa;

    width: 250px;
    height: 70px;
    border-radius: 1.25rem;

    transform: translate(-50%, -50%) rotate(-0.82deg);
    z-index: -1;
}

.landing-7-days-description {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.9;
    text-align: center;

    max-width: 40.625rem;
    width: 100%;
}

.landing-7-days-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    width: 100%;
    align-items: stretch;
}

.landing-7-days-content-left {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;
}

.landing-7-days-left-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Features Grid */
.landing-7-days-content-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    gap: 2.5rem;

    width: 100%;
}

.features-grid {
    display: grid;
    justify-content: center;

    grid-template-columns: repeat(2, minmax(250px, 297px));
    grid-template-rows: repeat(5, 1fr);
    gap: 1.5rem;

    width: 100%;
    height: 100%;
}

.feature-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;

    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);

    max-width: 18.5625rem;
    padding: 1.5rem;
    border-radius: 1rem;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.features-grid > .feature-card:nth-child(1) {
    grid-row: span 3;
}

.features-grid > .feature-card:nth-child(2) {
    grid-row: span 2;
}

.features-grid > .feature-card:nth-child(3) {
    grid-row: span 3;
}

.features-grid > .feature-card:nth-child(4) {
    grid-row: span 2;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    letter-spacing: 0;
    margin: 0;
    line-height: 1.2;

    max-width: 15rem;
}

.feature-description {
    flex-grow: 1;

    font-size: var(--font-size-small);
    font-weight: 400;
    line-height: 1.4;
    color: #666;
    letter-spacing: 0;

    max-width: 13.8125rem;
    margin: 0;
}

/* CTA Button */
.landing-7-days-cta {
    text-align: center;
    width: 100%;
}

.boost-business-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #000;
    gap: 0.5rem;

    font-weight: 400;
    font-size: 1rem;
    line-height: 100%;
    text-wrap: nowrap;
    color: #fff;

    max-width: 260px;
    max-height: 60px;
    width: 100%;
    height: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    cursor: pointer;
    user-select: none;
}

.boost-business-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.boost-business-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.3);
}

.boost-business-btn:hover::before {
    left: 100%;
}

.boost-business-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
    background: #111;
}

.boost-icon {
    max-width: 32px;
    max-height: 32px;
}

/* Adaptability for cards */
@media (max-width: 1024px) {
    .landing-7-days-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .landing-7-days-title {
        font-size: 2.5rem;
    }

    .landing-7-days-title .highlight {
        font-size: 2.5rem;
    }

    .landing-7-days-title .highlight::before {
        width: 180px;
        height: 55px;
        border-radius: 1rem;
    }

    .landing-7-days-description {
        font-size: var(--font-size-small);
    }

    .features-grid {
        gap: 1.25rem;
    }

    .feature-card {
        padding: 1.25rem;
        min-height: 120px;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-description {
        font-size: var(--font-size-small);
    }
}

@media (max-width: 768px) {
    .landing-7-days-content {
        gap: 1.25rem;
    }

    .landing-7-days-top {
        gap: 1.25rem;
    }

    .landing-7-days-title {
        font-size: 2rem;
    }

    .landing-7-days-title .highlight {
        font-size: 2rem;
    }

    .landing-7-days-title .highlight::before {
        width: 140px;
        height: 55px;
        border-radius: 0.75rem;
    }

    .landing-7-days-description {
        font-size: var(--font-size-small);
    }

    .landing-7-days-content-right {
        gap: 1.25rem;
    }
}

@media (max-width: 620px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
        gap: 0.5rem;
    }

    .feature-card {
        padding: 1rem;
        min-height: auto;
        max-width: 100%;
        width: 100%;
    }

    .feature-title {
        font-size: var(--font-size-small);
    }

    .feature-description {
        font-size: var(--font-size-micro);
        text-wrap: wrap;
    }

    .boost-business-btn {
        padding: 0.875rem 2rem;
        font-size: var(--font-size-small);
    }
}

@media (max-width: 505px) {
    .landing-7-days-content-right {
        align-items: center;
        justify-content: center;
    }

    .features-grid {
        justify-items: center;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;

        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .landing-7-days-title {
        font-size: 1.5rem;
    }

    .landing-7-days-title .highlight {
        font-size: 1.5rem;
    }

    .landing-7-days-title .highlight::before {
        width: 105px;
        height: 40px;
        border-radius: 0.8rem;
    }

    .landing-7-days-description {
        font-size: var(--font-size-tiny);
    }
}

/* Pricing Section */
.pricing {
    padding: 3rem 0;
    position: relative;
}

.pricing-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.pricing-title {
    font-size: var(--font-size-large-medium);
    font-weight: 700;
    font-style: bold;
    line-height: 135%;
    text-align: center;
    color: #000;
}

.pricing-title .highlight {
    position: relative;
    display: inline-block;

    font-size: var(--font-size-large-medium);
    font-weight: bold;
    line-height: 135%;
    color: #fff;

    z-index: 1;
}

.pricing-title .highlight::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: #a4d0aa;
    width: 273px;
    height: 80px;
    border-radius: 1.25rem;
    transform: translate(-50%, -50%) rotate(-0.82deg);
    z-index: -1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 2rem;

    max-width: 75rem;
    width: 100%;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    min-width: 0;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.plan-title {
    font-size: var(--font-size-large-medium);
    font-weight: 700;
    font-weight: bold;
    line-height: 135%;
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-card.start .plan-title {
    color: #1589cd;
}

.pricing-card.standard .plan-title {
    color: #8335f3;
}

.pricing-card.premium .plan-title {
    color: #cd18e2;
}

.price-banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    left: -2rem;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.price-banner.start {
    background: linear-gradient(135deg, #3c7df8 0%, #42d0ff 100%);
}

.price-banner.standard {
    background: linear-gradient(135deg, #6306e1 0%, #9a56fd 100%);
}

.price-banner.premium {
    background: linear-gradient(135deg, #b902e4 0%, #ff4ed5 100%);
}

.price {
    font-family: var(--font-family-montserrat);
    font-size: 2.5rem;
    font-weight: 700;
    font-style: bold;
    line-height: 135%;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: var(--font-size-light);
    line-height: 1.5;
    color: #333;
}

.check-icon {
    color: #4caf50;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.cross-icon {
    color: #ff6b6b;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.pricing-btn {
    position: relative;
    overflow: hidden;
    align-self: center;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 2rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 12.5rem;
    width: 100%;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    user-select: none;
}

.pricing-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.pricing-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.3);
}

.pricing-btn:hover::before {
    left: 100%;
}

.pricing-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
    background: #111;
}

/* Pricing Section Adaptability */
@media (max-width: 1280px) {
    .pricing-grid {
        gap: 1rem;
    }

    .plan-title {
        font-size: 2.5rem;
    }

    .price {
        font-size: 2rem;
    }
}

@media (max-width: 1024px) {
    .pricing {
        padding: 3rem 0;
    }

    .pricing-content {
        gap: 2rem;
    }

    .pricing-title {
        font-size: 2.5rem;
    }

    .pricing-title .highlight {
        font-size: 2.5rem;
    }

    .pricing-title .highlight::before {
        width: 230px;
        height: 65px;
    }

    .pricing-grid {
        grid-template-columns: repeat(3, minmax(200px, 1fr));
        gap: 1rem;
    }

    .pricing-card {
        padding: 1.5rem 1rem;
        min-width: 0;
    }

    .plan-title {
        font-size: 1.5rem;
    }

    .price-banner {
        left: -1rem;

        margin-bottom: 1rem;
        padding: 1rem 1.5rem;
    }

    .price {
        font-size: 1.25rem;
    }

    .features-list {
        margin-bottom: 1rem;
    }

    .feature-item {
        font-size: var(--font-size-tiny);
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 3rem 0;
    }

    .pricing-content {
        gap: 1.25rem;
    }

    .pricing-title {
        font-size: 2rem;
    }

    .pricing-title .highlight::before {
        width: 220px;
        height: 60px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 35rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .plan-title {
        font-size: 2.5rem;
    }

    .price-banner {
        left: -1.5rem;
    }

    .price {
        font-size: 2rem;
    }

    .feature-item {
        font-size: var(--font-size-small);
    }

    .pricing-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .pricing-grid {
        max-width: 20rem;
    }

    .pricing-title {
        font-size: 1.5rem;
    }

    .pricing-title .highlight {
        font-size: 1.5rem;
    }

    .pricing-title .highlight::before {
        width: 140px;
        height: 45px;
        border-radius: 0.8rem;
    }

    .plan-title {
        font-size: 1.5rem;
    }

    .price {
        font-size: 1.5rem;
    }

    .feature-item {
        font-size: var(--font-size-micro);
    }

    .pricing-btn {
        padding: 0.875rem 1.5rem;
        font-size: var(--font-size-small);
    }
}

/* Contact Section */
.contact-section {
    position: relative;

    padding: 4rem 0;
    padding-bottom: 7.5rem;
}

.contact-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, #5aa3d7 0%, #af81d2 100%);
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-left {
    color: #fff;
}

.contact-subtitle {
    display: block;
    font-size: var(--font-size-light);
    font-weight: 700;
    opacity: 0.52;
}

.contact-title {
    font-size: var(--font-size-large-medium);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2.25rem;
}

.contact-title .highlight {
    position: relative;
    display: inline-block;

    font-size: 3.5rem;
    font-weight: bold;
    line-height: 135%;
    color: #fff;

    z-index: 1;
}

.contact-title .highlight::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;

    background: #a4d0aa;

    width: 310px;
    height: 70px;
    border-radius: 1rem;

    transform: translate(-50%, -50%) rotate(-0.82deg);
    z-index: -1;
}

.contact-description {
    font-size: var(--font-size-light);
    font-weight: 300;
    font-style: light;
    line-height: 100%;

    max-width: 35.8125rem;
    margin-bottom: 2.5rem;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    max-width: 500px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-link:hover {
    transform: translateY(-2px);
}

.phone-link:hover .contact-phone {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.phone-link:hover .phone-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.phone-link:active {
    transform: translateY(0);
}

.phone-link:active .contact-phone {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(0.98);
}

.phone-link:active .phone-icon {
    transform: scale(1.05) rotate(2deg);
}

.phone-icon {
    width: 4.1875rem;
    height: 4.1875rem;
    background: linear-gradient(135deg, #af81d2, #5aa3d7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.phone-icon svg {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-link:hover .phone-icon svg {
    transform: scale(1.1);
}

.phone-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-link:hover .phone-info {
    transform: translateX(5px);
}

.phone-text {
    font-size: var(--font-size-light);
    font-weight: 300;
    line-height: 100%;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.phone-link:hover .phone-text {
    opacity: 1;
}

.phone-number {
    font-size: var(--font-size-regular);
    font-weight: 700;
    line-height: 100%;
    transition: all 0.3s ease;
}

.phone-link:hover .phone-number {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-right {
    position: relative;
    top: 9.125rem;

    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    padding: 2.5rem;
    padding-top: 3.5rem;
    border-radius: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: var(--font-size-small);
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    font-size: var(--font-size-light);
    transition: all 0.3s ease;
    background: transparent;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #5aa3d7;
}

/* Show error styles only when field has been touched and is invalid */
.form-group input:not(:placeholder-shown):invalid,
.form-group textarea:not(:placeholder-shown):invalid {
    border-bottom-color: #ff6b6b;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.2);
    animation: shake 0.5s ease-in-out;
}

.form-group input:not(:placeholder-shown):invalid:focus,
.form-group textarea:not(:placeholder-shown):invalid:focus {
    border-bottom-color: #ff4757;
    box-shadow: 0 2px 12px rgba(255, 107, 107, 0.3);
}

.form-group input:not(:placeholder-shown):invalid::placeholder,
.form-group textarea:not(:placeholder-shown):invalid::placeholder {
    color: #ff6b6b;
    opacity: 0.7;
}

/* Error animation */
@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

/* Error message styling */
.form-group.error input,
.form-group.error textarea {
    border-bottom-color: #ff6b6b;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.2);
}

.form-group.error .error-message {
    display: block;
    color: #ff6b6b;
    font-size: var(--font-size-smaller);
    margin-top: 0.25rem;
    animation: fadeIn 0.3s ease-in-out;
}

.form-group .error-message {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Checkbox styles */
.checkbox-group {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: var(--font-size-small);
    line-height: 1.4;
    color: #333;
}

.checkbox-label input[type='checkbox'] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.checkbox-label:hover .checkmark {
    border-color: #5aa3d7;
    box-shadow: 0 2px 8px rgba(90, 163, 215, 0.2);
}

.checkbox-label input[type='checkbox']:checked ~ .checkmark {
    background-color: #5aa3d7;
    border-color: #5aa3d7;
}

.checkbox-label input[type='checkbox']:checked ~ .checkmark:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input[type='checkbox']:focus ~ .checkmark {
    border-color: #5aa3d7;
    box-shadow: 0 0 0 3px rgba(90, 163, 215, 0.2);
}

.checkbox-text {
    flex: 1;
}

.privacy-link {
    color: #5aa3d7;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #4a8bc4;
    text-decoration: underline;
}

/* Error state for checkbox */
.checkbox-group.error .checkmark {
    border-color: #ff6b6b;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.2);
}

.checkbox-group.error .checkbox-text {
    color: #ff6b6b;
}

.contact-submit-btn {
    align-self: center;

    background: #000;

    font-size: 1rem;
    color: #fff;
    font-weight: 600;

    max-width: 17.5rem;
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 2rem;

    cursor: pointer;
    transition: all 0.3s ease;
}

/* Contact Section Responsive */
@media (max-width: 1024px) {
    .contact-section {
        padding: 3rem 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .contact-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-title {
        font-size: 2.5rem;
        text-align: center;

        margin-bottom: 1.5rem;
    }

    .contact-title .highlight {
        font-size: 2.5rem;
    }

    .contact-title .highlight::before {
        width: 240px;
        height: 50px;
    }

    .contact-description {
        text-align: center;

        margin-bottom: 1.5rem;
    }

    .contact-right {
        top: 0rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }

    .contact-content {
        padding: 1.5rem;
    }

    .contact-subtitle {
        font-size: var(--font-size-small);
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-title .highlight {
        font-size: 2rem;
    }

    .contact-title .highlight::before {
        width: 190px;
        height: 45px;
    }

    .contact-description {
        font-size: var(--font-size-small);
    }

    .phone-text {
        font-size: var(--font-size-small);
    }

    .phone-number {
        font-size: var(--font-size-light);
    }

    .contact-right {
        padding: 1.5rem;
    }

    .contact-form {
        gap: 0.75rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .contact-phone {
        padding: 0.75rem 1rem;
    }

    .phone-icon {
        width: 3.125rem;
        height: 3.125rem;
    }

    .phone-link:hover {
        transform: none;
    }

    .phone-link:hover .phone-icon {
        transform: scale(1.05);
    }

    .phone-link:hover .phone-info {
        transform: none;
    }

    /* Checkbox responsive styles */
    .checkbox-label {
        font-size: var(--font-size-smaller);
        gap: 0.5rem;
    }

    .checkmark {
        height: 18px;
        width: 18px;
    }

    .checkbox-label input[type='checkbox']:checked ~ .checkmark:after {
        left: 5px;
        top: 1px;
        width: 5px;
        height: 9px;
    }
}

@media (max-width: 480px) {
    .contact-content {
        gap: 1.25rem;
    }

    .contact-subtitle {
        font-size: var(--font-size-smaller);
    }

    .contact-title {
        font-size: 1.5rem;

        margin-bottom: 1.25rem;
    }

    .contact-title .highlight {
        font-size: 1.5rem;
    }

    .contact-title .highlight::before {
        width: 140px;
        height: 35px;
        border-radius: 0.8rem;
    }

    .contact-description {
        font-size: var(--font-size-tiny);

        margin-bottom: 1.25rem;
    }

    .contact-phone {
        padding: 0.75rem 1rem;
    }

    .form-group label {
        font-size: var(--font-size-smaller);
    }

    .form-group input,
    .form-group textarea {
        font-size: var(--font-size-smaller);
    }

    .contact-submit-btn {
        font-size: var(--font-size-small);
    }
}

/* Footer Section */
.footer {
    position: relative;
    padding: 5rem 0 4rem;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    background: #fff;
    border-radius: 2rem;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-brand {
    margin-bottom: 0.5rem;
}

.footer-brand-link {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    text-decoration: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.footer-brand-link:hover {
    color: #5aa3d7;
    transform: translateY(-2px);
}

.footer-brand-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #5aa3d7, #af81d2);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-brand-link:hover::after {
    width: 100%;
}

.footer-slogan {
    font-size: 1.1rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.footer-contact {
    margin-bottom: 2rem;
}

.footer-phone-link {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.footer-phone-link:hover {
    color: #fff;
    background: linear-gradient(135deg, #5aa3d7, #af81d2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(90, 163, 215, 0.3);
}

.footer-phone-link:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(90, 163, 215, 0.2);
}

.footer-email-link {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.footer-email-link:hover {
    color: #fff;
    background: linear-gradient(135deg, #af81d2, #5aa3d7);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(175, 129, 210, 0.3);
}

.footer-email-link:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(175, 129, 210, 0.2);
}

.footer-separator {
    width: 80%;
    height: 1px;
    background: #e0e0e0;
    margin: 0 auto 2rem auto;
}

.footer-legal {
    color: #999;
}

.footer-legal-text {
    font-size: var(--font-size-small);
    font-weight: 400;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.footer-privacy-link {
    font-size: var(--font-size-small);
    font-weight: 400;
    color: #999;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.footer-privacy-link:hover {
    color: #5aa3d7;
    background: rgba(90, 163, 215, 0.1);
    transform: translateY(-1px);
}

.footer-privacy-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: #5aa3d7;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.footer-privacy-link:hover::before {
    width: 100%;
}

/* Footer decorative blob */
.footer-content::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -100px;
    width: 300px;
    height: 200px;
    background: linear-gradient(135deg, #a2c5bf, #b5e8b7);
    border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
    z-index: -1;
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .footer {
        padding: 3rem 0;
    }
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0;
    }

    .footer-content {
        padding: 2rem 1.5rem;
    }

    .footer-brand-link {
        font-size: 2rem;
    }

    .footer-slogan {
        font-size: 1rem;
    }

    .footer-phone-link,
    .footer-email-link {
        font-size: 1.1rem;
    }

    .footer-legal-text,
    .footer-privacy-link {
        font-size: var(--font-size-smaller);
    }

    .footer-content::after {
        width: 200px;
        height: 150px;
        top: -30px;
        left: -50px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 1.5rem 1rem;
    }

    .footer-brand-link {
        font-size: 1.5rem;
    }

    .footer-slogan {
        font-size: 0.9rem;
    }

    .footer-phone-link,
    .footer-email-link {
        font-size: 1rem;
    }

    .footer-content::after {
        width: 150px;
        height: 100px;
        top: -20px;
        right: -30px;
    }
}

/* Modal Window Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    display: block;
    opacity: 1;
}

.modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-container {
    transform: translate(-50%, -50%) scale(1);
}

/* Custom scrollbar for modal */
.modal-container::-webkit-scrollbar {
    width: 8px;
}

.modal-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.modal-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.modal-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Firefox scrollbar */
.modal-container {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.1);
}

.modal-content {
    background: linear-gradient(#5aa3d7 0%, #af81d2 100%);
    /* background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%); */
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-content::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(
        135deg,
        rgba(90, 163, 215, 0.1),
        rgba(175, 129, 210, 0.1),
        rgba(164, 208, 170, 0.1)
    );
    border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
    z-index: -1;
    animation: modalMorph 12s ease-in-out infinite;
}

.modal-content::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: linear-gradient(
        135deg,
        rgba(164, 208, 170, 0.08),
        rgba(90, 163, 215, 0.08)
    );
    border-radius: 50% 40% 60% 30% / 40% 50% 30% 60%;
    z-index: -1;
    animation: modalMorph 10s ease-in-out infinite reverse;
}

@keyframes modalMorph {
    0% {
        border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
        transform: rotate(0deg);
    }
    25% {
        border-radius: 50% 50% 60% 40% / 50% 40% 60% 50%;
        transform: rotate(90deg);
    }
    50% {
        border-radius: 70% 30% 50% 50% / 30% 70% 50% 50%;
        transform: rotate(180deg);
    }
    75% {
        border-radius: 55% 45% 65% 35% / 45% 55% 35% 65%;
        transform: rotate(270deg);
    }
    100% {
        border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
        transform: rotate(360deg);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.modal-close:active {
    transform: scale(0.95);
}

.modal-close svg {
    width: 20px;
    height: 20px;
    color: #333;
    transition: color 0.3s ease;
}

.modal-close:hover svg {
    color: #000;
}

.modal-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-title {
    font-size: var(--font-size-medium);
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 1rem;
    color: #fff;
}

.modal-subtitle {
    display: block;
    font-size: var(--font-size-light);
    font-weight: 700;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.modal-title .highlight {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: var(--font-size-medium);
    z-index: 1;
}

.modal-title .highlight::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: #a4d0aa;
    width: 180px;
    height: 50px;
    border-radius: 1rem;
    transform: translate(-50%, -50%) rotate(-0.82deg);
    z-index: -1;
}

/* Pricing modal title colors */

#pricingModalOverlay .modal-title .highlight::before {
    background: #fff;
}

#pricingModalOverlay .modal-title .highlight.start {
    color: #1589cd;
}

#pricingModalOverlay .modal-title .highlight.standard {
    color: #8335f3;
}

#pricingModalOverlay .modal-title .highlight.standard::before {
    width: 240px;
    height: 50px;
}

#pricingModalOverlay .modal-title .highlight.premium {
    color: #cd18e2;
}

#pricingModalOverlay .modal-title .highlight.premium::before {
    width: 220px;
    height: 50px;
}

.modal-form-container {
    background: #fff;
    border-radius: 1.5rem;
    padding: 1.5rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.modal-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-form .form-group label {
    font-size: var(--font-size-small);
    font-weight: 600;
    color: #333;
}

.modal-form .form-group input,
.modal-form .form-group textarea {
    padding: 0.75rem;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    font-size: var(--font-size-light);
    transition: all 0.3s ease;
    background: transparent;
    border-radius: 0;
}

.modal-form .form-group input:focus,
.modal-form .form-group textarea:focus {
    outline: none;
    border-bottom-color: #5aa3d7;
}

.modal-form .form-group textarea {
    resize: vertical;
    min-height: 60px;
    height: 60px;
}

.modal-submit-btn {
    align-self: center;
    background: #000;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
    max-width: 17.5rem;
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 95vh;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .modal-title {
        font-size: 2rem;
    }

    .modal-title .highlight::before {
        width: 160px;
        height: 50px;
    }

    .modal-form-container {
        padding: 1rem;
    }

    .modal-form .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .modal-form .form-group textarea {
        min-height: 50px;
        max-height: 100px;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
    }

    .modal-close svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .modal-container {
        width: 98%;
        max-height: 98vh;
        margin: 1vh auto;
    }

    .modal-content {
        padding: 1rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-title .highlight::before {
        width: 140px;
        height: 45px;
    }

    .modal-form-container {
        padding: 0.75rem;
    }

    .modal-submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .modal-form .form-group textarea {
        min-height: 40px;
        max-height: 80px;
    }
}
