@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --navy: #071b34;
    --navy2: #0a2b51;
    --navy-dark: #051426;
    --blue: #0877db;
    --blue2: #0a5ab9;
    --blue-glow: #1688f4;
    --cyan: #34b6ff;
    --cyan-light: #78beff;
    --cyan-subtle: #91c8ff;
    --orange: #ff7a2f;
    --green: #18a873;
    --red: #ef4444;
    --text: #142033;
    --text-secondary: #4a5d78;
    --muted: #66758a;
    --line: #e4eaf2;
    --soft: #f5f8fc;
    --soft-blue: #f0f6ff;
    --white: #ffffff;
    --shadow: 0 20px 60px rgba(7, 27, 52, 0.08);
    --shadow2: 0 30px 90px rgba(7, 27, 52, 0.14);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 22px;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    background: #F8FAFC;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.bg-grid-pattern {
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(226, 232, 240, 0.5) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(226, 232, 240, 0.5) 1px, transparent 1px);
}

.bg-dots-pattern {
    background-image: radial-gradient(rgba(14, 165, 233, 0.15) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

img, svg {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1220px, calc(100% - 48px));
    margin: 0 auto;
}

.topbar {
    background: var(--navy-dark);
    color: #b9c9dd;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1001;
}

.topbar-inner {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-inner span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.topbar-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--green);
}

.topbar-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-links a {
    color: #b9c9dd;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.topbar-links a:hover {
    color: #ffffff;
}

.site-header {
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(224, 232, 241, 0.9);
    box-shadow: 0 8px 28px rgba(15, 47, 82, 0.04);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 12px 36px rgba(15, 47, 82, 0.09);
    background: rgba(255, 255, 255, 0.98);
}

.nav-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-symbol {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
    font-size: 1.35rem;
    box-shadow: 0 4px 14px rgba(8, 119, 219, 0.3);
}

.brand-logo-text {
    display: flex;
    flex-direction: column;
}

.brand-logo-text strong {
    font-size: 1.18rem;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.brand-logo-text span {
    font-size: 0.68rem;
    color: var(--blue);
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav > a, .nav-drop > button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 42px;
    padding: 0 13px;
    border-radius: 10px;
    color: #2c4058;
    font-size: 13.5px;
    font-weight: 700;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}

.main-nav > a:hover, .nav-drop > button:hover, .main-nav > a.is-active, .nav-drop.is-active > button {
    color: var(--blue);
    background: var(--soft-blue);
}

.main-nav > a.is-active::after, .nav-drop.is-active > button::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 4px;
    height: 2px;
    border-radius: 2px;
    background: var(--blue-glow);
}

.nav-chevron {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.nav-drop {
    position: relative;
}

.nav-drop:hover .nav-chevron {
    transform: rotate(180deg);
}

.drop-menu {
    position: absolute;
    top: 52px;
    left: -20px;
    min-width: 340px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1002;
}

.nav-drop:hover .drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.drop-menu > a {
    display: grid !important;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px 12px !important;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.18s ease;
}

.drop-menu > a:hover {
    background: #f4f9ff !important;
    transform: translateX(3px);
}

.nav-menu-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--blue);
    background: linear-gradient(145deg, #eff7ff, #e4f1ff);
    border: 1px solid #d9ebfd;
    font-size: 1.15rem;
}

.nav-menu-copy b {
    display: block;
    margin: 0 0 2px;
    color: #17314f;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 700;
}

.nav-menu-copy small {
    display: block;
    color: #8090a3;
    font-size: 11px;
    line-height: 1.35;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    color: var(--navy);
    padding: 10px 14px;
    border-radius: 10px;
    background: #f4f8fc;
    border: 1px solid var(--line);
    transition: all 0.2s ease;
}

.nav-phone-btn:hover {
    background: #e9f2fd;
    border-color: #cde1fa;
    color: var(--blue);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
    padding: 11px 18px;
    font-weight: 750;
    font-size: 13.5px;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), #075cae);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(8, 119, 219, 0.22);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0984f4, #0867c2);
    box-shadow: 0 14px 30px rgba(8, 119, 219, 0.32);
    color: #ffffff;
}

.btn-ghost-white {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    backdrop-filter: blur(8px);
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.btn-ghost {
    border-color: var(--line);
    background: #ffffff;
    color: var(--navy);
}

.btn-ghost:hover {
    background: var(--soft);
    border-color: #cbd8e8;
}

.btn-dark {
    background: var(--navy);
    color: #ffffff;
}

.btn-dark:hover {
    background: #25D366;
    color: #FFFFFF !important;
    border-color: #25D366;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background: #1EBE5B;
    border-color: #1EBE5B;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.84rem;
}

.btn-lg {
    padding: 14px 26px;
    font-size: 0.98rem;
    border-radius: var(--radius-sm);
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero-premium {
    background: linear-gradient(135deg, #06172d 0%, #0b315c 60%, #0c4d86 100%);
    color: #ffffff;
    padding: 90px 0 85px;
    position: relative;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 80%);
    pointer-events: none;
}

.hero-glow-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 182, 255, 0.18) 0%, rgba(8, 119, 219, 0) 70%);
    top: -100px;
    right: 5%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--cyan-subtle);
    background: rgba(8, 119, 219, 0.25);
    border: 1px solid rgba(120, 190, 255, 0.35);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.eyebrow.dark {
    background: rgba(8, 119, 219, 0.08);
    border-color: rgba(8, 119, 219, 0.2);
    color: var(--blue);
}

.hero h1 {
    font-size: clamp(34px, 4.2vw, 54px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.035em;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--cyan-light);
}

.hero p {
    font-size: 17px;
    color: #c6d5e8;
    max-width: 620px;
    line-height: 1.65;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12.5px;
    color: #c3d3e5;
    font-weight: 600;
}

.hero-proof span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-proof span strong {
    color: #ffffff;
}

.command-ui {
    background: #ffffff;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-xl);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.command-head {
    height: 60px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid var(--line);
}

.command-head-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.command-avatar {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--navy);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
}

.command-head-text small {
    display: block;
    font-size: 9px;
    color: var(--muted);
    letter-spacing: 1px;
    font-weight: 700;
}

.command-head-text strong {
    display: block;
    font-size: 12.5px;
    color: var(--navy);
}

.command-head-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    color: var(--green);
    font-weight: 800;
    background: #ecfdf5;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #a7f3d0;
}

.command-main {
    display: flex;
    min-height: 340px;
    background: #f8fbff;
}

.command-sidebar {
    width: 54px;
    background: #08223e;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
}

.command-sidebar-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0c6e2;
    font-size: 11px;
}

.command-sidebar-icon.active {
    background: var(--blue);
    border-color: var(--blue);
    color: #ffffff;
}

.command-content {
    flex: 1;
    padding: 18px;
}

.cmd-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.cmd-stat-box {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 11px 12px;
}

.cmd-stat-box small {
    display: block;
    color: var(--muted);
    font-size: 9px;
    font-weight: 600;
}

.cmd-stat-box b {
    display: block;
    font-size: 17px;
    color: var(--navy);
    margin: 2px 0;
}

.cmd-stat-box span {
    display: block;
    font-size: 9px;
    color: var(--green);
    font-weight: 700;
}

.cmd-chart {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 13px;
    margin-bottom: 12px;
}

.chart-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--navy);
}

.chart-title b {
    color: var(--blue);
}

.bars {
    height: 100px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding-top: 14px;
}

.bars i {
    flex: 1;
    background: linear-gradient(180deg, var(--blue) 0%, #91c8fa 100%);
    border-radius: 4px 4px 2px 2px;
    transition: height 0.3s ease;
}

.cmd-rows {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 2px 12px;
}

.cmd-row-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
    font-size: 10px;
}

.cmd-row-item:last-child {
    border-bottom: none;
}

.cmd-row-item span {
    color: var(--text-secondary);
}

.cmd-row-item em {
    font-style: normal;
    color: var(--green);
    font-weight: 700;
}

.brand-strip {
    border-bottom: 1px solid var(--line);
    background: #ffffff;
    padding: 18px 0;
}

.brand-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.brand-strip-label {
    font-size: 12px;
    font-weight: 800;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brand-strip-logos {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 800;
    color: var(--navy);
    background: var(--soft);
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid var(--line);
}

.section {
    padding: 85px 0;
}

.section-soft {
    background: var(--soft);
}

.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 55px;
}

.section-head h2 {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.18;
    margin-bottom: 14px;
}

.section-head p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-box {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: #cbd8e8;
}

.service-box-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--soft-blue) 0%, #d8e9ff 100%);
    border: 1px solid #c7dffc;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-box-tag {
    font-size: 10.5px;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}

.service-box h3 {
    font-size: 1.28rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.service-box p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-box-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-box-features li {
    font-size: 12.5px;
    color: var(--text);
    font-weight: 600;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-box-features li svg {
    color: var(--green);
    flex-shrink: 0;
}

.service-box-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 800;
    color: var(--blue);
    border-top: 1px solid var(--line);
    padding-top: 16px;
    width: 100%;
}

.service-box-link:hover {
    color: var(--blue2);
    gap: 9px;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-content h2 {
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.split-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 24px;
}

.checklist {
    list-style: none;
    margin-bottom: 30px;
}

.checklist li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-text strong {
    display: block;
    font-size: 14.5px;
    color: var(--navy);
    font-weight: 800;
}

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

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.timeline-step {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 26px 20px;
    position: relative;
}

.step-num {
    width: 38px;
    height: 38px;
    background: var(--navy);
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.timeline-step h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.timeline-step p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.25s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: #cbd8e8;
}

.project-body {
    padding: 24px;
}

.project-category {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.project-body h3 {
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.project-body p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 16px;
}

.project-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.project-tag {
    font-size: 11px;
    background: var(--soft);
    border: 1px solid var(--line);
    padding: 3px 8px;
    border-radius: 4px;
    color: var(--text-secondary);
    font-weight: 600;
}

.comparison-table-wrap {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: var(--navy);
    color: #ffffff;
    padding: 18px 22px;
    font-size: 14px;
    text-align: left;
    font-weight: 800;
}

.comparison-table th.highlight {
    background: var(--blue);
}

.comparison-table td {
    padding: 16px 22px;
    border-bottom: 1px solid var(--line);
    font-size: 13.5px;
    color: var(--text);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td.feature-title {
    font-weight: 700;
    color: var(--navy);
}

.comparison-table td.highlight {
    background: var(--soft-blue);
    font-weight: 700;
    color: var(--blue2);
}

.cta-banner {
    background: linear-gradient(135deg, #071b34 0%, #0c4d86 100%);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow2);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 14px;
}

.cta-banner p {
    font-size: 16px;
    color: #c6d5e8;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.footer {
    background: var(--navy-dark);
    color: #8da2bb;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
    padding: 70px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr;
    gap: 40px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #8da2bb;
    transition: color 0.2s ease;
}

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

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.footer-contact-item span {
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    font-size: 12px;
    color: #6b829e;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.form-group-custom {
    margin-bottom: 14px;
}

.form-input-custom {
    width: 100%;
    padding: 12px 14px;
    background: #ffffff;
    border: 1px solid var(--line);
    color: var(--text);
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-family: inherit;
    outline: none;
    transition: all 0.2s ease;
}

.form-input-custom:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(8, 119, 219, 0.12);
}

.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    background: #25d366;
    color: #ffffff;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.08);
}

@media (max-width: 1080px) {
    .hero-grid, .split-section, .cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .services-grid, .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .topbar {
        display: none;
    }
    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: #ffffff;
        border-bottom: 1px solid var(--line);
        padding: 18px 24px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        box-shadow: var(--shadow2);
    }
    .main-nav.open {
        display: flex;
    }
    .nav-toggle {
        display: block;
    }
    .drop-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: 1px solid var(--line);
        margin-top: 6px;
        min-width: unset;
    }
    .services-grid, .projects-grid, .timeline-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .cmd-stats {
        grid-template-columns: 1fr;
    }
    .command-main {
        flex-direction: column;
    }
    .command-sidebar {
        width: 100%;
        height: 40px;
        flex-direction: row;
        padding-top: 0;
        justify-content: center;
    }
    .cta-banner {
        padding: 36px 24px;
    }
}
