:root {
    --brand-50: #f0fdf4;
    --brand-100: #dcfce7;
    --brand-200: #bbf7d0;
    --brand-300: #86efac;
    --brand-400: #4ade80;
    --brand-500: #22c55e;
    --brand-600: #16a34a;
    --brand-700: #15803d;
    --brand-800: #166534;
    --brand-900: #14532d;
    --accent-400: #38bdf8;
    --accent-500: #0ea5e9;
    --accent-600: #0284c7;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: var(--gray-900);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand,
.section-title,
.hero-title {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.1;
}

a {
    color: var(--brand-600);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--brand-500);
}

/* ─── Header / Navbar ─── */
.site-header {
    z-index: 1030;
}

.site-navbar {
    padding: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
}

.logo-image {
    height: 62px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    border-radius: 10px;
}

.navbar-toggler {
    border: 1px solid var(--gray-300);
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: none;
}

.nav-link {
    color: var(--gray-600);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.nav-link.active,
.nav-link:hover {
    color: var(--brand-600);
    background: var(--brand-50);
}

.theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid var(--gray-300);
    background: #fff;
    color: var(--gray-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.theme-toggle:hover {
    border-color: var(--brand-300);
    color: var(--brand-600);
    background: var(--brand-50);
}

/* ─── Buttons ─── */
.btn-brand,
.btn-outline-brand {
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.btn-brand {
    color: #fff;
    border: none;
    background: var(--brand-600);
    box-shadow: var(--shadow-md);
}

.btn-brand:hover {
    color: #fff;
    background: var(--brand-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-brand {
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
    background: #fff;
}

.btn-outline-brand:hover {
    color: var(--brand-700);
    border-color: var(--brand-300);
    background: var(--brand-50);
}

/* ─── Hero Section ─── */
.hero-section,
.page-hero {
    position: relative;
    overflow: hidden;
}

.hero-section {
    padding: 80px 0 96px;
    background: linear-gradient(135deg, var(--brand-50), #ffffff 50%, rgba(14, 165, 233, 0.05));
}

.hero-section::before,
.page-hero::before {
    content: none;
}

.page-hero {
    padding: 10px 0 10px;
    background: linear-gradient(135deg, var(--brand-50), #ffffff 50%, rgba(14, 165, 233, 0.05));
    color: var(--gray-900);
}

.page-hero p {
    color: var(--gray-600);
    font-size: 1.15rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.hero-title .accent {
    color: var(--brand-600);
}

.page-about .page-hero .hero-title {
    font-size: 30px;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 0 2rem;
    line-height: 1.7;
}

/* ─── Hero Carousel ─── */
.hero-carousel {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hero-carousel .carousel-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

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

.hero-centered {
    text-align: center;
}

.hero-centered .hero-actions {
    justify-content: center;
}

.hero-centered .hero-text {
    margin-left: auto;
    margin-right: auto;
}

/* ─── Stats Strip ─── */
.stats-strip {
    padding: 64px 0;
    background: #fff;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--brand-600);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* ─── Sections ─── */
.section {
    padding: 80px 0;
}

.section-muted {
    background: var(--gray-50);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: var(--brand-50);
    color: var(--brand-600);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    margin: 0.75rem 0;
    line-height: 1.15;
}

.section-subtitle {
    color: var(--gray-500);
    font-size: 1.05rem;
    max-width: 600px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ─── Cards (generic) ─── */
.card-modern {
    height: 100%;
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-modern:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

/* Card media for top images */
.card-media {
    display: block;
    width: calc(100% + 3rem);
    margin: -1.5rem -1.5rem 1.25rem;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: var(--gray-100);
    border-radius: 0;
}

/* ─── Icon Box ─── */
.icon-box {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    background: var(--brand-50);
    color: var(--brand-600);
    font-size: 1.4rem;
}

/* legacy icon classes mapped to new style */
.feature-icon,
.service-icon,
.info-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    background: var(--brand-50);
    color: var(--brand-600);
    font-size: 1.4rem;
}

.service-card .service-icon {
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

/* ─── Service Card Image ─── */
.service-card-img {
    width: 90%;
    margin: 1rem auto 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.05);
}

/* ─── Chart Box ─── */
.chart-box {
    position: relative;
    height: 350px;
    min-height: 350px;
    max-height: 350px;
}

.chart-box canvas {
    width: 100% !important;
    height: 100% !important;
}

/* ─── Service / Feature / About / Info Cards ─── */
.feature-card,
.service-card,
.portfolio-card,
.testimonial-card,
.contact-card,
.quote-card,
.info-card,
.about-card {
    height: 100%;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.service-card:hover,
.info-card:hover,
.about-card:hover,
.testimonial-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.feature-card,
.service-card,
.testimonial-card,
.about-card,
.info-card {
    padding: 1.5rem;
}

.feature-card h3,
.service-card h3,
.portfolio-card h3,
.about-card h3,
.info-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.feature-card p,
.service-card p,
.portfolio-card p,
.testimonial-card p,
.about-card p,
.info-card p {
    color: var(--gray-600);
    margin-bottom: 0;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ─── Stat Cards (legacy) ─── */
.stat-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.stat-card .card-media {
    width: calc(100% + 3rem);
    margin: -1.5rem -1.5rem 1rem;
}

.stat-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.stat-card strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-600);
}

.stat-card span {
    color: var(--gray-500);
    font-weight: 500;
    font-size: 0.9rem;
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-50);
    color: var(--brand-600);
    font-size: 1.3rem;
}

/* ─── Portfolio Cards ─── */
.portfolio-card {
    overflow: hidden;
}

.portfolio-image {
    aspect-ratio: 16 / 11;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-100));
    display: flex;
    align-items: end;
    padding: 1.25rem;
    position: relative;
}

.portfolio-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-image .overlay {
    position: relative;
    z-index: 1;
}

.portfolio-content {
    padding: 1.5rem;
}

/* ─── Portfolio Carousel ─── */
.portfolio-carousel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.portfolio-carousel .carousel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.portfolio-carousel .carousel-slide.active {
    opacity: 1;
}

/* ─── Testimonial Cards ─── */
.testimonial-card {
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 4rem;
    color: var(--brand-100);
    line-height: 1;
}

.testimonial-author {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--brand-700);
}

/* ─── About Section ─── */
.about-image-wrapper {
    position: relative;
}

.about-image-bg {
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--brand-400), var(--accent-500));
    border-radius: var(--radius-lg);
    opacity: 0.15;
}

.about-image-wrapper img {
    position: absolute;
    inset: 0;
    width: 75%;
    height: auto;
    margin: auto;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
}

/* ─── CTA Section ─── */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--brand-600), var(--accent-600));
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #fff;
    color: var(--brand-600);
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 1rem;
}

.btn-white:hover {
    background: var(--gray-100);
    color: var(--brand-700);
    transform: translateY(-1px);
}

/* ─── Quick Contact & Forms ─── */
.quick-contact {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}

.quote-form,
.contact-form-box,
.auth-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.form-control,
.form-select {
    border-radius: var(--radius-sm);
    min-height: 48px;
    border-color: var(--gray-300);
    box-shadow: none !important;
    font-size: 0.95rem;
}

textarea.form-control {
    min-height: 140px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--brand-500);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15) !important;
}

/* ─── Map ─── */
.map-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.map-card iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}

/* ─── Auth Pages ─── */
.auth-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--gray-50), #fff);
}

.auth-layout {
    width: min(1120px, 92vw);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.5rem;
    align-items: stretch;
}

.auth-side {
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    color: #fff;
    background: linear-gradient(135deg, var(--brand-600), var(--accent-600));
}

.auth-side .logo-image {
    height: 60px;
    max-width: 200px;
    filter: brightness(0) invert(1);
}

.auth-points {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.auth-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.auth-point i {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* ─── Footer ─── */
.site-footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.8);
    padding: 0 0 2rem;
}

.footer-cta {
    margin-top: -40px;
    padding: 2rem 2rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--brand-600), var(--accent-600));
    box-shadow: var(--shadow-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    transform: translateY(-50px);
    color: #fff;
}

.footer-cta h3 {
    color: #fff;
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.85);
}

.footer-logo {
    height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.site-footer h5 {
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.footer-links a,
.footer-links li {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ─── Utilities ─── */
.page-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.alert {
    border-radius: var(--radius-sm);
}

.text-gray-600 {
    color: var(--gray-600);
}

/* ─── About Stack (Slideshow) ─── */
.about-stack {
    display: grid;
    gap: 0;
    margin: 0;
}

.page-about .about-stack.is-fs {
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}

.page-about .about-stack.is-fs .about-slide {
    scroll-snap-align: start;
}

.about-slide {
    width: 100%;
    margin: 0 auto;
    height: 100vh;
    height: 100dvh;
    height: 100svh;
    border-radius: 20px;
    overflow: hidden;
    background: #0f0f0f;
    position: relative;
    box-shadow: 0 22px 38px rgba(0, 0, 0, 0.26);
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-slide .caption {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(12, 22, 18, 0.65);
    color: #fff;
    border-radius: 10px;
    padding: 8px 12px;
    font-weight: 700;
}

.next-section-btn {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 12;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 1.4rem;
    box-shadow: 0 12px 22px rgba(20, 90, 59, .3);
    background: var(--brand-600);
    color: #fff;
    border: none;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.fs-toggle-btn {
    position: fixed;
    right: 22px;
    top: 22px;
    z-index: 2147483647;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.fs-controls {
    position: fixed;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2147483647;
    pointer-events: none;
}

.fs-controls .fs-btn {
    pointer-events: auto;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.fs-controls[hidden] { display: none; }

/* ─── Dark Theme ─── */
body.dark {
    background: #0b1120;
    color: #e5e7eb;
}

body.dark .site-navbar {
    background: rgba(15, 23, 42, 0.92);
    border-bottom-color: rgba(148, 163, 184, 0.2);
}

body.dark .nav-link {
    color: #cbd5f5;
}

body.dark .nav-link.active,
body.dark .nav-link:hover {
    color: #ffffff;
    background: rgba(34, 197, 94, 0.15);
}

body.dark .theme-toggle {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(148, 163, 184, 0.35);
    color: #e2e8f0;
}

body.dark .btn-outline-brand {
    background: transparent;
    color: #e2e8f0;
    border-color: rgba(148, 163, 184, 0.4);
}

body.dark .hero-section,
body.dark .page-hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
}

body.dark .hero-title,
body.dark .section-title {
    color: #B6F60C;
}

body.dark .hero-text,
body.dark .page-hero p,
body.dark .section-subtitle,
body.dark p,
body.dark .text-gray-600 {
    color: #F0FDF4;
}

body.dark .section-muted,
body.dark .stats-strip {
    background: #0f172a;
}

body.dark .feature-card,
body.dark .service-card,
body.dark .portfolio-card,
body.dark .testimonial-card,
body.dark .info-card,
body.dark .contact-form-box,
body.dark .quote-form,
body.dark .quick-contact {
    background: #0f172a;
    border-color: rgba(148, 163, 184, 0.2);
    color: #e2e8f0;
}

body.dark .feature-card p,
body.dark .service-card p,
body.dark .portfolio-card p,
body.dark .testimonial-card p,
body.dark .info-card p {
    color: #F0FDF4;
}

body.dark .stat-item .stat-label,
body.dark .stat-card span {
    color: #94a3b8;
}

body.dark .site-footer {
    background: #020617;
}

body.dark .footer-links a,
body.dark .footer-links li,
body.dark .footer-bottom {
    color: rgba(226, 232, 240, 0.75);
}

body.dark .map-card,
body.dark .contact-form-box,
body.dark .quote-form {
    border-color: rgba(148, 163, 184, 0.2);
}

/* ─── Responsive ─── */
@media (max-width: 991.98px) {
    .logo-image {
        height: 44px;
        max-width: 176px;
    }

    .auth-layout {
        grid-template-columns: 1fr;
    }

    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 48px 0 64px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .hero-text {
        font-size: 1.05rem;
    }

    .section {
        padding: 48px 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn-brand,
    .hero-actions .btn-outline-brand {
        width: 100%;
        text-align: center;
    }

    .card-media {
        aspect-ratio: 16 / 10;
    }

    .feature-card,
    .service-card,
    .testimonial-card,
    .about-card,
    .info-card {
        padding: 1.25rem;
    }

    .card-media {
        width: calc(100% + 2.5rem);
        margin: -1.25rem -1.25rem 1rem;
    }

    .cta-section {
        padding: 48px 0;
    }

    .page-card-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .stats-strip .row > div {
        margin-bottom: 1rem;
    }
}
