:root {
    --bg: #0e0f11;
    --surface: #151618;
    --surface2: #1c1d20;
    --border: #272829;
    --accent: #4a7fa5;
    --accent2: #6094b0;
    --text: #dddcda;
    --muted: #6b6b6b;
    --danger: #a0604a;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ── GRID NOISE OVERLAY ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 3rem;
    background: rgba(11, 12, 15, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-family: 'Monda', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--accent);
    letter-spacing: -0.02em;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
}

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

.nav-cta {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    color: #fff;
    background: var(--accent);
    padding: 0.5rem 1.2rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
}

.nav-cta:hover {
    opacity: 0.85;
}

/* Hamburger button — hidden on desktop */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.3rem;
    z-index: 101;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
}

/* Animate to X when open */
.nav-hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.is-open span:nth-child(2) {
    opacity: 0;
    width: 0;
}
.nav-hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Drawer */
.nav-drawer {
    position: fixed;
    top: 57px;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(11, 12, 15, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    padding: 0 1.5rem;
    gap: 1.5rem;
    /* Hidden state */
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease,
    padding 0.35s ease;
}

.nav-drawer.is-open {
    max-height: 400px;
    opacity: 1;
    padding: 2rem 1.5rem;
    pointer-events: auto;
}

.nav-drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-drawer-link {
    display: block;
    font-family: 'DM Mono', monospace;
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s, padding-left 0.2s;
}

.nav-drawer-link:hover {
    color: var(--accent);
    padding-left: 0.5rem;
}

.nav-drawer-cta {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    color: #fff;
    background: var(--accent);
    padding: 0.75rem 1.5rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-align: center;
    transition: opacity 0.2s;
    margin-top: 0.5rem;
}

.nav-drawer-cta:hover {
    opacity: 0.85;
}

/* ── HERO ── */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 3rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    right: -2rem;
    transform: translateY(-50%);
    font-family: 'Monda', sans-serif;
    font-size: clamp(8rem, 18vw, 20rem);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(74, 127, 165, 0.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    color: var(--accent2);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-tag::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

h1 {
    font-family: 'Monda', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

h1 span {
    color: var(--accent);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 480px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: #fff;
    padding: 0.9rem 2rem;
    font-family: 'Monda', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 2px;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(74, 127, 165, 0.25);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text);
    padding: 0.9rem 2rem;
    font-family: 'Monda', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Hero right – stat cards */
.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}

.stat-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.stat-card:nth-child(2)::after {
    background: linear-gradient(90deg, var(--accent2), transparent);
}

.stat-card:nth-child(3)::after {
    background: linear-gradient(90deg, #3d6e91, transparent);
}

.stat-card:nth-child(4)::after {
    background: linear-gradient(90deg, #5585a0, transparent);
}

.stat-num {
    font-family: 'Monda', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.4rem;
    color: var(--accent);
}

.stat-card:nth-child(2) .stat-num {
    color: var(--accent2);
}

.stat-card:nth-child(3) .stat-num {
    color: #3d6e91;
}

.stat-card:nth-child(4) .stat-num {
    color: #5585a0;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── SECTION BASE ── */
section {
    padding: 6rem 3rem;
    position: relative;
    z-index: 1;
}

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

.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

h2 {
    font-family: 'Monda', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 3rem;
    line-height: 1.1;
}

/* ── ABOUT ── */
#about {
    background: var(--surface);
}

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

.about-text p {
    color: var(--muted);
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.85;
}

.about-text p strong {
    color: var(--text);
    font-weight: 500;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--surface2);
    border-radius: 4px;
    border: 1px solid var(--border);
}

.info-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.info-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 0.2rem;
}

.info-value {
    font-size: 0.9rem;
    color: var(--text);
}

.info-value a {
    color: var(--accent);
    text-decoration: none;
}

/* ── SKILLS ── */
#skills {
    background: var(--bg);
}

/* Two-column layout */
.skills-columns {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0 3rem;
    align-items: start;
}

.skills-divider {
    background: var(--border);
    align-self: stretch;
    margin-top: 0.5rem;
}

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

/* Column header */
.skills-column-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0.5rem;
}

.skills-column-icon {
    font-size: 1.4rem;
    color: var(--accent);
    line-height: 1;
    flex-shrink: 0;
    margin-top: 0.1rem;
    opacity: 0.7;
}

.skills-column-icon--alt {
    color: var(--accent2);
}

.skills-column-title {
    font-family: 'Monda', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.2rem;
    letter-spacing: -0.01em;
}

.skills-column-sub {
    font-family: 'DM Mono', monospace;
    font-size: 0.66rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Individual skill groups inside columns */
.skill-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.skill-group-title {
    font-family: 'DM Mono', monospace;
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    opacity: 0.7;
}

.skills-column:last-child .skill-group-title {
    color: var(--accent2);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tag {
    background: var(--surface2);
    border: 1px solid var(--border);
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.skills-column:hover .tag {
    background: rgba(74, 127, 165, 0.07);
    color: var(--text);
    border-color: rgba(74, 127, 165, 0.2);
}

/* ── EXPERIENCE ── */
#experience {
    background: var(--surface);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    position: relative;
    padding-bottom: 3rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 190px;
    top: 8px;
    bottom: 0;
    width: 1px;
    background: var(--border);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-date {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    color: var(--muted);
    text-align: right;
    padding-top: 0.2rem;
    line-height: 1.5;
}

.timeline-dot {
    position: absolute;
    left: 185px;
    top: 6px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid var(--bg);
}

.timeline-content {
    padding-left: 2rem;
}

.timeline-company {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    color: var(--accent2);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.timeline-role {
    font-family: 'Monda', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text);
}

.timeline-desc {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.timeline-desc ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.timeline-desc ul li::before {
    content: '→ ';
    color: var(--accent);
    font-family: 'DM Mono', monospace;
}

.stack-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1rem;
}

.stack-pill {
    background: rgba(74, 127, 165, 0.1);
    color: var(--accent);
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    letter-spacing: 0.04em;
}

/* ── PROJECTS ── */
#projects {
    background: var(--bg);
}

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

.project-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
}

.project-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(74, 127, 165, 0.09);
}

.project-icon {
    font-size: 2rem;
    line-height: 1;
}

.project-title {
    font-family: 'Monda', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.project-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    flex: 1;
}

.project-meta {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    color: var(--accent2);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ── TESTIMONIALS ── */
#testimonials {
    background: var(--surface);
}

.testimonials-carousel {
    position: relative;
    max-width: 100%;
    display: grid;
    grid-template-columns: 70px 1fr 70px;
    grid-template-rows: 1fr auto;
    align-items: center;
    column-gap: 0.75rem;
    row-gap: 0;
}

.testimonials-track-wrapper {
    grid-column: 2;
    grid-row: 1;
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 0;
    width: 100%;
}

.testimonial-card {
    flex: 0 0 100%;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem;
    position: relative;
    box-sizing: border-box;
    min-width: 100%;
}

.quote-mark {
    font-family: 'Monda', sans-serif;
    font-size: 4rem;
    color: var(--accent);
    line-height: 0.5;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.testimonial-role {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.2rem;
}

/* Carousel Controls */
.carousel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    user-select: none;
    font-family: 'DM Sans', sans-serif;
    opacity: 0.4;
    z-index: 10;
}

.carousel-prev {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
}

.carousel-next {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
}

.carousel-arrow:hover {
    opacity: 1;
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(74, 127, 165, 0.05);
    transform: scale(1.1);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
    grid-column: 1 / 4;
    grid-row: 2;
    justify-self: center;
    margin-top: 1rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: none;
    padding: 0;
}

.carousel-dot:hover {
    background: var(--muted);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* ── HIRE ME ── */
#hire {
    background: var(--bg);
    text-align: center;
    padding: 8rem 3rem;
}

#hire h2 {
    margin-bottom: 1rem;
}

#hire h2 span {
    color: var(--accent);
}

.hire-sub {
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
}

.hire-contact-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 3rem 4rem;
    max-width: 480px;
    width: 100%;
}

.hire-email {
    font-family: 'Monda', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

.hire-email:hover {
    opacity: 0.7;
}

.hire-divider {
    width: 100%;
    height: 1px;
    background: var(--border);
}

.hire-response {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(74, 127, 165, 0.1);
    border: 1px solid rgba(74, 127, 165, 0.25);
    color: var(--accent2);
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    padding: 0.4rem 1rem;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
}

.availability-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent2);
    animation: pulse 2s infinite;
}

/* ── FOOTER ── */
footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.footer-left {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    color: var(--muted);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.footer-links a {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

/* ── ANIMATIONS ── */
.fade-up {
    opacity: 1;
    transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    #hero {
        padding: 6rem 1.5rem 3rem;
    }

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

    .hero-bg-text {
        display: none;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    section {
        padding: 4rem 1.5rem;
    }

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

    .skills-columns {
        grid-template-columns: 1fr;
        gap: 2.5rem 0;
    }

    .skills-divider {
        display: none;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .timeline-item::before {
        display: none;
    }

    .timeline-date {
        text-align: left;
    }

    .timeline-dot {
        display: none;
    }

    .timeline-content {
        padding-left: 0;
    }

    .carousel-arrow {
        display: none;
    }

    .testimonials-carousel {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
    }

    .testimonials-track-wrapper {
        grid-column: 1;
    }

    .carousel-dots {
        grid-column: 1;
    }

    footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}