/* ===== Design Tokens ===== */
:root {
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-tertiary: #94a3b8;
    
    --accent-1: #4f46e5;       /* Indigo 600 */
    --accent-1-hover: #4338ca;
    --accent-1-rgb: 79, 70, 229;
    
    --accent-2: #06b6d4;       /* Cyan 500 */
    --accent-3: #8b5cf6;       /* Violet 500 */
    
    --gradient-primary: linear-gradient(135deg, var(--accent-1), var(--accent-3));
    --gradient-text: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    
    --border-color: rgba(79, 70, 229, 0.08);
    --border-hover: rgba(79, 70, 229, 0.2);
    
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.08);
    --shadow-glow: 0 10px 40px rgba(79, 70, 229, 0.08);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --container-max: 1200px;
}

/* ===== Resets ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}
body {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Scroll Animation classes ===== */
.animate-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
}
.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.logo-highlight {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}
.nav-links a:hover {
    color: var(--accent-1);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-1);
    transition: width var(--transition);
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-cta {
    background: var(--accent-1);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.2);
}
.nav-cta:hover {
    background: var(--accent-1-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}
.mobile-menu-btn span {
    width: 26px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    z-index: 999;
    align-items: center;
    justify-content: center;
}
.mobile-menu.active {
    display: flex;
}
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.mobile-nav-links a {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg-effects {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.hero-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}
.hero-blur-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-1);
    top: -100px;
    right: -100px;
}
.hero-blur-2 {
    width: 600px;
    height: 600px;
    background: var(--accent-2);
    bottom: -150px;
    left: -150px;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-size: 50px 50px;
    background-image: 
        linear-gradient(to right, rgba(79, 70, 229, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(79, 70, 229, 0.03) 1px, transparent 1px);
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin-bottom: 60px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(79, 70, 229, 0.06);
    border: 1px solid rgba(79, 70, 229, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
    color: var(--accent-1);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 30px;
}
.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}
.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: #0f172a;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.75;
}
.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 50px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
}
.btn-primary {
    background: var(--accent-1);
    color: #fff;
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.25);
}
.btn-primary:hover {
    background: var(--accent-1-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.35);
}
.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid rgba(79, 70, 229, 0.15);
    box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
    border-color: var(--accent-1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== Stats ===== */
.hero-stats {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    padding: 20px 48px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-suffix {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 4px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* ===== Hero Visual Console ===== */
.hero-visual {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 950px;
    margin: 40px auto 0;
    padding: 0 24px;
}
.dashboard-preview {
    border-radius: var(--radius-lg);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    overflow: hidden;
}
.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
}
.dashboard-dots {
    display: flex;
    gap: 6px;
}
.dashboard-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dashboard-dots span:nth-child(1) { background: #ef4444; }
.dashboard-dots span:nth-child(2) { background: #fbbf24; }
.dashboard-dots span:nth-child(3) { background: #10b981; }
.dashboard-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}
.dashboard-body {
    display: flex;
    min-height: 240px;
}
.dashboard-sidebar {
    width: 190px;
    padding: 20px;
    background: #fafafa;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sidebar-item {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}
.sidebar-item.active {
    background: rgba(79, 70, 229, 0.08);
    color: var(--accent-1);
}
.dashboard-main {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mini-chart {
    flex: 1;
    background: var(--bg-tertiary);
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}
.chart-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 120px;
}
.bar {
    flex: 1;
    background: rgba(79, 70, 229, 0.15);
    border-radius: 4px 4px 0 0;
    height: 50%;
    transition: height 1s ease, background var(--transition);
}
.bar.active {
    background: var(--accent-1);
}
.mini-cards {
    display: flex;
    gap: 14px;
}
.mini-card {
    flex: 1;
    background: var(--bg-primary);
    padding: 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    text-align: center;
}
.mini-card-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-1);
}
.mini-card-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(79, 70, 229, 0.06);
    border: 1px solid rgba(79, 70, 229, 0.15);
    color: var(--accent-1);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Services Section ===== */
.services {
    padding: 120px 0;
    background: var(--bg-secondary);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.service-card {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md), var(--shadow-glow);
    border-color: var(--border-hover);
}
.service-card:hover::after {
    opacity: 1;
}
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(79, 70, 229, 0.06);
    color: var(--accent-1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: inset 0 0 12px rgba(79, 70, 229, 0.05);
}
.service-icon-2 {
    color: var(--accent-2);
    background: rgba(6, 182, 212, 0.06);
}
.service-icon-3 {
    color: var(--accent-3);
    background: rgba(139, 92, 246, 0.06);
}
.service-icon-4 {
    color: #10b981;
    background: rgba(16, 185, 129, 0.06);
}
.service-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}
.service-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}
.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.service-features li {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
}
.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-1);
    font-weight: 800;
}

/* ===== How It Works ===== */
.how-it-works {
    padding: 120px 0;
    background: var(--bg-tertiary);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}
.step-card {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.step-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.4;
    margin-bottom: 20px;
}
.step-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}
.step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Technology ===== */
.technology {
    padding: 120px 0;
    background: var(--bg-secondary);
}
.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.tech-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
}
.tech-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.tech-feature {
    display: flex;
    gap: 20px;
}
.tech-icon-box {
    font-size: 1.6rem;
    min-width: 48px;
    height: 48px;
    background: rgba(79, 70, 229, 0.06);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.tech-feature strong {
    display: block;
    font-size: 1.05rem;
    color: #0f172a;
    margin-bottom: 4px;
}
.tech-feature p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.tech-visual {
    position: relative;
    height: 380px;
}
.tech-card-stack {
    position: relative;
    width: 100%;
    height: 100%;
}
.tech-card {
    position: absolute;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 16px;
    width: 320px;
    transition: var(--transition);
}
.tech-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: var(--border-hover);
}
.t-icon {
    font-size: 1.8rem;
}
.tech-card strong {
    display: block;
    font-size: 0.95rem;
    color: #0f172a;
}
.tech-card span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}
.c-1 { top: 10%; left: 10%; }
.c-2 { top: 40%; right: 5%; }
.c-3 { bottom: 10%; left: 15%; }

/* ===== API Compliance Section ===== */
.api-compliance {
    padding: 100px 0;
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.compliance-card {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
.compliance-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}
.compliance-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.compliance-card a {
    color: var(--accent-1);
    font-weight: 700;
    text-decoration: underline;
}

/* ===== Contact Section ===== */
.contact {
    padding: 120px 0;
    background: var(--bg-secondary);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}
.detail-icon {
    font-size: 1.4rem;
}
.detail-link {
    color: var(--accent-1);
    font-weight: 700;
}
.contact-form-container {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}
.form-group textarea {
    resize: vertical;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-primary);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 320px;
}
.footer-links h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--accent-1);
}
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}
.footer-disclaimer {
    margin-top: 8px;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .tech-visual {
        height: 280px;
    }
    .c-2 { right: 10%; }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
        width: 100%;
    }
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    .dashboard-sidebar {
        display: none;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .compliance-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
