:root {
    --primary-color: #2D3E50;
    --secondary-color: #4A90E2;
    --accent-color: #5A7C9E;
    --text-dark: #1a1a1a;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #2D3E50 0%, #5A7C9E 100%);
    --gradient-2: linear-gradient(135deg, #4A90E2 0%, #5A7C9E 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

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

.logo-image {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 24px;
    font-family: 'Playfair Display', serif;
}

.logo-text {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-color);
    line-height: 1.2;
    letter-spacing: 1px;
}

.logo-text small {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.nav-link:hover svg {
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(240, 244, 248, 0.85) 0%, rgba(232, 240, 247, 0.85) 50%, rgba(248, 250, 252, 0.85) 100%),
                url('hero-bg.jpg') center/cover no-repeat;
    background-blend-mode: overlay;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(232, 184, 109, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.badge-icon {
    width: 18px;
    height: 18px;
    color: var(--secondary-color);
    fill: var(--secondary-color);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.title-line {
    color: var(--primary-color);
    display: block;
}

.title-line.highlight {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: rgba(232, 184, 109, 0.2);
    z-index: -1;
    border-radius: 8px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: var(--white);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-tag svg {
    width: 16px;
    height: 16px;
    color: var(--secondary-color);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(45, 62, 80, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(45, 62, 80, 0.4);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.google-review {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 12px 16px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.review-stars {
    display: flex;
    gap: 4px;
}

.review-stars svg {
    width: 20px;
    height: 20px;
    color: #FBBC04;
}

.review-rating {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trust-text strong {
    font-size: 15px;
    color: var(--primary-color);
}

.trust-text span {
    font-size: 13px;
    color: var(--text-light);
}

.hero-right {
    position: relative;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 600px;
}

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
}

.card-primary {
    top: 50px;
    left: 0;
    width: 280px;
    animation: floatCard1 4s ease-in-out infinite;
}

@keyframes floatCard1 {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-15px) rotate(-2deg);
    }
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 100%;
    height: 100%;
    color: var(--secondary-color);
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.card-primary h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card-metric {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.metric-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
}

.metric-label {
    font-size: 13px;
    color: var(--text-light);
}

.card-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-2);
    border-radius: 4px 4px 0 0;
    animation: growBar 1.5s ease-out;
}

@keyframes growBar {
    from {
        height: 0;
    }
}

.card-secondary {
    top: 80px;
    right: 20px;
    width: 200px;
    text-align: center;
    animation: floatCard2 5s ease-in-out infinite;
}

@keyframes floatCard2 {
    0%, 100% {
        transform: translateY(0) rotate(2deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.card-icon-large {
    width: 60px;
    height: 60px;
    background: rgba(232, 184, 109, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.card-icon-large svg {
    width: 32px;
    height: 32px;
    color: var(--secondary-color);
}

.card-secondary h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.card-secondary p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.progress-ring {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.progress-ring svg {
    transform: rotate(-90deg);
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.card-tertiary {
    bottom: 100px;
    left: 40px;
    width: 260px;
    animation: floatCard3 6s ease-in-out infinite;
}

@keyframes floatCard3 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.notification-icon {
    width: 24px;
    height: 24px;
    color: var(--secondary-color);
}

.notification-time {
    font-size: 12px;
    color: var(--text-light);
}

.card-tertiary p {
    font-size: 14px;
    color: var(--text-dark);
}

.floating-stats {
    position: absolute;
    bottom: 50px;
    right: 0;
    display: flex;
    gap: 1rem;
    animation: floatStats 4.5s ease-in-out infinite;
}

@keyframes floatStats {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.stat-box {
    background: var(--white);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    min-width: 70px;
}

.stat-box .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.stat-box .stat-label {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.circle-1 {
    width: 150px;
    height: 150px;
    background: var(--gradient-1);
    top: 0;
    right: 50px;
    animation: rotate 20s linear infinite;
}

.circle-2 {
    width: 100px;
    height: 100px;
    background: var(--gradient-2);
    bottom: 50px;
    left: 100px;
    animation: rotate 15s linear infinite reverse;
}

.circle-3 {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    top: 200px;
    left: 0;
    animation: rotate 25s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.deco-line {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--secondary-color), transparent);
    opacity: 0.2;
}

.line-1 {
    top: 100px;
    right: 150px;
    animation: lineFloat 3s ease-in-out infinite;
}

.line-2 {
    bottom: 150px;
    left: 50px;
    animation: lineFloat 4s ease-in-out infinite reverse;
}

@keyframes lineFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 13px;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-light);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--text-light);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(12px);
        opacity: 0.5;
    }
}

.services {
    padding: 6rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(90, 124, 158, 0.1);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.service-card.featured {
    background: var(--gradient-1);
    color: var(--white);
    border: none;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(232, 184, 109, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card.featured .service-title {
    color: var(--white);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-card.featured .service-description {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.85);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.about {
    padding: 6rem 0;
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 17px;
    line-height: 1.8;
}

.about-features {
    margin: 2.5rem 0;
}

.about-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.about-feature h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.about-feature p {
    color: var(--text-light);
    font-size: 15px;
}

.company-info {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.info-item {
    color: var(--text-light);
    font-size: 15px;
}

.info-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
}

.visual-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.visual-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.visual-card.card-1 {
    grid-column: 1 / 2;
}

.visual-card.card-2 {
    grid-column: 2 / 3;
}

.visual-card.card-3 {
    grid-column: 1 / 3;
}

.visual-card .card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.visual-card .card-icon svg {
    width: 100%;
    height: 100%;
    color: var(--secondary-color);
}

.visual-card h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.visual-card p {
    color: var(--text-light);
    font-size: 15px;
}

.contact {
    padding: 6rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-description {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 17px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(90, 124, 158, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    flex-shrink: 0;
}

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

.contact-item h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(90, 124, 158, 0.1);
}

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

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-icon {
    background: var(--gradient-2);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand .logo-text small {
    color: rgba(255, 255, 255, 0.7);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    font-size: 15px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-column ul li a:hover svg {
    transform: translateX(2px);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-cta {
        flex-direction: column;
    }

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

    .hero-visual {
        height: 500px;
    }

    .card-primary {
        width: 240px;
    }

    .card-secondary {
        width: 180px;
        right: 10px;
    }

    .card-tertiary {
        width: 220px;
        left: 20px;
    }

    .floating-stats {
        right: 10px;
        gap: 0.5rem;
    }

    .stat-box {
        min-width: 60px;
        padding: 0.75rem;
    }

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

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

    .about-visual {
        order: -1;
    }

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

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

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

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 100px 15px 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

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

    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hero-visual {
        height: 400px;
    }

    .card-primary {
        width: 200px;
        padding: 1.25rem;
        top: 30px;
    }

    .card-secondary {
        width: 160px;
        padding: 1.25rem;
        top: 60px;
        right: 5px;
    }

    .card-tertiary {
        width: 180px;
        padding: 1.25rem;
        bottom: 80px;
        left: 10px;
    }

    .floating-stats {
        bottom: 30px;
        right: 5px;
        gap: 0.4rem;
    }

    .stat-box {
        min-width: 50px;
        padding: 0.5rem;
    }

    .stat-box .stat-number {
        font-size: 18px;
    }

    .stat-box .stat-label {
        font-size: 9px;
    }

    .hero-scroll {
        display: none;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .company-info {
        flex-direction: column;
        gap: 1rem;
    }
}
