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

:root {
    --primary: #FDC312;
    --primary-dark: #E5B010;
    --primary-light: #FEF3CD;
    --black: #000000;
    --grey-50: #F9FAFB;
    --grey-100: #F3F4F6;
    --grey-200: #E5E7EB;
    --grey-300: #D1D5DB;
    --grey-600: #4B5563;
    --grey-700: #374151;
    --grey-900: #111827;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--grey-900);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 28px;
    max-width: 580px;
    width: 90%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-title {
    font-size: clamp(22px, 4vw, 26px);
    font-weight: 700;
    color: var(--grey-900);
    text-align: center;
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: clamp(14px, 2.5vw, 15px);
    color: var(--grey-600);
    text-align: center;
    margin-bottom: 28px;
}

.modal-choices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.choice-card {
    background: var(--grey-50);
    border: 2px solid var(--grey-200);
    border-radius: 14px;
    padding: 28px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.choice-card:hover {
    border-color: var(--primary);
    background: var(--white);
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(253, 195, 18, 0.2);
}

.choice-card:active {
    transform: translateY(-3px);
}

.choice-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    margin-bottom: 4px;
}

.choice-icon svg {
    color: var(--black);
    width: 42px;
    height: 42px;
}

.choice-card h3 {
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 700;
    color: var(--grey-900);
    margin: 0;
}

.choice-card p {
    font-size: clamp(12px, 2vw, 13px);
    color: var(--grey-600);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 28px 20px;
    }

    .modal-choices {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .choice-card {
        padding: 24px 18px;
    }

    .choice-icon {
        width: 60px;
        height: 60px;
    }

    .choice-icon svg {
        width: 38px;
        height: 38px;
    }
}

.profile-switch-header {
    background: var(--grey-900);
    color: var(--white);
    border: 2px solid var(--primary);
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-switch-header::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.profile-switch-header:hover {
    background: var(--primary);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 195, 18, 0.4);
}

.profile-switch-header:hover::before {
    background: var(--black);
}

.user-section {
    display: none;
}

.user-section.active {
    display: block;
}

.feature-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.feature-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.feature-modal-content {
    background: var(--white);
    border-radius: 16px;
    max-width: 1100px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    animation: featureModalSlideIn 0.4s ease;
    position: relative;
}

@keyframes featureModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.feature-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--grey-900);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.feature-modal-close:hover {
    background: var(--primary);
    color: var(--black);
    transform: rotate(90deg);
}

.feature-modal-body {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 40px 40px 40px;
}

.feature-modal-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--grey-900);
}

.feature-modal-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.feature-modal-info h2 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: var(--grey-900);
    margin-bottom: 16px;
}

.feature-modal-info .feature-category {
    display: inline-block;
    background: var(--primary);
    color: var(--black);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.feature-modal-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--grey-700);
    margin-bottom: 24px;
}

.feature-modal-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--grey-900);
    margin-bottom: 16px;
    margin-top: 24px;
}

.feature-modal-info ul {
    list-style: none;
    padding: 0;
}

.feature-modal-info ul li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: var(--grey-700);
    line-height: 1.6;
}

.feature-modal-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 18px;
}

.feature-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

@media (max-width: 968px) {
    .feature-modal-body {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 50px 30px 30px 30px;
    }

    .feature-modal-video {
        order: -1;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}


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

.logo-image-wrapper {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grey-50);
    border: 2px solid var(--grey-200);
    transition: all 0.3s ease;
}

.logo-image-wrapper:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.logo .logo-image {
    height: 40px;
    width: auto;
}

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

.nav a {
    text-decoration: none;
    color: var(--grey-900);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
    white-space: nowrap;
}

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

.btn-primary {
    background: var(--primary);
    color: var(--black);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 195, 18, 0.4);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--grey-900);
    transition: 0.3s;
}

.section-heading {
    font-size: clamp(32px, 5vw, 40px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--grey-900);
}

.section-subheading {
    text-align: center;
    font-size: clamp(16px, 2.5vw, 18px);
    color: var(--grey-600);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-detail {
    padding: clamp(30px, 10vw, 40px) 0;
    background: var(--white);
}

.features-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #FEF3CD 0%, #FDC312 100%);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 16px 24px;
    margin: 0 auto 40px;
    max-width: 700px;
    color: var(--grey-900);
    font-weight: 500;
    font-size: clamp(14px, 2vw, 16px);
    box-shadow: 0 4px 12px rgba(253, 195, 18, 0.2);
    animation: hint-pulse 3s ease-in-out infinite;
}

.features-hint svg {
    flex-shrink: 0;
    color: var(--grey-900);
}

@keyframes hint-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(253, 195, 18, 0.2);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 16px rgba(253, 195, 18, 0.3);
    }
}

@media (max-width: 768px) {
    .features-hint {
        padding: 14px 20px;
        font-size: 14px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: clamp(24px, 4vw, 32px);
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: var(--grey-50);
    border-radius: 20px;
    padding: clamp(28px, 5vw, 40px);
    border: 2px solid var(--grey-200);
    transition: all 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
}

.feature-icon-wrapper {
    margin-bottom: 24px;
}

.feature-svg {
    width: clamp(60px, 10vw, 80px);
    height: clamp(60px, 10vw, 80px);
}

.feature-card h3 {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--grey-900);
}

.feature-card p {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.6;
    color: var(--grey-600);
    text-align: justify;
}

/* Konta-SMART Banner Styles */
.konta-smart-banner {
    position: relative;
    min-height: 400px;
    max-width: 1200px;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: clamp(40px, 8vw, 80px) 20px;
}

.konta-smart-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
}

.konta-smart-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.konta-smart-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.konta-smart-title .slogan{
    font-size: 0.4em;
}

.konta-smart-description {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--white);
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .konta-smart-banner {
        min-height: 300px;
    }

    .konta-smart-banner::before {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);
    }

    .konta-smart-content {
        padding-left: 20px;
        max-width: 100%;
    }
}



.video-section {
    padding: clamp(60px, 10vw, 100px) 0;
    background: var(--grey-50);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pricing {
    padding: clamp(60px, 10vw, 100px) 0;
    background: var(--white);
}

.pricing-tabs-container {
    background: var(--grey-50);
    border-bottom: 1px solid var(--grey-200);
    /* position: sticky; */
    /* top: 70px; */
    z-index: 100;
}

.pricing-tabs {
    display: flex;
    gap: 0;
    justify-content: center;
    padding: 12px 0;
}

.pricing-tab-button {
    background: transparent;
    border: none;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: var(--grey-600);
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
}

.pricing-tab-button:hover {
    color: var(--grey-900);
    background: var(--grey-100);
}

.pricing-tab-button.active {
    color: var(--primary-dark);
    border-bottom-color: var(--primary);
}

.pricing-tab-content {
    display: none;
}

.pricing-tab-content.active {
    display: block;
}


.pricing-gratuit {
    background: linear-gradient(135deg, #F0FDF4 0%, #ffffff 100%);
}

.pricing-pro {
    background: var(--white);
}

@media (max-width: 768px) {
    .pricing-tab-button {
        padding: 10px 24px;
        font-size: 14px;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(20px, 4vw, 32px);
    max-width: 1200px;
    margin: 0 auto 60px;
}

.pricing-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    max-width: 900px;
}

.pricing-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    max-width: 1200px;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: clamp(32px, 5vw, 40px) clamp(24px, 4vw, 32px);
    border: 2px solid var(--grey-200);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(253, 195, 18, 0.25);
}

.pricing-card.free-card {
    border-color: #10B981;
    background: linear-gradient(135deg, #F0FDF4 0%, #ffffff 100%);
}

.badge {
    position: absolute;
    top: -14px;
    right: 32px;
    background: var(--primary);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: clamp(11px, 1.8vw, 13px);
    font-weight: 700;
}

.free-badge {
    position: absolute;
    top: -14px;
    right: 32px;
    background: #10B981;
    color: white;
    padding: 8px 20px;
    border-radius: 24px;
    font-size: clamp(11px, 1.8vw, 13px);
    font-weight: 700;
}

.pricing-header {
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--grey-200);
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: clamp(24px, 4vw, 28px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--grey-900);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.currency {
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 700;
    color: var(--primary);
}

.free-card .currency {
    color: #10B981;
}

.period {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--grey-600);
    font-weight: 600;
}

.pricing-features h4 {
    font-size: clamp(11px, 1.8vw, 12px);
    font-weight: 700;
    color: var(--grey-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    margin-top: 24px;
}

.pricing-features h4:first-child {
    margin-top: 0;
}

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

.pricing-features ul li {
    padding: 10px 0;
    font-size: clamp(13px, 2vw, 15px);
    position: relative;
    padding-left: 28px;
    color: var(--grey-700);
}

.pricing-features ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 18px;
}

.free-card .pricing-features ul li::before {
    color: #10B981;
}

.btn-pricing {
    background: transparent;
    color: var(--primary);
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    border: 2px solid var(--primary);
    transition: all 0.3s;
    margin-top: auto;
    display: block;
    font-size: clamp(14px, 2vw, 16px);
}

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

.btn-pricing-primary {
    background: var(--primary);
    color: var(--black);
}

.btn-pricing-primary:hover {
    background: var(--primary-dark);
}

.free-card .btn-pricing {
    border-color: #10B981;
    color: #10B981;
}

.free-card .btn-pricing:hover {
    background: #10B981;
    color: white;
}

.free-account-policy {
    background: var(--grey-50);
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: clamp(32px, 5vw, 40px);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.free-account-policy h3 {
    font-size: clamp(20px, 3.5vw, 24px);
    font-weight: 700;
    color: var(--grey-900);
    margin-bottom: 12px;
}

.free-account-policy p {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--grey-600);
    line-height: 1.7;
}

.links-section {
    padding: clamp(60px, 10vw, 100px) 0;
    background: var(--grey-50);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(24px, 4vw, 32px);
    max-width: 1000px;
    margin: 0 auto;
}

.link-card {
    background: var(--white);
    border: 2px solid var(--grey-200);
    border-radius: 16px;
    padding: clamp(28px, 5vw, 36px);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.link-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.link-icon {
    width: clamp(56px, 10vw, 72px);
    height: clamp(56px, 10vw, 72px);
    background: linear-gradient(135deg, #FDC312 0%, #E5B010 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    margin-bottom: 20px;
}

.link-icon svg {
    width: clamp(36px, 6vw, 48px);
    height: clamp(36px, 6vw, 48px);
}

.link-card h3 {
    font-size: clamp(18px, 3vw, 20px);
    font-weight: 700;
    color: var(--grey-900);
    margin-bottom: 8px;
}

.link-card p {
    font-size: clamp(13px, 2vw, 15px);
    color: var(--grey-600);
    margin-bottom: 16px;
}

.link-arrow {
    font-size: clamp(24px, 4vw, 32px);
    color: var(--primary);
    font-weight: 700;
}

.contact {
    padding: clamp(60px, 10vw, 100px) 0;
    background: var(--white);
}

.contact-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info p {
    font-size: clamp(16px, 2.5vw, 18px);
    color: var(--grey-600);
    margin-bottom: 16px;
}

.contact-email {
    font-size: clamp(18px, 3vw, 20px);
    font-weight: 600;
}

.contact-email a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-email a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.footer {
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(253, 195, 18, 0.5), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: clamp(40px, 6vw, 60px);
    margin-bottom: 60px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: clamp(24px, 3vw, 28px);
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #FDC312 0%, #E5B010 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    font-size: clamp(14px, 2vw, 15px);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s;
    font-size: clamp(14px, 2vw, 15px);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
    font-size: clamp(14px, 2vw, 15px);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: clamp(13px, 2vw, 14px);
    color: rgba(255, 255, 255, 0.4);
}

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

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 73px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 73px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 20px;
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--grey-200);
    }

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

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

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

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

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

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

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

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

