/* -------------------------------------------------------
   Del Group SmartCare – Global Styles
   Identity: Government Blue + Inter Font
   File: /assets/css/style.css
----------------------------------------------------------*/

/* 1. Reset & Base
----------------------------------------------------------*/

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body.landing-body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Inter", system-ui, sans-serif;
    background-color: #f5f7fa;
    color: #122033;
    line-height: 1.5;
}

/* Import Inter from Google Fonts (fallback if external load allowed) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

button {
    font-family: inherit;
    cursor: pointer;
}

:root {
    --color-bg-page: #f5f7fa;
    --color-white: #ffffff;
    --color-border: #d7dde8;

    --color-primary: #14365d;       /* Government blue */
    --color-primary-soft: #e1e9f4;
    --color-primary-strong: #0d2742;

    --color-accent: #0f8ccf;
    --color-accent-soft: #def2ff;

    --color-topbar-bg: #0d2742;
    --color-topbar-text: #ffffff;

    --color-text-main: #122033;
    --color-text-muted: #6b7280;
    --color-text-soft: #9ca3af;

    --shadow-soft: 0 8px 22px rgba(15, 23, 42, 0.08);
    --shadow-subtle: 0 4px 10px rgba(15, 23, 42, 0.06);
    --shadow-hero: 0 18px 45px rgba(15, 23, 42, 0.13);

    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 18px;
    --radius-pill: 999px;

    --container-width: 1160px;
}

/* Container
----------------------------------------------------------*/

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Topbar
----------------------------------------------------------*/

.topbar {
    background-color: var(--color-topbar-bg);
    color: var(--color-topbar-text);
    font-size: 14px;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    gap: 12px;
}

.topbar-message {
    opacity: 0.85;
}

.topbar-cta-link {
    font-weight: 500;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.7);
    text-decoration: none;
    white-space: nowrap;
}

.topbar-cta-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Header
----------------------------------------------------------*/

.main-header {
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 24px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
}

.logo-main {
    height: 40px;
    width: auto;
}

/* Navigation
----------------------------------------------------------*/

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.main-nav a {
    position: relative;
    padding: 8px 0;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: 999px;
    transition: width 0.18s ease-out;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Header right: language + login icon
----------------------------------------------------------*/

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switch {
    font-size: 13px;
    color: var(--color-text-soft);
    white-space: nowrap;
}

.lang-switch a {
    color: var(--color-text-soft);
}

.lang-switch .lang-active {
    font-weight: 600;
    color: var(--color-primary);
}

.login-icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    width: 34px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background-color: #f9fafb;
    transition: background-color 0.15s ease-out, box-shadow 0.15s ease-out, border-color 0.15s ease-out, transform 0.08s ease-out;
    text-decoration: none;
}

.login-icon-button:hover {
    background-color: #eef2f7;
    border-color: rgba(15, 23, 42, 0.18);
    box-shadow: 0 0 0 3px rgba(20, 54, 93, 0.11);
    transform: translateY(-1px);
}

.icon-user {
    width: 18px;
    height: 18px;
    fill: var(--color-primary);
}

/* Buttons
----------------------------------------------------------*/

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-small,
.btn-block {
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-pill);
    padding: 9px 18px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background-color 0.14s ease-out, color 0.14s ease-out, box-shadow 0.14s ease-out, transform 0.08s ease-out, border-color 0.14s ease-out;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 7px 18px rgba(20, 54, 93, 0.28);
}

.btn-primary:hover {
    background-color: var(--color-primary-strong);
    box-shadow: 0 9px 24px rgba(20, 54, 93, 0.33);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #e5e7eb;
    color: #111827;
}

.btn-secondary:hover {
    background-color: #d1d5db;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary-soft);
}

.btn-small {
    padding: 7px 14px;
    font-size: 13px;
}

.btn-block {
    width: 100%;
}

/* Section base
----------------------------------------------------------*/

.section {
    padding: 60px 0;
}

.section-title {
    font-size: 26px;
    line-height: 1.25;
    margin: 0 0 10px;
    color: var(--color-primary-strong);
}

.section-title.center {
    text-align: center;
}

.section-lead {
    margin: 0 0 24px;
    font-size: 15px;
    color: var(--color-text-muted);
    max-width: 700px;
}

/* Hero
----------------------------------------------------------*/

.hero-section {
    padding: 40px 0 50px;
    background: radial-gradient(circle at top left, #d9e4ff 0, #eaf0ff 28%, #f5f7fa 70%);
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.hero-column {
    min-width: 0;
}

.hero-title {
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 14px;
    color: var(--color-primary-strong);
}

.hero-body {
    margin: 0 0 20px;
    font-size: 15px;
    color: var(--color-text-muted);
}

.hero-buttons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: var(--color-text-muted);
}

.hero-bullets li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
}

.hero-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
}

/* Hero card: right side
----------------------------------------------------------*/

.hero-visual-column {
    display: flex;
    justify-content: flex-end;
}

.hero-card {
    background-color: #0f172a;
    border-radius: 22px;
    padding: 14px;
    box-shadow: var(--shadow-hero);
    color: #e5e7eb;
    width: 100%;
    max-width: 380px;
}

.hero-card-visual-placeholder {
    border-radius: 14px;
    background: radial-gradient(circle at top left, #334155, #020617);
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-card-footer {
    margin-top: 14px;
    padding: 12px 10px 4px;
    border-radius: 18px;
    background: radial-gradient(circle at top left, #0b1120, #020617);
    border: 1px solid rgba(148, 163, 184, 0.29);
}

.hero-logo-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.hero-logo {
    height: 26px;
    width: auto;
}

.hero-logo-caption {
    font-size: 12px;
    color: #e5e7eb;
    opacity: 0.9;
}

.hero-kpi-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 8px;
}

.kpi-box {
    background-color: rgba(15, 23, 42, 0.9);
    border-radius: 12px;
    padding: 8px 9px;
    border: 1px solid rgba(148, 163, 184, 0.45);
}

.kpi-label {
    display: block;
    font-size: 11px;
    color: #9ca3af;
    margin-bottom: 2px;
}

.kpi-value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #e5e7eb;
}

.hero-slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 6px 0 0;
}

.hero-dot {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background-color: rgba(148, 163, 184, 0.5);
}

.hero-dot-active {
    width: 16px;
    background-color: #38bdf8;
}

/* Solution strip
----------------------------------------------------------*/

.solution-strip {
    padding: 32px 0 40px;
    background-color: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.strip-title {
    font-size: 18px;
    margin-bottom: 16px;
}

.solution-strip-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.solution-strip-item {
    background-color: #f9fafb;
    border-radius: 999px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #4b5563;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.solution-strip-icon-placeholder {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e5efff, #c7d2fe);
}

/* About section
----------------------------------------------------------*/

.section-about {
    padding-top: 50px;
    padding-bottom: 60px;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 40px;
    align-items: flex-start;
}

.about-text-column .section-title {
    margin-bottom: 16px;
}

.about-block {
    margin-bottom: 16px;
}

.about-block h3 {
    margin: 0 0 4px;
    font-size: 16px;
    color: var(--color-primary-strong);
}

.about-block p {
    margin: 0;
    font-size: 14px;
    color: var(--color-text-muted);
}

.about-image-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-image-placeholder {
    background: repeating-linear-gradient(
            45deg,
            #e5e7eb,
            #e5e7eb 8px,
            #f3f4f6 8px,
            #f3f4f6 16px
    );
    border-radius: var(--radius-lg);
    min-height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-highlight-box {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    padding: 14px 16px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(148, 163, 184, 0.45);
}

.about-highlight-box h4 {
    margin: 0 0 6px;
    font-size: 15px;
    color: var(--color-primary-strong);
}

.about-highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: var(--color-text-muted);
}

.about-highlight-list li {
    margin-bottom: 2px;
}

/* Stats band
----------------------------------------------------------*/

.stats-band {
    padding: 40px 0;
    background: linear-gradient(145deg, #0f172a, #1e293b);
    color: #e5e7eb;
}

.stats-band-title {
    color: #e5e7eb;
    margin-bottom: 18px;
}

.stats-band-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.stats-pill {
    padding: 12px 14px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    display: flex;
    align-items: baseline;
    gap: 8px;
    background: rgba(15, 23, 42, 0.7);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.35);
}

.stats-pill-value {
    font-size: 18px;
    font-weight: 600;
}

.stats-pill-label {
    font-size: 13px;
    color: #cbd5f5;
}

/* Dashboards section
----------------------------------------------------------*/

.section-dashboards {
    background-color: #f9fafb;
}

.section-header {
    margin-bottom: 22px;
}

.dashboards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.dashboard-card {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    padding: 12px 12px 14px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(148, 163, 184, 0.45);
    display: flex;
    flex-direction: column;
}

.dashboard-image-placeholder {
    border-radius: var(--radius-sm);
    background: repeating-linear-gradient(
            -45deg,
            #e5e7eb,
            #e5e7eb 10px,
            #f9fafb 10px,
            #f9fafb 20px
    );
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
    margin-bottom: 10px;
}

.dashboard-card-body h3 {
    margin: 0 0 4px;
    font-size: 15px;
    color: var(--color-primary-strong);
}

.dashboard-card-body p {
    margin: 0 0 8px;
    font-size: 14px;
    color: var(--color-text-muted);
}

.card-link {
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
}

.card-link:hover {
    text-decoration: underline;
}

/* Workflows section
----------------------------------------------------------*/

.section-workflows {
    background-color: #ffffff;
}

.workflow-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 30px;
    align-items: flex-start;
}

.workflow-timeline {
    position: relative;
}

.workflow-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: 2px solid #e5e7eb;
    padding-left: 16px;
}

.workflow-step {
    position: relative;
    margin-bottom: 14px;
    padding-left: 8px;
}

.workflow-step-number {
    position: absolute;
    left: -26px;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background-color: var(--color-primary);
    color: #ffffff;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 3px #e5e7eb;
}

.workflow-step-body p {
    margin: 0;
    font-size: 14px;
    color: var(--color-text-muted);
}

.workflow-image-column {
    min-height: 160px;
}

.workflow-image-placeholder {
    border-radius: var(--radius-md);
    border: 1px dashed #cbd5e1;
    background-color: #f9fafb;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-soft);
    font-size: 12px;
}

/* Technology section
----------------------------------------------------------*/

.section-tech {
    background-color: #f9fafb;
}

.tech-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 30px;
    align-items: flex-start;
}

.tech-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
}

.tech-card {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    padding: 12px 14px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.tech-card h3 {
    margin: 0 0 4px;
    font-size: 15px;
    color: var(--color-primary-strong);
}

.tech-card p {
    margin: 0;
    font-size: 14px;
    color: var(--color-text-muted);
}

.tech-image-column .tech-image-placeholder {
    min-height: 170px;
    border-radius: var(--radius-md);
    background: repeating-linear-gradient(
            135deg,
            #dbeafe,
            #dbeafe 12px,
            #eff6ff 12px,
            #eff6ff 24px
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d4ed8;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Use cases
----------------------------------------------------------*/

.section-cases {
    background-color: #ffffff;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.case-card {
    background-color: #f9fafb;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(148, 163, 184, 0.4);
    display: flex;
    flex-direction: column;
}

.case-image-placeholder {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    background: repeating-linear-gradient(
            -45deg,
            #e5e7eb,
            #e5e7eb 12px,
            #f9fafb 12px,
            #f9fafb 24px
    );
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    text-transform: uppercase;
    color: #9ca3af;
}

.case-card-body {
    padding: 10px 12px 12px;
}

.case-card-body h3 {
    margin: 0 0 4px;
    font-size: 15px;
    color: var(--color-primary-strong);
}

.case-card-body p {
    margin: 0;
    font-size: 14px;
    color: var(--color-text-muted);
}

/* Partners slider
----------------------------------------------------------*/

.section-partners {
    background-color: #f9fafb;
}

.partners-slider {
    position: relative;
    margin-top: 14px;
    padding: 12px 40px;
    border-radius: var(--radius-lg);
    background-color: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.partners-track-wrapper {
    overflow: hidden;
}

.partners-track {
    display: flex;
    gap: 20px;
    transform: translateX(0);
    transition: transform 0.4s ease-out;
}

.partner-logo-box {
    flex: 0 0 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-placeholder {
    width: 100%;
    height: 50px;
    border-radius: var(--radius-md);
    background: repeating-linear-gradient(
            90deg,
            #e5e7eb,
            #e5e7eb 10px,
            #f9fafb 10px,
            #f9fafb 20px
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    text-transform: uppercase;
    color: #9ca3af;
}

.partners-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 999px;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background-color: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    color: #4b5563;
    transition: background-color 0.15s ease-out, box-shadow 0.15s ease-out, border-color 0.15s ease-out;
}

.partners-nav-btn:hover {
    background-color: #e5e7eb;
    border-color: rgba(30, 64, 175, 0.8);
    box-shadow: 0 0 0 3px rgba(191, 219, 254, 0.9);
}

.partners-nav-prev {
    left: 10px;
}

.partners-nav-next {
    right: 10px;
}

/* FAQ section
----------------------------------------------------------*/

.section-faq {
    background-color: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.faq-item {
    border-radius: var(--radius-md);
    border: 1px solid rgba(148, 163, 184, 0.7);
    background-color: #f9fafb;
    padding: 10px 12px;
}

.faq-item summary {
    font-weight: 500;
    font-size: 14px;
    color: var(--color-primary-strong);
    cursor: pointer;
}

.faq-item p {
    margin: 6px 0 0;
    font-size: 14px;
    color: var(--color-text-muted);
}

/* Contact section
----------------------------------------------------------*/

.section-contact {
    background-color: #f9fafb;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 30px;
}

.contact-text .section-title {
    margin-bottom: 10px;
}

.contact-company-box {
    margin-top: 14px;
    background-color: #ffffff;
    border-radius: var(--radius-md);
    padding: 12px 14px;
    border: 1px solid rgba(148, 163, 184, 0.7);
}

.contact-company-box h3 {
    margin: 0 0 6px;
    font-size: 15px;
    color: var(--color-primary-strong);
}

.contact-company-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: var(--color-text-muted);
}

.contact-company-list li {
    margin-bottom: 2px;
}

.contact-form-column {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}

.contact-form-placeholder {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px dashed #cbd5e1;
    background: #fefefe;
    padding: 16px 18px;
    font-size: 14px;
    color: var(--color-text-muted);
}

/* Footer
----------------------------------------------------------*/

.main-footer {
    margin-top: 40px;
    background-color: #020617;
    color: #e5e7eb;
}

.footer-top {
    padding: 26px 0 20px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.45);
}

.footer-top-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
    gap: 30px;
    align-items: flex-start;
}

.footer-logo {
    height: 30px;
    width: auto;
    margin-bottom: 8px;
}

.footer-about {
    margin: 0 0 6px;
    font-size: 13px;
    color: #e5e7eb;
    opacity: 0.9;
}

.footer-col h4 {
    margin: 0 0 6px;
    font-size: 14px;
    color: #e5e7eb;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
}

.footer-links li {
    margin-bottom: 4px;
}

.footer-links a {
    color: #e5e7eb;
    opacity: 0.85;
    text-decoration: none;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    padding: 10px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    color: #9ca3af;
}

.footer-lang {
    font-size: 12px;
}

.footer-lang .lang-active {
    font-weight: 600;
    color: #f9fafb;
}

/* Utility
----------------------------------------------------------*/

.center {
    text-align: center;
}

/* Responsive
----------------------------------------------------------*/

@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
        gap: 24px;
    }

    .about-layout,
    .workflow-layout,
    .tech-layout,
    .contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-image-column,
    .workflow-image-column,
    .tech-image-column,
    .contact-form-column {
        margin-top: 12px;
    }

    .dashboards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cases-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-band-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-top-layout {
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-inner {
        flex-wrap: wrap;
        gap: 10px;
    }

    .main-nav {
        display: none; /* لاحقاً ممكن نضيف burger menu */
    }

    .hero-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-visual-column {
        justify-content: flex-start;
    }

    .solution-strip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-band-grid {
        grid-template-columns: 1fr;
    }

    .dashboards-grid {
        grid-template-columns: 1fr;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-top-layout {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-body {
        font-size: 14px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-buttons-row {
        flex-direction: column;
    }

    .solution-strip-grid {
        grid-template-columns: 1fr;
    }

    .partners-slider {
        padding: 12px 32px;
    }
}
