:root {
    /* Brand Colors */
    --color-primary: #2A66FF;
    /* NEXT Blue */
    --color-primary-dark: #0D1A3A;
    /* NEXT Navy */
    --color-secondary-sky: #E8F0FF;
    /* NEXT Sky */
    --color-secondary-mint: #29CCB1;
    /* NEXT Mint */
    --color-secondary-orange: #FF8A45;
    /* NEXT Orange */

    /* Neutral Colors */
    --color-gray-900: #1A1A1A;
    --color-gray-700: #4D4D4D;
    --color-gray-500: #8F8F8F;
    --color-gray-200: #E6E6E6;
    --color-gray-50: #FAFAFA;
    --color-white: #FFFFFF;

    /* Semantic Colors */
    --color-text-main: var(--color-gray-900);
    --color-text-body: var(--color-gray-700);
    --color-text-sub: var(--color-gray-500);
    --color-border: var(--color-gray-200);
    --color-bg-main: var(--color-white);
    --color-bg-sub: var(--color-gray-50);

    /* Typography */
    --font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 72px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--color-text-body);
    line-height: 1.6;
    background-color: var(--color-bg-main);
    word-break: keep-all;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

ul,
ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-text-main);
    font-weight: 700;
    line-height: 1.4;
}

.text-primary {
    color: var(--color-primary);
}

.text-mint {
    color: var(--color-secondary-mint);
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Components: Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #1a50e0;
    /* Slightly darker blue */
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(42, 102, 255, 0.25);
}

.btn-secondary {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    background-color: transparent;
}

.btn-secondary:hover {
    background-color: rgba(42, 102, 255, 0.05);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary-dark);
    letter-spacing: -0.5px;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-list a {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-body);
}

.nav-list a:hover {
    color: var(--color-primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--color-gray-900);
}

.mobile-menu {
    display: none;
}

/* Responsive Header */
@media (max-width: 768px) {

    .nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
        /* Ensure button is above menu */
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .mobile-menu-btn span {
        transition: all 0.3s ease;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-white);
        padding: 100px 20px 40px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .mobile-nav-list {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .mobile-nav-list a {
        font-size: 20px;
        font-weight: 700;
        color: var(--color-gray-900);
        display: block;
    }

    .mobile-cta {
        margin-top: 40px;
    }
}

/* Hero Section */
.hero-section {
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 100px;
    background: linear-gradient(180deg, var(--color-secondary-sky) 0%, #FFFFFF 100%);
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 580px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: var(--color-gray-900);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--color-gray-700);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-visual {
    flex: 1;
    position: relative;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 16px;
    width: 100%;
    aspect-ratio: 16/10;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mockup-header {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-gray-200);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-gray-200);
}

.mockup-body {
    display: flex;
    gap: 16px;
    height: calc(100% - 40px);
}

.sidebar {
    width: 60px;
    background-color: var(--color-gray-50);
    border-radius: 8px;
    height: 100%;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chart-area {
    height: 60%;
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.chart-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-gray-700);
}

.chart-value {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-secondary-mint);
    background-color: rgba(41, 204, 177, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.chart-bars {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 8px;
}

.bar-group {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.bar {
    width: 100%;
    max-width: 16px;
    background-color: var(--color-primary);
    border-radius: 4px 4px 0 0;
    height: 0;
    /* Animated via JS */
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.bar:hover {
    opacity: 1;
    transform: scaleY(1.05);
    transform-origin: bottom;
}

.bar-label {
    font-size: 10px;
    color: var(--color-gray-500);
    margin-top: 6px;
    font-weight: 500;
}

.list-area {
    height: 40%;
    background-color: var(--color-gray-50);
    border-radius: 8px;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--color-white);
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 240px;
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

.card-1 {
    top: -30px;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 40px;
    left: -40px;
    animation-delay: 3s;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.icon-box.mint {
    background-color: rgba(41, 204, 177, 0.1);
    color: var(--color-secondary-mint);
}

.icon-box.blue {
    background-color: rgba(42, 102, 255, 0.1);
    color: var(--color-primary);
}

.text-box .card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 2px;
}

.text-box .card-desc {
    font-size: 12px;
    color: var(--color-gray-500);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .floating-card {
        display: none;
        /* Hide floating cards on mobile for cleaner look */
    }

    /* Mobile Chart Adjustments */
    .chart-area {
        padding: 12px;
        height: 55%;
    }

    .chart-title {
        font-size: 11px;
    }

    .chart-value {
        font-size: 11px;
        padding: 2px 4px;
    }

    .bar {
        max-width: 12px;
    }

    .bar-label {
        font-size: 9px;
        margin-top: 4px;
    }
}

/* Feature Highlights Section */
.features-section {
    padding: 100px 0;
    background-color: var(--color-gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background-color: var(--color-white);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
    background-color: var(--color-gray-50);
    transition: background-color 0.3s ease;
}

.feature-card:hover .feature-icon.icon-collab {
    background-color: rgba(42, 102, 255, 0.1);
    color: var(--color-primary);
}

.feature-card:hover .feature-icon.icon-hr {
    background-color: rgba(41, 204, 177, 0.1);
    color: var(--color-secondary-mint);
}

.feature-card:hover .feature-icon.icon-accounting {
    background-color: rgba(255, 138, 69, 0.1);
    color: var(--color-secondary-orange);
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-gray-900);
}

.feature-desc {
    font-size: 16px;
    color: var(--color-gray-700);
    line-height: 1.6;
}

/* Detailed Features Section (Zig-Zag) */
.details-section {
    padding: 120px 0;
    background-color: var(--color-white);
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 160px;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-row.reverse {
    flex-direction: row-reverse;
}

.detail-visual {
    flex: 1;
}

.detail-mockup {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: var(--color-gray-50);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.mockup-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    /* Placeholder gradient */
    opacity: 0.8;
}

.mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.detail-content {
    flex: 1;
}

.detail-tag {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: inline-block;
}

.text-orange {
    color: var(--color-secondary-orange);
}

.detail-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--color-gray-900);
}

.detail-desc {
    font-size: 18px;
    color: var(--color-gray-700);
    line-height: 1.7;
    margin-bottom: 32px;
}

.detail-list li {
    font-size: 16px;
    color: var(--color-gray-700);
    margin-bottom: 12px;
    font-weight: 500;
}

/* Responsive Features */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-row {
        gap: 40px;
    }

    .detail-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .detail-row,
    .detail-row.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 100px;
    }

    .detail-visual,
    .detail-content {
        width: 100%;
    }

    .detail-title {
        font-size: 28px;
    }

    .detail-desc {
        font-size: 16px;
    }
}

/* Expansion Section */
.expansion-section {
    padding: 120px 0;
    background-color: var(--color-gray-50);
    text-align: center;
    overflow: hidden;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--color-gray-900);
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-gray-700);
    margin-bottom: 60px;
}

.expansion-diagram {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
    border-radius: 50%;
    border: 1px dashed var(--color-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-hub {
    width: 160px;
    height: 160px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 10px 30px rgba(42, 102, 255, 0.3);
    z-index: 2;
}

.orbit-item {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--color-gray-700);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Positioning Orbit Items (Static for now, could be animated) */
.item-1 {
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.item-2 {
    top: 150px;
    right: 50px;
}

.item-3 {
    bottom: 150px;
    right: 50px;
}

.item-4 {
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.item-5 {
    bottom: 150px;
    left: 50px;
}

.item-6 {
    top: 150px;
    left: 50px;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background-color: var(--color-secondary-sky);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--color-primary);
    display: inline-block;
    line-height: 1;
    margin-bottom: 16px;
}

.stat-unit {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-desc {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-gray-700);
}

/* Responsive Expansion & Stats */
@media (max-width: 768px) {
    .expansion-diagram {
        width: 320px;
        height: 320px;
    }

    .center-hub {
        width: 100px;
        height: 100px;
        font-size: 14px;
    }

    .orbit-item {
        width: 60px;
        height: 60px;
        font-size: 12px;
    }

    .item-1 {
        top: 20px;
    }

    .item-2 {
        top: 80px;
        right: 10px;
    }

    .item-3 {
        bottom: 80px;
        right: 10px;
    }

    .item-4 {
        bottom: 20px;
    }

    .item-5 {
        bottom: 80px;
        left: 10px;
    }

    .item-6 {
        top: 80px;
        left: 10px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .stat-number {
        font-size: 48px;
    }
}

/* Social Proof Section */
.social-proof-section {
    padding: 100px 0;
    background-color: var(--color-white);
    text-align: center;
}

.text-center {
    text-align: center;
}

.logo-carousel {
    margin: 60px 0;
    overflow: hidden;
    position: relative;
}

.logo-carousel::before,
.logo-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.logo-carousel::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.logo-carousel::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.logo-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 10px;
}

.client-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.client-logo img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--color-gray-50);
    padding: 60px;
    border-radius: 24px;
    position: relative;
}

.testimonial-text {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-gray-900);
    margin-bottom: 32px;
    word-break: keep-all;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--color-gray-200);
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 700;
    color: var(--color-gray-900);
}

.author-company {
    font-size: 14px;
    color: var(--color-gray-500);
}

/* Pricing Section */
.pricing-section {
    padding: 120px 0;
    background-color: var(--color-gray-50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.pricing-card {
    background-color: var(--color-white);
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.popular {
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(42, 102, 255, 0.1);
    transform: scale(1.05);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.plan-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-gray-900);
}

.plan-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-gray-900);
    margin-bottom: 16px;
}

.plan-price .period {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-gray-500);
}

.plan-desc {
    font-size: 16px;
    color: var(--color-gray-700);
    margin-bottom: 32px;
    min-height: 48px;
}

.plan-features {
    text-align: left;
    margin-bottom: 40px;
}

.plan-features li {
    margin-bottom: 12px;
    color: var(--color-gray-700);
    font-size: 15px;
}

.full-width {
    width: 100%;
}

/* Responsive Pricing */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .pricing-card {
        padding: 32px 20px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .testimonial-text {
        font-size: 18px;
    }

    .testimonial-card {
        padding: 32px;
    }
}

/* Final CTA Section */
.final-cta-section {
    padding: 120px 0;
    background-color: var(--color-primary);
    text-align: center;
    color: var(--color-white);
}

.final-cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--color-white);
}

.final-cta-desc {
    font-size: 20px;
    margin-bottom: 48px;
    opacity: 0.9;
}

.final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-white:hover {
    background-color: var(--color-gray-50);
}

.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    background-color: var(--color-gray-900);
    color: var(--color-gray-500);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-white);
    display: inline-block;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
}

.footer-title {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--color-gray-500);
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: background-color 0.2s ease;
}

.social-icon:hover {
    background-color: var(--color-primary);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .brand-col {
        grid-column: span 4;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .final-cta-title {
        font-size: 32px;
    }

    .final-cta-actions {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .brand-col {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
    }
}