/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #0c0266;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 23px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #0c0266;
    color: #f6f5ff;
}

.btn-primary:hover {
    background: #1a0e8a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(12, 2, 102, 0.3);
}

.btn-lg {
    padding: 16px 32px;
}

.btn-full {
    width: 100%;
}

/* ==================== BADGES ==================== */
.badge {
    display: inline-block;
    padding: 5px 20px;
    border-radius: 51px;
    font-size: 13.7px;
    font-weight: 500;
    color: #0c0266;
    background: #ffffff;
}

.badge-light {
    background: #efedff;
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .badge {
    margin-bottom: 15px;
}

.section-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    color: #0c0266;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    font-weight: 500;
    color: #67647f;
    max-width: 833px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1240px;
    z-index: 1000;
    padding: 0 20px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-radius: 12px;
    padding: 10px 30px;
    border: 1px solid rgba(12, 2, 102, 0.15);
    box-shadow: 0 10px 40px rgba(12, 2, 102, 0.08);
}

.logo img {
    height: 38px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: #676580;
    transition: color 0.3s;
}

.nav-links a.active,
.nav-links a:hover {
    color: #0c0266;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #0c0266;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    background: #f8f6ff;
    border-radius: 0 0 20px 20px;
    padding: 120px 0 60px;
    overflow: hidden;
    min-height: 100vh;
}

.hero-bg-blur {
    position: absolute;
    width: 1165px;
    height: 900px;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -40%);
    background: rgba(105, 93, 255, 0.2);
    filter: blur(533px);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 1123px;
    margin: 0 auto;
    padding: 40px 20px;
    z-index: 2;
}

.hero-content .badge {
    margin-bottom: 15px;
}

.hero-content h1 {
    font-family: 'Inter', sans-serif;
    font-size: 55px;
    font-weight: 500;
    line-height: 1.2;
    color: #0c0266;
    margin-bottom: 20px;
}

.hero-content .hero-description {
    font-size: 18px;
    font-weight: 500;
    color: #67647f;
    max-width: 714px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

.hero-illustration {
    position: relative;
    max-width: 1315px;
    margin: 40px auto 0;
    padding: 0 20px;
    z-index: 2;
}

.hero-img {
    width: 100%;
    max-width: 1315px;
    margin: 0 auto;
}

.floating-tag {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.floating-tag .tag-arrow {
    font-size: 10px;
}

.tag-development {
    top: 5%;
    left: 5%;
    background: #e9e4ff;
    color: #7157e8;
}

.tag-design {
    bottom: 5%;
    right: 10%;
    background: #fff1e7;
    color: #fc9744;
}

.tag-quality {
    bottom: 30%;
    left: 3%;
    background: #e7ffe8;
    color: #4caf50;
}

.tag-marketing {
    bottom: 15%;
    left: 15%;
    background: #e5f1ff;
    color: #357fd5;
}

/* ==================== ABOUT SECTION ==================== */
.about {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 3px;
    overflow: hidden;
}

.feature-card-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
    border-radius: 23px;
    background: linear-gradient(135deg, rgba(73, 55, 220, 0.05) 0%, rgba(73, 55, 220, 0.02) 100%);
}

.feature-img {
    flex-shrink: 0;
    width: 255px;
    height: 165px;
    border-radius: 20px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-img img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #0c0266;
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 16px;
    font-weight: 400;
    color: #676580;
    line-height: 1.5;
}

/* ==================== COMPANY SECTION ==================== */
.company {
    position: relative;
    background: #faf9ff;
    padding: 100px 0;
    overflow: hidden;
}

.company-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(73, 55, 220, 0.08) 0%, rgba(73, 55, 220, 0) 50%);
    pointer-events: none;
}

.company-container {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.company-content {
    flex: 1;
    max-width: 634px;
}

.company-content .badge {
    margin-bottom: 20px;
}

.company-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}

.company-content p {
    font-size: 18px;
    font-weight: 500;
    color: #67647f;
    line-height: 1.5;
    margin-bottom: 30px;
}

.stats-row {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 44px;
    height: 42px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-number {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #7a788a;
}

.stat-number.stat-highlight {
    color: #0c0266;
}

.stat-label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #676580;
}

.company-visual {
    flex: 1;
    max-width: 550px;
}

.company-visual img {
    width: 100%;
}

/* ==================== SERVICES SECTION ==================== */
.services {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.service-card {
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 3px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(12, 2, 102, 0.1);
}

.service-card-inner {
    border-radius: 23px;
    background: linear-gradient(135deg, rgba(73, 55, 220, 0.05) 0%, rgba(73, 55, 220, 0.02) 100%);
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 227px;
    background: #ffffff;
    border-radius: 20px;
    margin: 15px;
    width: calc(100% - 30px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-img img {
    width: 85%;
    height: 85%;
    object-fit: contain;
}

.service-text {
    padding: 10px 20px 25px;
}

.service-text h3 {
    font-size: 22px;
    font-weight: 600;
    color: #0c0266;
    margin-bottom: 8px;
}

.service-text p {
    font-size: 15px;
    color: #676580;
    line-height: 1.5;
}

.services-cta {
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 40px;
}

.services-cta p {
    font-size: 18px;
    font-weight: 500;
    color: #67647f;
    max-width: 833px;
    margin: 0 auto 25px;
}

/* ==================== WHAT WE OFFER SECTION ==================== */
.what-we-offer {
    position: relative;
    background: #faf9ff;
    padding: 100px 0;
    overflow: hidden;
}

.offer-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(73, 55, 220, 0.08) 0%, rgba(73, 55, 220, 0) 50%);
    pointer-events: none;
}

.offer-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 60px;
}

.offer-content {
    flex: 1;
    max-width: 634px;
}

.offer-content .badge {
    margin-bottom: 20px;
}

.offer-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}

.offer-content p {
    font-size: 18px;
    font-weight: 500;
    color: #67647f;
    line-height: 1.5;
    margin-bottom: 30px;
}

.offer-visual {
    flex: 1;
    max-width: 500px;
}

.offer-visual img {
    width: 100%;
}

/* ==================== PORTFOLIO SECTION ==================== */
.portfolio {
    padding: 100px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-card {
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 3px;
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 3px solid #4937dc;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(73, 55, 220, 0.12);
}

.portfolio-card-inner {
    border-radius: 23px;
    overflow: hidden;
}

.portfolio-img {
    width: calc(100% - 30px);
    height: 227px;
    background: #ffffff;
    border-radius: 20px;
    margin: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.portfolio-img img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.portfolio-img-syncsnap img {
    max-width: 95%;
    max-height: 95%;
}

.portfolio-text {
    padding: 10px 20px 25px;
}

.portfolio-titles {
    margin-bottom: 15px;
}

.portfolio-titles h3 {
    font-family: 'Inter Display', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #0c0266;
    margin-bottom: 4px;
}

.portfolio-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #3c3b4e;
}

.portfolio-text p {
    font-size: 16px;
    font-weight: 500;
    color: #676580;
    line-height: 1.5;
    margin-bottom: 20px;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #4937dc;
    transition: gap 0.3s;
}

.portfolio-link:hover {
    gap: 12px;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
    position: relative;
    padding: 100px 0 0;
    overflow: hidden;
}

.testimonials-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.testimonial-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card {
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 3px;
}

.testimonial-card > div,
.testimonial-card > p {
    padding: 0;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(73, 55, 220, 0.05) 0%, rgba(73, 55, 220, 0.02) 100%);
    padding: 20px 25px;
    border-radius: 23px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 58px;
    object-fit: cover;
    background: #0c0266;
}

.testimonial-header h4 {
    font-size: 20px;
    font-weight: 600;
    color: #0c0266;
}

.testimonial-header span {
    font-size: 16px;
    color: #676580;
}

.testimonial-card > p {
    font-size: 16px;
    color: #51505d;
    line-height: 1.5;
}

.testimonials-fade {
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, #ffffff 80%);
    margin-top: -150px;
    position: relative;
    z-index: 2;
}

/* ==================== FAQ SECTION ==================== */
.faq {
    padding: 100px 0;
}

.faq .container {
    position: relative;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.faq-header .badge {
    margin-bottom: 15px;
}

.faq-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 46px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}

.faq-header p {
    font-size: 18px;
    font-weight: 500;
    color: #67647f;
    max-width: 516px;
    line-height: 1.5;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #f0f0f3;
    border-radius: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 21px 26px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #676580;
    text-align: left;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-cta-card {
    background: #f0efff;
    border-radius: 20px;
    padding: 30px 40px;
    text-align: center;
    margin-top: 40px;
    max-width: 503px;
    margin-left: auto;
}

.faq-cta-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
}

.faq-cta-card p {
    font-size: 16px;
    color: #5d5d5d;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    position: relative;
    background: #faf9ff;
    padding: 100px 0;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(126, 103, 234, 0.15) 0%, transparent 44%);
    pointer-events: none;
}

.contact .container {
    position: relative;
}

.contact-layout {
    display: grid;
    grid-template-columns: 357px 1fr;
    gap: 60px;
    align-items: start;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #0c0266;
    margin-bottom: 5px;
}

.contact-block > p {
    font-size: 18px;
    font-weight: 500;
    color: #67647f;
    margin-bottom: 15px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-link a {
    font-size: 18px;
    font-weight: 600;
    color: #3f3d56;
    transition: color 0.3s;
}

.contact-link a:hover {
    color: #4937dc;
}

.contact-form-wrapper {
    max-width: 610px;
}

.contact-form {
    background: linear-gradient(135deg, rgba(73, 55, 220, 0.08) 0%, rgba(73, 55, 220, 0.03) 100%);
    border-radius: 20px;
    padding: 35px 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #676580;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: #f7f6ff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #0f1728;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0b0b0;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #4937dc;
}

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

.phone-input {
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: #f7f6ff;
    overflow: hidden;
}

.phone-country {
    padding: 12px 8px 12px 16px;
    border: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #0f1728;
    outline: none;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.phone-input input {
    border: none;
    border-radius: 0;
    background: transparent;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    accent-color: #4937dc;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 16px;
    font-weight: 500;
    color: #454545;
    cursor: pointer;
}

/* ==================== FOOTER ==================== */
.footer {
    position: relative;
    padding: 80px 0 40px;
    overflow: hidden;
}

.footer-blur {
    position: absolute;
    width: 882px;
    height: 681px;
    left: 50%;
    bottom: -200px;
    transform: translateX(-50%);
    background: rgba(105, 93, 255, 0.15);
    filter: blur(300px);
    border-radius: 50%;
    pointer-events: none;
}

.footer .container {
    position: relative;
}

.newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.newsletter h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0c0266;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    width: 355px;
    padding: 15px 16px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    outline: none;
    background: #fff;
}

.newsletter-form input::placeholder {
    color: #b0b0b0;
}

.footer-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 283px 1fr 1fr;
    gap: 80px;
}

.footer-logo {
    height: 61px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 16px;
    color: #67647f;
    line-height: 1.5;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
}

.social-link:hover {
    background: #f0efff;
    transform: translateY(-3px);
}

.footer-links-col h4 {
    font-size: 18px;
    font-weight: 600;
    color: #45425c;
    margin-bottom: 25px;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links-col a,
.footer-links-col span {
    font-size: 16px;
    color: #67647f;
    transition: color 0.3s;
}

.footer-links-col a:hover {
    color: #4937dc;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-list svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom span {
    font-size: 16px;
    color: #676580;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-size: 16px;
    color: #676580;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #4937dc;
}

/* ==================== RESPONSIVE ==================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .section-header h2,
    .company-content h2,
    .offer-content h2,
    .faq-header h2 {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card-inner {
        flex-direction: column;
    }

    .feature-img {
        width: 100%;
        height: 200px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .company-container,
    .offer-container {
        flex-direction: column;
    }

    .company-content,
    .offer-content {
        max-width: 100%;
    }

    .company-visual,
    .offer-visual {
        max-width: 100%;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-cta-card {
        max-width: 100%;
        margin-left: 0;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-col:nth-child(3) {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

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

    .stats-row {
        flex-wrap: wrap;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        box-shadow: 0 10px 40px rgba(12, 2, 102, 0.15);
    }

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

    .navbar .btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content .hero-description {
        font-size: 16px;
    }

    .section-header h2,
    .company-content h2,
    .offer-content h2,
    .faq-header h2 {
        font-size: 28px;
    }

    .section-header p,
    .company-content p,
    .offer-content p {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-masonry {
        grid-template-columns: 1fr;
    }

    .testimonial-col:nth-child(3) {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-form input {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .stats-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .floating-tag {
        display: none;
    }

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

    .btn {
        font-size: 16px;
        padding: 12px 20px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
    }

    .section-header h2,
    .company-content h2,
    .offer-content h2,
    .faq-header h2 {
        font-size: 24px;
    }

    .faq-question {
        font-size: 15px;
        padding: 16px 18px;
    }

    .feature-text h3 {
        font-size: 22px;
    }

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

}
