:root {
    --primary: #10337d;
    --primary-dark: #0a2152;
    --primary-soft: #eef3ff;
    --accent: #ff6b2f;
    --accent-dark: #f15b21;
    --text: #15233d;
    --muted: #5a6a85;
    --line: #dfe6f4;
    --white: #ffffff;
    --shadow: 0 20px 60px rgba(16, 51, 125, 0.12);
    --radius: 24px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(16, 51, 125, 0.08), transparent 26%),
        linear-gradient(180deg, #ffffff, #fbfcff 42%, #ffffff);
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

.header-inner,
.stats-strip,
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(223, 230, 244, 0.68);
    box-shadow: 0 16px 38px rgba(16, 51, 125, 0.08);
}

.header-topline {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid rgba(223, 230, 244, 0.72);
    color: var(--muted);
    font-size: 0.92rem;
}

.header-topline-left,
.header-topline-right,
.site-nav-links,
.site-nav-cta,
.brand,
.header-mobile-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-topline-left span + span,
.header-topline-right a + a {
    position: relative;
    padding-left: 14px;
}

.header-topline-left span + span::before,
.header-topline-right a + a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(16, 51, 125, 0.3);
    transform: translateY(-50%);
}

.header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    min-height: 102px;
    column-gap: 28px;
}

.brand img,
.footer-logo {
    width: auto;
    height: 58px;
}

.brand {
    gap: 0;
    min-width: 0;
}

.footer-logo {
    filter: brightness(0) invert(1);
    opacity: 0.96;
}

.site-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    font-weight: 600;
    min-width: 0;
}

.site-nav-links {
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.site-nav a {
    color: var(--muted);
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.96rem;
}

.site-nav-links a {
    position: relative;
    overflow: hidden;
}

.site-nav-links a::after {
    content: "";
    position: absolute;
    inset: auto 12px 6px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), #2d73ea);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.24s ease;
}

.site-nav-links a:hover,
.site-nav-links a.active {
    color: var(--primary);
    background: linear-gradient(180deg, rgba(16, 51, 125, 0.07), rgba(16, 51, 125, 0.03));
    box-shadow: inset 0 0 0 1px rgba(16, 51, 125, 0.05);
    transform: translateY(-1px);
}

.site-nav-links a:hover::after,
.site-nav-links a.active::after {
    transform: scaleX(1);
}

.site-nav-cta {
    gap: 12px;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
}

.header-phone {
    position: relative;
    display: grid;
    grid-template-columns: 30px auto;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 12px;
    row-gap: 2px;
    min-height: 64px;
    padding: 12px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(241, 246, 255, 0.98));
    border: 1px solid rgba(16, 51, 125, 0.12);
    min-width: 210px;
    box-shadow: 0 16px 30px rgba(16, 51, 125, 0.09);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.header-phone::before {
    content: "\f095";
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.86rem;
    color: var(--white);
    background: linear-gradient(135deg, #10337d, #1e56be);
    box-shadow: 0 10px 20px rgba(16, 51, 125, 0.22);
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
}

.header-phone::after {
    display: none !important;
}

.header-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 34px rgba(16, 51, 125, 0.12);
    border-color: rgba(16, 51, 125, 0.18);
}

.header-phone small,
.header-phone strong {
    display: block;
    line-height: 1.1;
    position: relative;
    z-index: 1;
    grid-column: 2;
}

.header-phone small {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.header-phone strong {
    color: var(--primary);
    font-size: 1.06rem;
    white-space: nowrap;
}

.header-whatsapp-link {
    white-space: nowrap;
    display: none !important;
}

.header-mobile-actions {
    display: none;
}

.header-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(16, 51, 125, 0.1), rgba(16, 51, 125, 0.04));
    border: 1px solid rgba(16, 51, 125, 0.12);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(16, 51, 125, 0.08);
}

.header-icon-link-whatsapp {
    background: linear-gradient(180deg, rgba(36, 180, 126, 0.14), rgba(36, 180, 126, 0.06));
    border-color: rgba(36, 180, 126, 0.2);
    color: #157a53;
}

.nav-toggle {
    display: none;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(16, 51, 125, 0.14);
    background: linear-gradient(180deg, #ffffff, #f3f7ff);
    color: var(--primary);
    padding: 11px 15px;
    border-radius: 18px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(16, 51, 125, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    justify-self: end;
}

.nav-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(16, 51, 125, 0.12);
}

.nav-toggle-icon {
    width: 18px;
    display: grid;
    gap: 4px;
}

.nav-toggle-icon span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle-icon span:nth-child(2) {
    width: 14px;
}

.nav-toggle-icon span:nth-child(3) {
    width: 10px;
}

.nav-toggle-label {
    line-height: 1;
}

.nav-toggle[aria-expanded="true"] {
    border-color: rgba(16, 51, 125, 0.3);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(3) {
    width: 18px;
    transform: translateY(-6px) rotate(-45deg);
}

.button,
.button-outline,
.button-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 15px 24px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    gap: 10px;
}

.button[href^="tel:"]::before,
.button-sm[href^="tel:"]::before {
    content: "\260E";
    font-size: 0.95rem;
    line-height: 1;
}

.button-outline[href*="wa.me"]::before,
.floating-whatsapp::before {
    content: "\25CF";
    font-size: 0.72rem;
    line-height: 1;
}

.header-icon-link[href^="tel:"]::before,
.floating-call::before {
    content: "\f095";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.84rem;
    line-height: 1;
}

.header-icon-link-whatsapp::before {
    content: "\f232";
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
    font-size: 0.88rem;
    line-height: 1;
}

.button,
.button-sm {
    background: linear-gradient(135deg, #10337d, #1e56be);
    color: var(--white) !important;
    box-shadow: 0 18px 30px rgba(16, 51, 125, 0.22);
}

.button-outline {
    border: 1px solid rgba(16, 51, 125, 0.28);
    color: var(--primary);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
}

.button-sm {
    padding: 11px 18px;
    white-space: nowrap;
    border: 1px solid rgba(16, 51, 125, 0.08);
}

.button:hover,
.button-outline:hover,
.button-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(16, 51, 125, 0.16);
}

.button-sm:hover {
    background: linear-gradient(135deg, #0f3178, #1a4fad);
    color: var(--white) !important;
    box-shadow: 0 20px 34px rgba(16, 51, 125, 0.22);
}

.site-nav-cta .button-sm {
    min-height: 56px;
    padding-inline: 20px;
    border-radius: 20px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 64px;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    inset: auto;
    border-radius: 50%;
    z-index: -1;
    filter: blur(10px);
}

.hero::before {
    width: 520px;
    height: 520px;
    right: -120px;
    top: -120px;
    background: radial-gradient(circle, rgba(16, 51, 125, 0.22), rgba(16, 51, 125, 0));
}

.hero::after {
    width: 460px;
    height: 460px;
    left: -120px;
    bottom: -160px;
    background: radial-gradient(circle, rgba(16, 51, 125, 0.08), rgba(16, 51, 125, 0));
}

.hero-grid,
.cards-grid,
.benefit-grid,
.service-list-grid,
.footer-grid,
.contact-grid,
.coverage-grid,
.two-column,
.brand-grid,
.review-grid,
.page-hero-grid {
    display: grid;
    gap: 24px;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.85fr);
    align-items: center;
    gap: 36px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(238, 243, 255, 0.96));
    color: var(--primary);
    border: 1px solid rgba(16, 51, 125, 0.08);
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 18px;
    box-shadow: 0 14px 24px rgba(16, 51, 125, 0.08);
}

.eyebrow::before,
.section-kicker::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e56be, #10337d);
    box-shadow: 0 0 0 4px rgba(16, 51, 125, 0.08);
}

h1,
h2,
h3 {
    margin: 0 0 14px;
    line-height: 1.2;
}

h1 {
    font-family: "Poppins", "Segoe UI", sans-serif;
    font-size: clamp(1.85rem, 3.5vw, 2.35rem);
    letter-spacing: -0.02em;
    font-weight: 800;
}

h2 {
    font-family: "Poppins", "Segoe UI", sans-serif;
    font-size: clamp(1.45rem, 2.5vw, 1.85rem);
    font-weight: 800;
}

h3 {
    font-size: 1.15rem;
    font-weight: 700;
}

p {
    margin: 0 0 16px;
    color: var(--muted);
}

.hero-copy p,
.section-intro {
    font-size: 1.06rem;
    max-width: 62ch;
}

.hero-copy {
    position: relative;
    padding: 18px 0;
}

.hero-inline-visual {
    display: none;
}

.hero-inline-visual img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 24px 42px rgba(16, 51, 125, 0.16);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 8px;
}

.hero-badges span {
    padding: 12px 18px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(16, 51, 125, 0.06);
    color: var(--text);
    font-size: 0.94rem;
    font-weight: 600;
    box-shadow: 0 12px 24px rgba(16, 51, 125, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-badges span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}

.hero-badges span:hover {
    transform: translateY(-2px);
    border-color: rgba(16, 51, 125, 0.14);
    background: var(--primary-soft);
    box-shadow: 0 16px 30px rgba(16, 51, 125, 0.08);
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0 26px;
}

.stats-strip {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 28px;
    margin-top: 12px;
    padding: 22px 24px;
    border: 1px solid rgba(16, 51, 125, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 248, 255, 0.92));
    box-shadow: 0 18px 34px rgba(16, 51, 125, 0.08);
}

.stat strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
}

.stat span {
    color: var(--muted);
    font-weight: 600;
}

.hero-panel,
.card,
.split-card,
.contact-card,
.faq-item,
.service-spotlight,
.badge-box {
    background: var(--white);
    border: 1px solid rgba(223, 230, 244, 0.85);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-panel {
    padding: 32px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 246, 255, 0.98)),
        var(--white);
}

.hero-visual-frame {
    margin: -8px -8px 18px;
    padding: 14px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(16, 51, 125, 0.08), rgba(16, 51, 125, 0.02));
}

.hero-visual-frame img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 22px 42px rgba(16, 51, 125, 0.18);
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), #3f6bc6);
}

.hero-panel-top p {
    margin-bottom: 22px;
}

.hero-panel-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(16, 51, 125, 0.08);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 800;
}

.hero-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.hero-feature {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(16, 51, 125, 0.08);
}

.hero-feature strong,
.hero-contact-ribbon strong {
    display: block;
    color: var(--primary);
    font-size: 1.04rem;
    margin-bottom: 6px;
}

.hero-feature span,
.hero-contact-ribbon small {
    color: var(--muted);
    font-weight: 600;
}

.hero-contact-ribbon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0e2d71, #1645a0);
    color: var(--white);
    box-shadow: 0 22px 40px rgba(16, 51, 125, 0.22);
}

.hero-contact-ribbon strong,
.hero-contact-ribbon small {
    color: rgba(255, 255, 255, 0.94);
}

.hero-contact-ribbon .button {
    white-space: nowrap;
    background: #ffffff;
    color: var(--primary) !important;
    box-shadow: none;
}

.hero-panel ul,
.check-list,
.contact-list,
.icon-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.hero-panel li,
.check-list li,
.contact-list li,
.icon-list li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 14px;
}

.hero-panel li::before,
.check-list li::before,
.contact-list li::before,
.icon-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
}

section {
    padding: 44px 0;
}

.section-surface {
    background: linear-gradient(180deg, rgba(238, 243, 255, 0.58), rgba(255, 255, 255, 0));
}

.cards-grid,
.benefit-grid,
.service-list-grid,
.coverage-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.contact-card,
.split-card,
.faq-item,
.badge-box,
.service-spotlight {
    padding: 30px;
}

.card span,
.badge-box span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 0.02em;
}

.card-media {
    width: calc(100% + 60px);
    max-width: none;
    height: 220px;
    margin: -30px -30px 22px;
    object-fit: cover;
    border-radius: 24px 24px 18px 18px;
}

.service-photo {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 18px;
    box-shadow: 0 18px 34px rgba(16, 51, 125, 0.12);
}

.split-grid,
.contact-grid,
.two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.brand-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-chip,
.review-card,
.page-hero-media,
.process-item {
    background: var(--white);
    border: 1px solid rgba(223, 230, 244, 0.85);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.brand-chip {
    position: relative;
    overflow: hidden;
    padding: 20px 22px;
    text-align: center;
    font-weight: 800;
    color: var(--primary);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}

.brand-chip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 51, 125, 0.08), rgba(16, 51, 125, 0));
    opacity: 0;
    transition: opacity 0.28s ease;
}

.brand-chip:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 51, 125, 0.16);
    box-shadow: 0 22px 34px rgba(16, 51, 125, 0.12);
    color: #1e56be;
}

.brand-chip:hover::before {
    opacity: 1;
}

.review-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.review-card p {
    font-size: 1.02rem;
    margin-bottom: 18px;
}

.review-card strong {
    color: var(--primary);
}

.review-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #10337d, #2d73ea);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.review-card::after {
    content: "";
    position: absolute;
    inset: auto -12% -42% auto;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 134, 226, 0.09), rgba(45, 134, 226, 0));
    transition: transform 0.35s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 51, 125, 0.14);
    box-shadow: 0 28px 42px rgba(16, 51, 125, 0.13);
}

.review-card:hover::before {
    opacity: 1;
}

.review-card:hover::after {
    transform: scale(1.12);
}

.page-hero {
    padding: 60px 0 40px;
}

.page-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 48px;
}

.page-hero-copy {
    display: grid;
    gap: 20px;
}

.page-hero-copy h1 {
    max-width: 14ch;
    font-size: clamp(2rem, 3.6vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: -0.035em;
    font-weight: 800;
    background: linear-gradient(135deg, #10337d 0%, #1e56be 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero-copy .section-intro {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.85;
}

.page-hero-media {
    overflow: hidden;
    padding: 24px;
    border-radius: 40px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 26%),
        radial-gradient(circle at bottom left, rgba(108, 188, 255, 0.18), transparent 24%),
        linear-gradient(145deg, #091b44, #10337d 50%, #1c52b5 100%);
    box-shadow: 0 34px 64px rgba(16, 51, 125, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.page-hero-media:hover {
    transform: translateY(-4px);
    box-shadow: 0 38px 72px rgba(16, 51, 125, 0.26);
}

.page-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 28px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-hero-media:hover img {
    transform: scale(1.04);
}

.page-media-stack {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
}

.page-media-note {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(16, 51, 125, 0.08);
    border-left: 5px solid var(--accent);
    box-shadow: 0 20px 40px rgba(16, 51, 125, 0.14);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.page-hero-media:hover .page-media-note {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(16, 51, 125, 0.18);
}

.page-media-note small,
.cta-panel small {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.76rem;
}

.page-media-note strong,
.cta-panel strong {
    display: block;
    margin-bottom: 6px;
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
}

.page-hero-stats,
.detail-grid,
.service-support-grid,
.area-layout-grid,
.area-service-grid,
.service-catalog-grid,
.area-catalog-grid {
    display: grid;
    gap: 18px;
}

.page-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-stat-card,
.detail-card,
.cta-panel,
.service-catalog-card,
.area-catalog-card {
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff, #fcfdff);
    border: 1px solid rgba(16, 51, 125, 0.06);
    box-shadow: 0 16px 30px rgba(16, 51, 125, 0.04);
}

.page-stat-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.page-stat-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.page-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 51, 125, 0.12);
    box-shadow: 0 20px 36px rgba(16, 51, 125, 0.08);
}

.page-stat-card:hover::before {
    opacity: 1;
}

.page-stat-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 1.15rem;
    font-weight: 800;
}

.page-stat-card span,
.page-media-note span,
.cta-panel p {
    color: var(--muted);
}

.page-section-compact {
    padding-top: 18px;
}

.detail-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.detail-card-wide {
    min-height: 100%;
}

.detail-card h2,
.service-catalog-card h2,
.area-catalog-card h2 {
    margin-bottom: 12px;
}

.service-support-grid,
.area-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
}

.location-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 0;
}

.location-chip-row span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(16, 51, 125, 0.06);
    border: 1px solid rgba(16, 51, 125, 0.08);
    color: var(--primary);
    font-size: 0.94rem;
    font-weight: 700;
}

.cta-panel {
    background: linear-gradient(180deg, rgba(16, 51, 125, 0.98), rgba(13, 40, 96, 0.96));
    color: rgba(255, 255, 255, 0.94);
}

.cta-panel small,
.cta-panel strong,
.cta-panel p {
    color: inherit;
}

.cta-panel .button {
    width: 100%;
    margin-top: 8px;
    background: #ffffff;
    color: var(--primary) !important;
    box-shadow: none;
}

.cta-panel .button-outline {
    width: 100%;
    margin-top: 8px;
    border-color: rgba(255, 255, 255, 0.26);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.service-catalog-grid,
.area-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-catalog-card,
.area-catalog-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-catalog-card .service-photo,
.area-catalog-card .card-media {
    width: calc(100% + 48px);
    max-width: none;
    height: 240px;
    margin: -24px -24px 20px;
    border-radius: 28px 28px 18px 18px;
    object-fit: cover;
}

.service-catalog-card:hover,
.area-catalog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 54px rgba(16, 51, 125, 0.16);
    border-color: rgba(255, 107, 47, 0.34);
}

.service-catalog-card .button-outline,
.area-catalog-card .button-outline {
    margin-top: auto;
}

.services-landing-hero {
    padding: 36px 0 28px;
}

.services-hero-shell,
.services-why-grid,
.services-coverage-grid,
.services-cta-shell {
    display: grid;
    gap: 28px;
}

.services-hero-shell {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: start;
    gap: 40px;
}

.services-hero-copy,
.services-hero-panel,
.services-why-copy,
.services-flow-board,
.services-district-grid,
.services-cta-shell {
    position: relative;
}

.services-hero-copy {
    padding: 40px;
    border-radius: 36px;
    background:
        radial-gradient(circle at top left, rgba(16, 51, 125, 0.05), transparent 45%),
        linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
    border: 1px solid rgba(16, 51, 125, 0.08);
    box-shadow: 0 30px 60px rgba(16, 51, 125, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.services-hero-copy::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 36px 36px 0 0;
    pointer-events: none;
}

.services-hero-copy h1 {
    max-width: 14ch;
    margin-bottom: 20px;
    font-size: clamp(2rem, 3.6vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: -0.035em;
    font-weight: 800;
    background: linear-gradient(135deg, #10337d 0%, #1e56be 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-hero-copy p {
    max-width: 60ch;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.85;
}

.services-hero-points {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
}

.services-hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(16, 51, 125, 0.06);
    color: var(--text);
    font-weight: 600;
    font-size: 0.96rem;
    box-shadow: 0 12px 24px rgba(16, 51, 125, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.services-hero-points span:hover {
    transform: translateY(-2px);
    border-color: rgba(16, 51, 125, 0.14);
    background: var(--primary-soft);
    box-shadow: 0 16px 30px rgba(16, 51, 125, 0.08);
}

.services-hero-points i {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), #1e56be);
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    box-shadow: 0 6px 12px rgba(16, 51, 125, 0.2);
    transition: transform 0.3s ease;
}

.services-hero-points span:hover i {
    transform: rotate(10deg) scale(1.08);
}

.services-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.services-hero-stat {
    padding: 22px 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff, #fcfdff);
    border: 1px solid rgba(16, 51, 125, 0.06);
    box-shadow: 0 16px 30px rgba(16, 51, 125, 0.04);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.services-hero-stat::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services-hero-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 51, 125, 0.12);
    box-shadow: 0 20px 36px rgba(16, 51, 125, 0.08);
}

.services-hero-stat:hover::before {
    opacity: 1;
}

.services-hero-stat strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 1.15rem;
    font-weight: 800;
}

.services-hero-stat span {
    display: block;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.services-hero-panel {
    padding: 24px;
    border-radius: 40px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 26%),
        radial-gradient(circle at bottom left, rgba(108, 188, 255, 0.18), transparent 24%),
        linear-gradient(145deg, #091b44, #10337d 50%, #1c52b5 100%);
    box-shadow: 0 34px 64px rgba(16, 51, 125, 0.22);
    align-self: start;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-hero-address-card,
.services-hero-stack article,
.services-district-card {
    border-radius: 26px;
}

.services-hero-address-card {
    padding: 24px;
    margin-bottom: 18px;
    background: #ffffff;
    box-shadow: 0 24px 48px rgba(4, 17, 40, 0.22);
    border-left: 5px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.services-hero-address-card::after {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 47, 0.08) 0%, transparent 70%);
}

.services-hero-address-card small,
.services-hero-address-card strong,
.services-hero-address-card span {
    display: block;
}

.services-hero-address-card small {
    margin-bottom: 10px;
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.76rem;
}

.services-hero-address-card strong {
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 1.38rem;
    line-height: 1.2;
    font-weight: 800;
}

.services-hero-address-card span {
    color: var(--muted);
    font-weight: 500;
}

.services-hero-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.services-hero-stack article {
    min-height: 154px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 34px rgba(4, 27, 64, 0.12);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.35s ease;
}

.services-hero-stack article:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 28px 46px rgba(4, 27, 64, 0.22);
}

.services-hero-stack i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 16px;
    color: var(--white);
    font-size: 1.15rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-hero-stack article:hover i {
    transform: scale(1.1) rotate(6deg);
}

/* Kombi Servisi Icon */
.services-hero-stack article:nth-child(1) i {
  background: linear-gradient(135deg, #ff7300, #ff3c00);
}

/* Klima Servisi Icon */
.services-hero-stack article:nth-child(2) i {
  background: linear-gradient(135deg, #00d2ff, #0072ff);
}

/* Beyaz Eşya Servisi Icon */
.services-hero-stack article:nth-child(3) i {
  background: linear-gradient(135deg, #7f00ff, #e100ff);
}

/* Anakart Tamiri Icon */
.services-hero-stack article:nth-child(4) i {
  background: linear-gradient(135deg, #f5af19, #e65c00);
}

.services-hero-stack strong,
.services-hero-stack span {
    display: block;
}

.services-hero-stack strong {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 1.08rem;
    font-weight: 700;
}

.services-hero-stack span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    line-height: 1.55;
}

.services-hero-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
    padding: 18px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.services-hero-contact:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
}

.services-hero-contact span {
    color: rgba(255, 255, 255, 0.74);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.74rem;
}

.services-hero-contact a {
    color: var(--white);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.services-hero-contact:hover a {
    transform: scale(1.02);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.services-overview {
    padding-top: 18px;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.services-overview-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(70, 152, 255, 0.12), rgba(70, 152, 255, 0) 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.98));
    border: 1px solid rgba(16, 51, 125, 0.08);
    box-shadow: 0 28px 54px rgba(16, 51, 125, 0.1);
    transition: transform 0.34s ease, box-shadow 0.34s ease, border-color 0.34s ease;
}

.services-overview-card:nth-child(1),
.services-overview-card:nth-child(4) {
    transform: translateY(-8px);
}

.services-overview-card:nth-child(2),
.services-overview-card:nth-child(3) {
    transform: translateY(8px);
}

.services-overview-card:hover {
    transform: translateY(-14px);
    border-color: rgba(16, 51, 125, 0.16);
    box-shadow: 0 38px 64px rgba(16, 51, 125, 0.15);
}

.services-overview-card img {
    width: 100%;
    height: 248px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.services-overview-card:hover img {
    transform: scale(1.07);
}

.services-overview-body {
    position: relative;
    margin: -28px 18px 18px;
    padding: 22px 22px 22px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(16, 51, 125, 0.06);
    box-shadow: 0 22px 36px rgba(16, 51, 125, 0.12);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.services-overview-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(16, 51, 125, 0.12), rgba(16, 51, 125, 0.06));
    box-shadow: 0 16px 30px rgba(16, 51, 125, 0.12);
}

.services-overview-icon i {
    color: var(--primary);
    font-size: 1.08rem;
}

.services-overview-body h3 {
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 1.46rem;
    line-height: 1.14;
}

.services-overview-body p {
    margin-bottom: 14px;
    color: var(--muted);
    line-height: 1.72;
}

.services-overview-body ul {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.services-overview-body a {
    margin-top: auto;
}

.services-overview-body li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.58;
}

.services-overview-body li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10337d, #2d73ea);
}

.services-overview-body a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 800;
    padding-top: 4px;
}

.services-overview-body a::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.84rem;
}

.services-why-grid,
.services-coverage-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
    align-items: start;
    gap: 34px;
}

.services-why-copy,
.services-coverage-copy {
    padding: 30px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(70, 152, 255, 0.1), rgba(70, 152, 255, 0) 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.98));
    border: 1px solid rgba(16, 51, 125, 0.08);
    box-shadow: 0 24px 46px rgba(16, 51, 125, 0.08);
}

.services-why-copy p,
.services-coverage-copy p {
    margin-bottom: 0;
    line-height: 1.9;
}

.services-why-cards,
.services-district-grid {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

.services-why-cards {
    grid-template-columns: 1fr;
}

.services-why-cards article,
.services-district-card,
.services-flow-card {
    position: relative;
    overflow: hidden;
    padding: 22px 22px 22px 84px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(223, 230, 244, 0.9);
    box-shadow: 0 22px 44px rgba(16, 51, 125, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.services-why-cards article:hover,
.services-district-card:hover,
.services-flow-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 51, 125, 0.14);
    box-shadow: 0 32px 48px rgba(16, 51, 125, 0.12);
}

.services-why-cards i,
.services-district-card::before,
.services-flow-card span {
    position: absolute;
    left: 22px;
    top: 22px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(16, 51, 125, 0.14), rgba(16, 51, 125, 0.06));
    color: var(--primary);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.services-why-cards strong,
.services-district-card strong,
.services-flow-card h3 {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
}

.services-why-cards span,
.services-district-card p,
.services-flow-card p {
    color: var(--muted);
    line-height: 1.72;
}

.services-flow-board {
    display: grid;
    gap: 18px;
}

.services-flow-card {
    padding-left: 92px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.96));
}

.services-flow-card span {
    margin: 0;
    font-size: 0.84rem;
    font-weight: 800;
}

.services-district-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.services-district-card {
    padding: 24px 22px 24px 22px;
    min-height: 100%;
}

.services-district-card::before {
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 16px;
}

.services-district-card strong,
.services-district-card p {
    position: relative;
    z-index: 1;
}

.services-district-card strong {
    margin-bottom: 10px;
    font-size: 1.14rem;
}

.services-district-card p {
    margin: 0;
}

.services-cta-band {
    padding-top: 18px;
}

.services-cta-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 30px 34px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 26%),
        linear-gradient(135deg, #10337d, #1d57be 48%, #4ea3ea 100%);
    box-shadow: 0 30px 56px rgba(16, 51, 125, 0.16);
}

.services-cta-copy .section-kicker,
.services-cta-copy h2,
.services-cta-copy p {
    color: rgba(255, 255, 255, 0.96);
}

.services-cta-copy p {
    margin-bottom: 0;
    max-width: 60ch;
}

.services-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.services-cta-actions .button {
    background: #ffffff;
    color: var(--primary) !important;
    box-shadow: none;
}

.services-cta-actions .button-outline {
    border-color: rgba(255, 255, 255, 0.34);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1180px) {
    .services-hero-shell,
    .services-why-grid,
    .services-coverage-grid {
        grid-template-columns: 1fr;
    }

    .services-hero-panel {
        max-width: 100%;
    }

    .services-overview-grid {
        grid-template-columns: 1fr;
    }

    .services-overview-card,
    .services-overview-card:nth-child(1),
    .services-overview-card:nth-child(2),
    .services-overview-card:nth-child(3),
    .services-overview-card:nth-child(4) {
        transform: none;
    }
}

.process-list {
    display: grid;
    gap: 16px;
}

.process-item {
    padding: 20px 22px;
}

.process-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
}

.process-list.dark .process-item {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.process-list.dark .process-item strong,
.process-list.dark .process-item p {
    color: rgba(255, 255, 255, 0.96);
}

.process-list.compact .process-item {
    padding: 18px 20px;
}

.split-card {
    min-height: 100%;
}

.region-photo-stack {
    position: relative;
    height: 200px;
    margin-bottom: 18px;
}

.region-photo {
    position: absolute;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 22px 42px rgba(16, 51, 125, 0.16);
}

.region-photo.primary {
    inset: 0 104px 24px 0;
    width: calc(100% - 104px);
    height: 176px;
}

.region-photo.secondary {
    right: 0;
    bottom: 0;
    width: 150px;
    height: 124px;
    border: 5px solid rgba(255, 255, 255, 0.88);
}

.coverage-grid .card {
    min-height: 100%;
}

.parallax-band {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(16, 51, 125, 0.98), rgba(9, 30, 75, 0.96)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320' viewBox='0 0 320 320'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.11)'%3E%3Cpath d='M0 40h320M0 160h320M0 280h320'/%3E%3Cpath d='M40 0v320M160 0v320M280 0v320'/%3E%3C/g%3E%3C/svg%3E");
    color: var(--white);
}

.parallax-band::before,
.parallax-band::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transform: translateY(var(--parallax-shift, 0px));
}

.parallax-band::before {
    width: 280px;
    height: 280px;
    top: -70px;
    right: 8%;
}

.parallax-band::after {
    width: 180px;
    height: 180px;
    bottom: -50px;
    left: 12%;
}

.parallax-band p,
.parallax-band h2,
.parallax-band li {
    color: rgba(255, 255, 255, 0.92);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 0.95rem;
    padding-top: 26px;
}

.mini-hero {
    padding: 52px 0 12px;
}

.mini-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.faq-list {
    display: grid;
    gap: 18px;
}

.faq-item {
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.faq-item::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #10337d, #2d73ea);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 51, 125, 0.14);
    box-shadow: 0 24px 38px rgba(16, 51, 125, 0.12);
}

.faq-item:hover::before {
    opacity: 1;
}

.contact-card iframe {
    width: 100%;
    min-height: 320px;
    border: 0;
    border-radius: 18px;
}

.site-footer {
    margin-top: 40px;
    padding: 36px 0 28px;
    background:
        radial-gradient(circle at top right, rgba(64, 103, 191, 0.22), transparent 20%),
        linear-gradient(180deg, #07142c, #050f22);
    color: rgba(255, 255, 255, 0.88);
}

.site-footer p,
.site-footer a,
.site-footer li,
.site-footer span,
.site-footer h3 {
    color: inherit;
}

.footer-cta-band {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) auto;
    gap: 24px;
    align-items: center;
    margin-bottom: 28px;
    padding: 34px 36px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 26%),
        linear-gradient(135deg, rgba(16, 51, 125, 0.98), rgba(34, 89, 191, 0.96));
    box-shadow: 0 26px 54px rgba(2, 12, 34, 0.26);
}

.footer-cta-copy h2,
.footer-cta-copy p,
.footer-kicker {
    color: #ffffff;
}

.footer-cta-copy h2 {
    margin-bottom: 10px;
}

.footer-cta-copy p {
    max-width: 56ch;
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.footer-outline {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
    align-items: start;
    gap: 28px;
}

.footer-brand-block p {
    max-width: 38ch;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.footer-badges span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
    font-weight: 700;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li {
    margin-bottom: 12px;
}

.footer-contact-block .contact-list li {
    margin-bottom: 14px;
}

.footer-map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: #ffffff;
    font-weight: 800;
}

.footer-map-link::before {
    content: "\2302";
    font-size: 0.92rem;
}

.footer-bottom {
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.floating-actions {
    display: none;
}

.floating-actions a {
    border-radius: 999px;
    min-width: 140px;
    padding: 14px 18px;
    color: var(--white);
    font-weight: 800;
    box-shadow: var(--shadow);
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.floating-whatsapp {
    background: #24c167;
}

.floating-call {
    background: var(--primary);
}

.home-main > section:not(.hero-slider):not(.service-stats-band) {
    padding: 56px 0;
}

.home-section-heading {
    margin-bottom: 26px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-section-heading p {
    max-width: 64ch;
}

.home-intro-grid,
.home-areas-grid,
.timeline-grid {
    display: grid;
    gap: 28px;
}

.visual-badge,
.visual-note,
.visual-service-chip,
.intro-panel,
.timeline-card,
.featured-service,
.service-stack-card,
.areas-board,
.area-highlight-card,
.area-list article {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(223, 230, 244, 0.9);
    box-shadow: 0 22px 44px rgba(16, 51, 125, 0.1);
}

.visual-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    padding: 18px 20px;
    min-width: 188px;
}

.visual-badge small,
.area-highlight-card small {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-weight: 700;
}

.visual-badge strong,
.area-highlight-card strong {
    display: block;
    color: var(--primary);
    font-size: 1.28rem;
}

.visual-note {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 308px;
    padding: 20px 22px;
}

.visual-note strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
}

.visual-note-wide {
    min-height: 146px;
}

.visual-service-chip {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 250px;
    padding: 20px 22px;
}

.visual-service-chip strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
}

.hero-slider {
    position: relative;
    overflow: hidden;
    padding: 0;
    background:
        radial-gradient(circle at 82% 22%, rgba(61, 170, 219, 0.28), rgba(61, 170, 219, 0) 30%),
        linear-gradient(135deg, #17375e 0%, #123766 48%, #1f8dc4 100%);
}

.hero-slider::before,
.hero-slider::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.5;
}

.hero-slider::before {
    inset: auto auto -140px -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 112, 51, 0.34), rgba(255, 112, 51, 0));
}

.hero-slider::after {
    inset: 18% -110px auto auto;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
}

.hero-slider-track {
    position: relative;
    min-height: 600px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.02);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
    overflow: hidden;
}

.hero-slide::before,
.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
}

.hero-slide::before {
    background:
        linear-gradient(90deg, rgba(8, 24, 58, 0.88) 0%, rgba(10, 34, 80, 0.8) 38%, rgba(17, 76, 132, 0.44) 100%),
        var(--slide-image) center center/cover no-repeat;
    transform: scale(1.01);
}

.hero-slide::after {
    background:
        radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 20%),
        radial-gradient(circle at 76% 18%, rgba(255, 107, 47, 0.18), rgba(255, 107, 47, 0) 18%);
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-slide-inner {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    min-height: 600px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-slide-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
    align-items: center;
    gap: 42px;
}

.hero-slide-copy {
    display: grid;
    justify-items: start;
    text-align: left;
    gap: 16px;
    max-width: 860px;
}

.hero-call-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(14, 31, 63, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: #ff6b2f;
    font-size: 0.84rem;
    font-weight: 700;
}

.hero-call-pill i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    color: #ff6b2f;
    font-size: 0.78rem;
}

.hero-slide h1,
.hero-slide h2 {
    max-width: 17.4ch;
    margin: 0;
    color: var(--white);
    font-size: clamp(2.15rem, 3.6vw, 2.7rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
    text-shadow: 0 24px 46px rgba(8, 19, 43, 0.34);
}

.hero-slide p {
    max-width: 56ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(0.92rem, 1.02vw, 1.02rem);
    line-height: 1.72;
}

.hero-slide-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 4px;
}

.hero-slide-actions a {
    min-width: 164px;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 800;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.hero-slide-actions a:hover {
    transform: translateY(-2px);
}

.hero-slide-primary {
    background: linear-gradient(135deg, #ff6b2f, #f15b21);
    color: var(--white);
    box-shadow: 0 16px 28px rgba(255, 107, 47, 0.22);
}

.hero-slide-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.34);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.hero-slide-primary::before,
.hero-slide-secondary::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.68rem;
    flex: 0 0 22px;
}

.hero-slide-primary::before {
    content: "\f095";
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.hero-slide-secondary::before {
    content: "\f232";
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.hero-slider-dots {
    position: absolute;
    inset: auto 0 28px;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    width: min(calc(100% - 32px), var(--container));
    left: 50%;
    transform: translateX(-50%);
}

.hero-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.34);
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
    background: #ff6b2f;
    transform: scale(1.1);
}

.hero-slide-panel {
    display: grid;
    gap: 12px;
    justify-self: end;
    align-self: center;
    width: min(100%, 276px);
}

.hero-highlight-card,
.hero-contact-card {
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(7, 23, 52, 0.54);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 48px rgba(4, 17, 40, 0.2);
    backdrop-filter: blur(12px);
}

.hero-highlight-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 72px;
}

.hero-highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 28px rgba(4, 17, 40, 0.16);
}

.hero-highlight-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.hero-highlight-icon i {
    color: var(--primary);
    font-size: 0.84rem;
}

.hero-highlight-card strong,
.hero-contact-card strong {
    display: block;
    color: var(--white);
    font-size: 0.84rem;
    line-height: 1.4;
}

.hero-contact-card small,
.hero-contact-card span {
    display: block;
    color: rgba(255, 255, 255, 0.74);
}

.hero-contact-card small {
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.66rem;
}

.hero-contact-card strong {
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.hero-contact-card span {
    font-size: 0.78rem;
}

.service-stats-band {
    position: relative;
    z-index: 3;
    margin-top: 0;
    padding: 18px 0 8px;
}

.service-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.service-stat-card {
    position: relative;
    overflow: hidden;
    padding: 24px 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(16, 51, 125, 0.98), rgba(12, 42, 102, 0.98));
    border: 1px solid rgba(16, 51, 125, 0.14);
    box-shadow: 0 24px 42px rgba(16, 51, 125, 0.16);
    text-align: left;
    color: var(--white);
    transform: translateY(0);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-stat-card::before,
.service-stat-card::after {
    content: "";
    position: absolute;
    pointer-events: none;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.service-stat-card::before {
    inset: auto -18% -42% auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
    opacity: 0.5;
    transform: scale(1);
}

.service-stat-card::after {
    inset: -140% auto auto -30%;
    width: 60%;
    height: 260%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
    opacity: 0;
    transform: rotate(18deg) translateX(0);
}

.service-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.service-stat-icon i {
    color: var(--white);
    font-size: 1.08rem;
    transition: transform 0.35s ease;
}

.service-stat-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: clamp(2rem, 3vw, 2.7rem);
    line-height: 1;
}

.service-stat-card p {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 1.04rem;
    font-weight: 700;
}

.service-stat-text {
    display: block;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.92rem;
    line-height: 1.7;
}

.service-stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(106, 161, 255, 0.28);
    box-shadow: 0 30px 54px rgba(16, 51, 125, 0.22);
}

.service-stat-card:hover::before {
    transform: scale(1.16);
    opacity: 0.72;
}

.service-stat-card:hover::after {
    opacity: 1;
    transform: rotate(18deg) translateX(150%);
}

.service-stat-card:hover .service-stat-icon {
    transform: translateY(-3px) scale(1.06);
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 16px 28px rgba(8, 22, 60, 0.22);
}

.service-stat-card:hover .service-stat-icon i {
    transform: rotate(-10deg) scale(1.08);
}

.service-stat-card strong,
.service-stat-card p,
.service-stat-text,
.service-stat-icon {
    position: relative;
    z-index: 1;
}

.service-stat-card.reveal {
    animation: statCardFloatIn 0.8s ease both;
}

.service-stat-card.reveal:nth-child(1) {
    animation-delay: 0.05s;
}

.service-stat-card.reveal:nth-child(2) {
    animation-delay: 0.14s;
}

.service-stat-card.reveal:nth-child(3) {
    animation-delay: 0.23s;
}

.service-stat-card.reveal:nth-child(4) {
    animation-delay: 0.32s;
}

@keyframes statCardFloatIn {
    0% {
        opacity: 0;
        transform: translateY(22px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.home-trust-section {
    padding-top: 54px;
}

.trust-section-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
    gap: 40px;
    align-items: stretch;
}

.trust-copy {
    position: relative;
    padding: 12px 8px 12px 0;
}

.trust-kicker {
    color: #ff6b2f;
}

.trust-copy h2 {
    max-width: 15ch;
    margin-bottom: 18px;
    color: var(--primary);
    font-size: clamp(2.4rem, 4.4vw, 2rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.trust-copy > p {
    max-width: 56ch;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.95;
}

.trust-feature-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.trust-feature-strip article {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.98)),
        linear-gradient(180deg, rgba(16, 51, 125, 0.06), rgba(16, 51, 125, 0.02));
    border: 1px solid rgba(16, 51, 125, 0.08);
    box-shadow: 0 18px 34px rgba(16, 51, 125, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.trust-feature-strip article::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    border-radius: 24px 0 0 24px;
    background: linear-gradient(180deg, #10337d, #2a6ee8);
}

.trust-feature-strip article::after {
    content: "";
    position: absolute;
    inset: -120% auto auto -28%;
    width: 54%;
    height: 240%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
    opacity: 0;
    transform: rotate(18deg) translateX(0);
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.trust-feature-strip article:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 51, 125, 0.14);
    box-shadow: 0 24px 38px rgba(16, 51, 125, 0.12);
}

.trust-feature-strip article:hover::after {
    opacity: 1;
    transform: rotate(18deg) translateX(180%);
}

.trust-feature-strip strong,
.trust-feature-strip span {
    display: block;
}

.trust-feature-strip strong {
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 1.1rem;
}

.trust-card-list {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.trust-card {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    padding: 26px 26px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.98));
    border: 1px solid rgba(16, 51, 125, 0.08);
    box-shadow: 0 22px 38px rgba(16, 51, 125, 0.09);
    position: relative;
    overflow: hidden;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.trust-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 51, 125, 0.04), rgba(16, 51, 125, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-card::after {
    content: "";
    position: absolute;
    inset: auto -12% -46% auto;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 110, 232, 0.12), rgba(42, 110, 232, 0));
    transition: transform 0.35s ease, opacity 0.35s ease;
    opacity: 0.65;
}

.trust-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 51, 125, 0.14);
    box-shadow: 0 28px 42px rgba(16, 51, 125, 0.13);
}

.trust-card:hover::before {
    opacity: 1;
}

.trust-card:hover::after {
    transform: scale(1.12);
}

.trust-card-icon,
.home-service-card-icon,
.service-tile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    font-weight: 800;
}

.trust-card-icon {
    width: 76px;
    height: 76px;
    background: linear-gradient(180deg, #10337d, #184dbb);
    color: var(--white);
    box-shadow: 0 18px 30px rgba(16, 51, 125, 0.24);
    position: relative;
    z-index: 1;
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.trust-card-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.trust-card h3 {
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
}

.trust-card p {
    margin: 0;
    position: relative;
    z-index: 1;
}

.trust-card:hover .trust-card-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 22px 34px rgba(16, 51, 125, 0.28);
}

.trust-services-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 22px;
    border-radius: 38px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 24%),
        radial-gradient(circle at bottom left, rgba(113, 189, 255, 0.22), rgba(113, 189, 255, 0) 28%),
        linear-gradient(145deg, #0d2d72, #10337d 44%, #2d86e2 100%);
    border: 1px solid rgba(16, 51, 125, 0.08);
    box-shadow: 0 34px 60px rgba(16, 51, 125, 0.16);
}

.trust-services-panel::before,
.trust-services-panel::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.trust-services-panel::before {
    width: 260px;
    height: 260px;
    top: -120px;
    right: -110px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}

.trust-services-panel::after {
    width: 180px;
    height: 180px;
    bottom: -70px;
    left: -40px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

.service-tile-card {
    position: relative;
    overflow: hidden;
    min-height: 240px;
    padding: 20px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 32px rgba(4, 27, 64, 0.12);
    text-align: center;
    display: grid;
    align-content: end;
    justify-items: center;
    gap: 12px;
    backdrop-filter: blur(2px);
    transition: transform 0.34s ease, box-shadow 0.34s ease, border-color 0.34s ease;
}

.service-tile-card:nth-child(1),
.service-tile-card:nth-child(4) {
    transform: translateY(-10px);
}

.service-tile-card:nth-child(2),
.service-tile-card:nth-child(5) {
    transform: translateY(8px);
}

.service-tile-card:hover {
    transform: translateY(-14px) scale(1.01);
    box-shadow: 0 30px 50px rgba(4, 27, 64, 0.22);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-tile-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-tile-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 51, 125, 0.08), rgba(9, 27, 68, 0.18) 44%, rgba(7, 20, 44, 0.88) 100%);
}

.service-tile-card::before {
    content: "";
    position: absolute;
    inset: -140% auto auto -24%;
    width: 56%;
    height: 240%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
    opacity: 0;
    transform: rotate(18deg) translateX(0);
    transition: transform 0.55s ease, opacity 0.55s ease;
    z-index: 1;
}

.service-tile-card:hover .service-tile-photo {
    transform: scale(1.1);
}

.service-tile-card:hover::before {
    opacity: 1;
    transform: rotate(18deg) translateX(185%);
}

.service-tile-icon {
    position: relative;
    z-index: 1;
    width: 68px;
    height: 68px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 28px rgba(6, 27, 63, 0.18);
    transition: transform 0.34s ease, box-shadow 0.34s ease, background 0.34s ease;
}

.service-tile-icon i,
.home-service-card-icon i {
    color: var(--primary);
    font-size: 1.02rem;
}

.service-tile-card strong {
    position: relative;
    z-index: 1;
    color: var(--white);
    font-size: 1.14rem;
    text-shadow: 0 10px 24px rgba(7, 20, 44, 0.32);
    transition: transform 0.32s ease;
}

.service-tile-summary {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.86rem;
    line-height: 1.55;
    max-width: 18ch;
    transition: color 0.32s ease;
}

.service-tile-card:hover .service-tile-icon {
    transform: translateY(-4px) scale(1.07);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 34px rgba(6, 27, 63, 0.24);
}

.service-tile-card:hover strong {
    transform: translateY(-2px);
}

.service-tile-card:hover .service-tile-summary {
    color: rgba(255, 255, 255, 0.88);
}

.trust-services-panel.reveal .service-tile-card {
    animation: trustTileIn 0.78s ease both;
}

.trust-services-panel.reveal .service-tile-card:nth-child(1) {
    animation-delay: 0.05s;
}

.trust-services-panel.reveal .service-tile-card:nth-child(2) {
    animation-delay: 0.12s;
}

.trust-services-panel.reveal .service-tile-card:nth-child(3) {
    animation-delay: 0.19s;
}

.trust-services-panel.reveal .service-tile-card:nth-child(4) {
    animation-delay: 0.26s;
}

.trust-services-panel.reveal .service-tile-card:nth-child(5) {
    animation-delay: 0.33s;
}

.trust-services-panel.reveal .service-tile-card:nth-child(6) {
    animation-delay: 0.4s;
}

@keyframes trustTileIn {
    0% {
        opacity: 0;
        transform: translateY(28px) scale(0.97);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.home-services-cta {
    margin-top: 18px;
}

.home-service-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.home-service-card {
    position: relative;
    overflow: hidden;
    padding: 0;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 255, 0.98));
    border: 1px solid rgba(16, 51, 125, 0.08);
    box-shadow: 0 24px 46px rgba(16, 51, 125, 0.08);
    transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.home-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 51, 125, 0) 36%, rgba(16, 51, 125, 0.03) 100%);
    pointer-events: none;
    z-index: 0;
}

.home-service-card::after {
    content: "";
    position: absolute;
    inset: -135% auto auto -24%;
    width: 54%;
    height: 250%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
    opacity: 0;
    transform: rotate(18deg) translateX(0);
    transition: transform 0.55s ease, opacity 0.55s ease;
    z-index: 2;
}

.home-service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 51, 125, 0.14);
    box-shadow: 0 34px 58px rgba(16, 51, 125, 0.14);
}

.home-service-card-photo {
    width: 100%;
    max-width: none;
    height: 258px;
    margin: 0;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.45s ease, filter 0.45s ease;
    position: relative;
    z-index: 0;
}

.home-service-card:hover .home-service-card-photo {
    transform: scale(1.08);
    filter: saturate(1.05);
}

.home-service-card:hover::after {
    opacity: 1;
    transform: rotate(18deg) translateX(185%);
}

.home-service-card-body {
    position: relative;
    z-index: 1;
    margin: -30px 18px 18px;
    padding: 22px 22px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.985);
    border: 1px solid rgba(16, 51, 125, 0.06);
    box-shadow: 0 22px 36px rgba(16, 51, 125, 0.12);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.home-service-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    background: linear-gradient(180deg, rgba(16, 51, 125, 0.12), rgba(16, 51, 125, 0.06));
    color: var(--white);
    box-shadow: 0 20px 34px rgba(47, 121, 195, 0.12);
    transition: transform 0.32s ease, box-shadow 0.32s ease, background 0.32s ease;
}

.home-service-card-icon i {
    color: var(--primary);
    font-size: 1.02rem;
    transition: transform 0.32s ease;
}

.home-service-card h3 {
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 1.5rem;
    transition: transform 0.32s ease;
}

.home-service-card p {
    margin-bottom: 18px;
    color: var(--muted);
    line-height: 1.75;
}

.home-service-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 800;
    transition: color 0.28s ease, transform 0.28s ease;
}

.home-service-card a::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.82rem;
    transition: transform 0.28s ease;
}

.home-service-card:hover .home-service-card-body {
    transform: translateY(-6px);
    border-color: rgba(16, 51, 125, 0.12);
    box-shadow: 0 28px 42px rgba(16, 51, 125, 0.14);
}

.home-service-card:hover .home-service-card-icon {
    transform: translateY(-4px) scale(1.06);
    background: linear-gradient(180deg, rgba(16, 51, 125, 0.16), rgba(16, 51, 125, 0.08));
    box-shadow: 0 24px 38px rgba(47, 121, 195, 0.16);
}

.home-service-card:hover .home-service-card-icon i {
    transform: rotate(-10deg) scale(1.08);
}

.home-service-card:hover h3 {
    transform: translateY(-2px);
}

.home-service-card:hover a {
    color: #1e56be;
    transform: translateX(2px);
}

.home-service-card:hover a::after {
    transform: translateX(4px);
}

.home-service-card.reveal {
    animation: homeServiceCardIn 0.8s ease both;
}

.home-service-card.reveal:nth-child(1) {
    animation-delay: 0.05s;
}

.home-service-card.reveal:nth-child(2) {
    animation-delay: 0.14s;
}

.home-service-card.reveal:nth-child(3) {
    animation-delay: 0.23s;
}

.home-service-card.reveal:nth-child(4) {
    animation-delay: 0.32s;
}

@keyframes homeServiceCardIn {
    0% {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1280px) {
    .site-nav {
        gap: 18px;
    }

    .site-nav-links {
        gap: 8px;
    }

    .site-nav a {
        padding: 9px 10px;
    }

    .header-phone {
        padding: 10px 12px;
    }

    .header-whatsapp-link {
        display: none;
    }
}

@media (max-width: 1100px) {
    .header-topline-left span:last-child {
        display: none;
    }

    .header-phone {
        min-width: 162px;
        padding-inline: 12px;
    }

    .site-nav-cta .button {
        padding-inline: 16px;
    }

    .hero-slide h1,
    .hero-slide h2 {
        font-size: clamp(3.1rem, 6vw, 4.9rem);
    }

    .trust-services-panel {
        padding: 28px;
    }
}

.home-intro-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 24px;
}

.intro-panel {
    padding: 34px;
}

.intro-panel-dark {
    background: linear-gradient(180deg, rgba(9, 27, 68, 0.98), rgba(18, 51, 122, 0.94));
    color: rgba(255, 255, 255, 0.96);
}

.intro-panel-dark h2,
.intro-panel-dark p,
.intro-panel-dark span,
.intro-panel-dark li {
    color: rgba(255, 255, 255, 0.96);
}

.intro-panel-dark .check-list li::before {
    background: #ffffff;
}

.intro-panel-dark .check-list li {
    margin-bottom: 16px;
    font-size: 1rem;
}

.intro-panel-media {
    display: grid;
    grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1fr);
    overflow: hidden;
    padding: 0;
}

.intro-panel-photo {
    min-height: 100%;
}

.intro-panel-photo img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.intro-panel-copy {
    padding: 34px;
}

.intro-check-list {
    margin-top: 18px;
}

.intro-panel span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 800;
}

.home-areas-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    align-items: center;
    gap: 40px;
}

.areas-copy {
    position: relative;
    padding-right: 16px;
}

.areas-rail {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 26px 0 30px;
}

.area-pill {
    position: relative;
    overflow: hidden;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid rgba(16, 51, 125, 0.12);
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(16, 51, 125, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.area-pill::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 51, 125, 0.08), rgba(16, 51, 125, 0));
    opacity: 0;
    transition: opacity 0.28s ease;
}

.area-pill:hover {
    transform: translateY(-3px);
    border-color: rgba(16, 51, 125, 0.2);
    box-shadow: 0 18px 28px rgba(16, 51, 125, 0.1);
}

.area-pill:hover::before {
    opacity: 1;
}

.areas-board {
    position: relative;
    overflow: hidden;
    padding: 26px;
    background:
        radial-gradient(circle at top right, rgba(70, 152, 255, 0.16), rgba(70, 152, 255, 0) 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.98));
}

.areas-board::before,
.areas-board::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.areas-board::before {
    width: 220px;
    height: 220px;
    top: -110px;
    right: -90px;
    background: radial-gradient(circle, rgba(16, 51, 125, 0.08), rgba(16, 51, 125, 0));
}

.areas-board::after {
    width: 180px;
    height: 180px;
    bottom: -80px;
    left: -30px;
    background: radial-gradient(circle, rgba(45, 134, 226, 0.08), rgba(45, 134, 226, 0));
}

.area-highlight-card {
    position: relative;
    overflow: hidden;
    padding: 24px 24px 24px 88px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #10337d, #1d57be);
    color: var(--white);
    box-shadow: 0 24px 42px rgba(16, 51, 125, 0.18);
}

.area-highlight-card::before {
    content: "\f3c5";
    position: absolute;
    left: 24px;
    top: 24px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1rem;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 28px rgba(7, 20, 44, 0.18);
}

.area-highlight-card::after {
    content: "";
    position: absolute;
    inset: auto -12% -50% auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}

.area-highlight-card strong,
.area-highlight-card span,
.area-highlight-card small {
    color: rgba(255, 255, 255, 0.96);
}

.area-highlight-card small {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.area-highlight-card strong {
    margin-bottom: 8px;
    font-size: 1.72rem;
    line-height: 1.2;
}

.area-highlight-card span {
    display: block;
    color: rgba(255, 255, 255, 0.82);
}

.area-list {
    display: grid;
    gap: 14px;
    counter-reset: area-card;
}

.area-list article {
    position: relative;
    overflow: hidden;
    padding: 22px 22px 22px 82px;
    counter-increment: area-card;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.area-list article::before {
    content: counter(area-card, decimal-leading-zero);
    position: absolute;
    left: 20px;
    top: 20px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(16, 51, 125, 0.12), rgba(16, 51, 125, 0.06));
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.area-list article::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    border-radius: 28px 0 0 28px;
    background: linear-gradient(180deg, #10337d, #2d73ea);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.area-list article:hover {
    transform: translateX(6px);
    box-shadow: 0 26px 42px rgba(16, 51, 125, 0.12);
    border-color: rgba(16, 51, 125, 0.14);
}

.area-list article:hover::after {
    opacity: 1;
}

.area-list strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 1.08rem;
}

.area-list p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.areas-board.reveal .area-list article {
    animation: areaCardIn 0.72s ease both;
}

.areas-board.reveal .area-list article:nth-child(1) {
    animation-delay: 0.08s;
}

.areas-board.reveal .area-list article:nth-child(2) {
    animation-delay: 0.16s;
}

.areas-board.reveal .area-list article:nth-child(3) {
    animation-delay: 0.24s;
}

.areas-board.reveal .area-list article:nth-child(4) {
    animation-delay: 0.32s;
}

@keyframes areaCardIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.timeline-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(16, 51, 125, 0.12), rgba(16, 51, 125, 0.05));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card::before {
    content: "";
    position: absolute;
    inset: auto -12% -45% auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 134, 226, 0.1), rgba(45, 134, 226, 0));
    transition: transform 0.35s ease, opacity 0.35s ease;
    opacity: 0.75;
}

.timeline-card:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 51, 125, 0.14);
    box-shadow: 0 28px 42px rgba(16, 51, 125, 0.12);
}

.timeline-card:hover span {
    transform: translateY(-3px) scale(1.06);
    background: linear-gradient(180deg, rgba(16, 51, 125, 0.18), rgba(16, 51, 125, 0.08));
    box-shadow: 0 16px 28px rgba(16, 51, 125, 0.14);
}

.timeline-card:hover::before {
    transform: scale(1.14);
}

.timeline-card.reveal,
.brand-chip.reveal,
.review-card.reveal,
.faq-item.reveal {
    animation: lowerSectionCardIn 0.72s ease both;
}

.timeline-card.reveal:nth-child(1),
.brand-chip.reveal:nth-child(1),
.review-card.reveal:nth-child(1),
.faq-item.reveal:nth-child(1) {
    animation-delay: 0.05s;
}

.timeline-card.reveal:nth-child(2),
.brand-chip.reveal:nth-child(2),
.review-card.reveal:nth-child(2),
.faq-item.reveal:nth-child(2) {
    animation-delay: 0.12s;
}

.timeline-card.reveal:nth-child(3),
.brand-chip.reveal:nth-child(3),
.review-card.reveal:nth-child(3),
.faq-item.reveal:nth-child(3) {
    animation-delay: 0.19s;
}

.timeline-card.reveal:nth-child(4),
.brand-chip.reveal:nth-child(4) {
    animation-delay: 0.26s;
}

.brand-chip.reveal:nth-child(5) {
    animation-delay: 0.33s;
}

.brand-chip.reveal:nth-child(6) {
    animation-delay: 0.4s;
}

.brand-chip.reveal:nth-child(7) {
    animation-delay: 0.47s;
}

.brand-chip.reveal:nth-child(8) {
    animation-delay: 0.54s;
}

@keyframes lowerSectionCardIn {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.reveal {
    opacity: 1;
    transform: none;
}

body.js-enhanced .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

body.js-enhanced .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 860px) {
    .header-topline {
        display: none;
    }

    .header-inner {
        min-height: 88px;
        column-gap: 18px;
    }

    .brand img,
    .footer-logo {
        height: 50px;
    }

    .site-nav {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .site-nav-links {
        justify-content: flex-start;
        gap: 4px;
    }

    .site-nav a {
        padding: 9px 11px;
        font-size: 0.92rem;
    }

    .site-nav-cta {
        display: none;
    }

    .hero-slider-track {
        min-height: 660px;
    }

    .hero-slide-inner {
        padding-top: 94px;
        padding-bottom: 108px;
    }

    .hero-slide-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .hero-slide-panel {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        width: 100%;
        max-width: 100%;
        justify-self: stretch;
    }

    .hero-slide h1,
    .hero-slide h2 {
        font-size: clamp(2.85rem, 6vw, 4.2rem);
    }

    .trust-feature-strip {
        grid-template-columns: 1fr;
    }

    .trust-section-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .header-inner {
        grid-template-columns: auto 1fr;
    }

    .hero-slider-track {
        min-height: 620px;
    }

    .hero-slide-inner {
        padding-top: 94px;
        padding-bottom: 104px;
    }

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

    .hero-slide-copy {
        max-width: 100%;
    }

    .service-stats-grid,
    .home-service-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-copy h2,
    .hero-slide h1,
    .hero-slide h2 {
        max-width: none;
    }

    .trust-services-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 720px;
        margin: 0 auto;
    }

    .hero-slide-panel {
        width: 100%;
        max-width: 100%;
    }

    .home-service-card-body {
        margin: -36px 18px 18px;
    }

    .services-hero-shell,
    .services-why-grid,
    .services-coverage-grid,
    .services-cta-shell,
    .services-overview-grid {
        grid-template-columns: 1fr;
    }

    .services-hero-copy h1 {
        max-width: 13ch;
    }

    .services-hero-panel {
        max-width: 760px;
        margin: 0 auto;
    }

    .services-hero-stats,
    .services-district-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-intro-shell,
    .home-areas-grid,
    .timeline-grid,
    .trust-section-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid,
    .cards-grid,
    .benefit-grid,
    .service-list-grid,
    .split-grid,
    .contact-grid,
    .coverage-grid,
    .two-column,
    .footer-grid,
    .review-grid,
    .page-hero-grid,
    .detail-grid,
    .service-support-grid,
    .area-layout-grid,
    .area-service-grid,
    .service-catalog-grid,
    .area-catalog-grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer-cta-band,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-cta-actions {
        justify-content: flex-start;
    }

    .hero {
        padding-top: 56px;
    }

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

    .hero-inline-visual {
        display: block;
        margin: 0 0 22px;
    }

    .hero-panel .hero-visual-frame {
        display: none;
    }

    .region-photo-stack {
        height: 240px;
    }

    .page-hero-copy h1 {
        max-width: 13ch;
    }

    .page-hero-media {
        max-width: 620px;
        margin: 0 auto;
    }
}

@media (max-width: 620px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
        min-height: 84px;
        column-gap: 12px;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 12px);
        right: 12px;
        left: 12px;
        padding: 20px;
        border: 1px solid rgba(16, 51, 125, 0.1);
        border-radius: 24px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 248, 255, 0.98));
        box-shadow: 0 28px 55px rgba(16, 51, 125, 0.14);
        display: none;
        flex-direction: column;
        align-items: stretch;
        grid-template-columns: none;
    }

    .site-nav-links {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .site-nav-cta {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .header-mobile-actions {
        display: inline-flex;
        justify-self: end;
        margin-left: auto;
        margin-right: 8px;
        gap: 8px;
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav-links a {
        padding: 12px 14px;
        border-radius: 14px;
    }

    .site-nav-links a:hover,
    .site-nav-links a.active {
        background: rgba(16, 51, 125, 0.06);
    }

    .nav-toggle {
        display: inline-flex;
    }

    .header-mobile-actions {
        gap: 8px;
        margin-right: 8px;
    }

    .header-icon-link {
        min-width: 42px;
        height: 42px;
        padding: 0 12px;
        font-size: 0.76rem;
        gap: 0;
    }

    .home-main > section:not(.hero-slider):not(.service-stats-band) {
        padding: 42px 0;
    }

    .intro-panel-media {
        grid-template-columns: 1fr;
    }

    .intro-panel-photo img {
        min-height: 220px;
    }

    .intro-panel-copy {
        padding: 24px;
    }

    .intro-panel-dark {
        padding: 28px 24px;
    }

    .intro-panel-dark p,
    .intro-panel-dark li {
        font-size: 1rem;
        line-height: 1.8;
    }

    .hero-slider {
        padding-top: 0;
    }

    .hero-slider-track {
        min-height: 520px;
    }

    .hero-slide-inner {
        justify-items: center;
        text-align: center;
        min-height: 520px;
        padding-top: 56px;
        padding-bottom: 56px;
        gap: 14px;
    }

    .hero-slide-copy {
        gap: 12px;
        max-width: 100%;
        justify-items: center;
        text-align: center;
    }

    .hero-slide-grid {
        gap: 0;
    }

    .hero-slide h1,
    .hero-slide h2 {
        max-width: none;
        font-size: clamp(1.95rem, 8.8vw, 2.45rem);
        line-height: 1.1;
    }

    .hero-slide p {
        max-width: none;
        font-size: 0.92rem;
        line-height: 1.62;
    }

    .hero-slide-actions {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .hero-slide-actions a {
        width: min(100%, 320px);
        min-width: 0;
    }

    .hero-slider-dots {
        inset: auto 0 18px;
        justify-content: center;
        width: auto;
        left: 0;
        transform: none;
    }

    .hero-slide-panel {
        display: none;
    }

    .hero-call-pill {
        font-size: 0.78rem;
        padding: 8px 12px;
    }

    .hero-call-pill i {
        width: 24px;
        height: 24px;
        font-size: 0.68rem;
    }

    .hero-slide-actions {
        gap: 10px;
    }

    .hero-slide-actions a {
        padding: 12px 16px;
        font-size: 0.84rem;
        min-width: 0;
    }

    .service-stats-band {
        margin-top: 8px;
    }

    .service-stats-grid,
    .home-service-cards,
    .trust-services-panel {
        grid-template-columns: 1fr;
    }

    .service-stat-card {
        padding: 26px 22px;
    }

    .service-stat-icon {
        width: 62px;
        height: 62px;
        margin-bottom: 18px;
    }

    .trust-copy h2 {
        max-width: none;
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .trust-copy > p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .trust-card {
        grid-template-columns: 70px minmax(0, 1fr);
        padding: 20px;
    }

    .trust-card-icon {
        width: 62px;
        height: 62px;
    }

    .trust-services-panel {
        padding: 26px 20px;
    }

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

    .hero-highlight-card,
    .hero-contact-card {
        padding: 18px;
    }

    .service-stat-card {
        text-align: left;
    }

    .trust-services-panel {
        grid-template-columns: 1fr;
    }

    .trust-services-panel::before {
        width: 220px;
        height: 220px;
        top: -90px;
        right: -80px;
    }

    .trust-services-panel::after {
        width: 150px;
        height: 150px;
        bottom: -55px;
        left: -24px;
    }

    .home-service-card-body {
        margin: -28px 14px 14px;
        padding: 18px 18px 20px;
    }

    .service-tile-card,
    .service-tile-card:nth-child(1),
    .service-tile-card:nth-child(2),
    .service-tile-card:nth-child(4) {
        min-height: 320px;
        padding: 24px 20px;
        transform: none;
    }

    .service-tile-icon {
        width: 76px;
        height: 76px;
        border-radius: 24px;
    }

    .service-tile-icon i {
        font-size: 1.14rem;
    }

    .service-tile-card strong {
        font-size: 1.42rem;
    }

    .service-tile-summary {
        max-width: 20ch;
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .home-service-card-photo,
    .service-catalog-card .service-photo,
    .area-catalog-card .card-media {
        height: 200px;
    }

    .services-landing-hero {
        padding-top: 18px;
    }

    .services-hero-copy,
    .services-hero-panel,
    .services-cta-shell {
        padding: 22px;
        border-radius: 28px;
    }

    .services-hero-copy h1 {
        max-width: none;
        font-size: clamp(2.2rem, 10vw, 3rem);
    }

    .services-hero-points span {
        align-items: flex-start;
    }

    .services-hero-stats,
    .services-hero-stack,
    .services-district-grid {
        grid-template-columns: 1fr;
    }

    .services-hero-stack article {
        min-height: 0;
    }

    .services-hero-contact {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-overview-card img {
        height: 220px;
    }

    .services-overview-body {
        margin: -24px 14px 14px;
        padding: 18px 18px 20px;
    }

    .services-overview-body h3 {
        font-size: 1.38rem;
    }

    .services-why-copy,
    .services-coverage-copy {
        padding: 22px;
        border-radius: 28px;
    }

    .services-why-cards article,
    .services-district-card,
    .services-flow-card {
        padding: 20px 18px 20px 74px;
    }

    .services-why-cards i,
    .services-district-card::before,
    .services-flow-card span {
        left: 18px;
        top: 18px;
    }

    .services-district-card {
        padding: 20px 18px;
    }

    .services-district-card::before {
        left: auto;
        top: auto;
        margin-bottom: 14px;
    }

    .services-cta-actions {
        justify-content: stretch;
    }

    .services-cta-actions a {
        width: 100%;
    }

    .page-hero {
        padding-top: 28px;
    }

    .page-hero-copy h1 {
        max-width: none;
        font-size: clamp(2.15rem, 9.5vw, 3rem);
    }

    .intro-panel,
    .timeline-card,
    .areas-board,
    .detail-card,
    .cta-panel,
    .service-catalog-card,
    .area-catalog-card {
        padding: 22px;
    }

    .site-nav {
        gap: 16px;
    }

    .header-phone,
    .site-nav-cta .button {
        width: 100%;
    }

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

    .service-stack-card img {
        width: 100%;
        height: 190px;
    }

    .service-stack-card a {
        grid-column: auto;
    }

    .brand img,
    .footer-logo {
        height: 48px;
    }

    .page-hero-media {
        padding: 14px;
        border-radius: 26px;
    }

    .page-hero-media img {
        min-height: 300px;
    }

    .page-media-note {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 16px;
    }

    .footer-cta-band {
        padding: 24px;
    }

    .footer-bottom-links {
        gap: 12px;
    }

    .hero {
        padding-top: 38px;
        padding-bottom: 40px;
    }

    .topbar-inner,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .topbar-inner {
        gap: 2px;
        padding: 6px 0;
    }

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

    .cta-row,
    .hero-contact-ribbon,
    .stats-strip {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-row a,
    .hero-contact-ribbon .button {
        width: 100%;
    }

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

    .service-photo {
        height: 200px;
    }

    .region-photo-stack {
        height: 220px;
    }

    .region-photo.primary {
        inset: 0 68px 18px 0;
        width: calc(100% - 68px);
        height: 170px;
    }

    .region-photo.secondary {
        width: 122px;
        height: 104px;
    }

    .card,
    .contact-card,
    .split-card,
    .faq-item,
    .badge-box,
    .hero-panel,
    .service-spotlight {
        padding: 22px;
    }

    .review-card {
        padding: 22px;
    }

    .card-media {
        width: calc(100% + 44px);
        height: 200px;
        margin: -22px -22px 18px;
    }

    .page-hero-media img {
        min-height: 260px;
    }

    h1 {
        font-size: clamp(2.05rem, 10vw, 2.55rem);
        line-height: 1.08;
    }

    h2 {
        font-size: 1.75rem;
    }

    .floating-actions {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 10px;
        z-index: 12;
        display: flex;
        flex-direction: row;
        padding: 8px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(18px);
        box-shadow: 0 18px 34px rgba(16, 51, 125, 0.12);
    }

    .floating-actions a {
        min-width: 0;
        flex: 1 1 0;
        justify-content: center;
        text-align: center;
    }

    .stats-strip {
        gap: 18px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .brand img,
    .footer-logo {
        height: 44px;
    }

    .header-mobile-actions .header-icon-link span {
        display: none;
    }

    .header-icon-link {
        width: 42px;
        min-width: 42px;
        padding: 0;
        position: relative;
    }

    .header-icon-link::before {
        letter-spacing: 0;
    }

    .nav-toggle {
        padding: 10px 13px;
        border-radius: 16px;
    }

    .nav-toggle-label {
        display: none;
    }

    .button,
    .button-outline,
    .button-sm {
        padding: 14px 18px;
    }

    .footer-cta-actions {
        width: 100%;
    }

    .footer-cta-actions a {
        width: 100%;
    }

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

/* --- PREMIUM MODERN CORPORATE DESIGN EXTENSION --- */
:root {
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(16, 51, 125, 0.08);
    --glass-shadow: 0 24px 50px rgba(16, 51, 125, 0.06);
    --glow-primary: radial-gradient(circle, rgba(16, 51, 125, 0.12) 0%, transparent 60%);
    --glow-accent: radial-gradient(circle, rgba(255, 107, 47, 0.09) 0%, transparent 60%);
}

/* Glow Background Ornaments */
.glow-ornament {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}
.glow-ornament-primary {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 51, 125, 0.16) 0%, transparent 70%);
}
.glow-ornament-accent {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 107, 47, 0.12) 0%, transparent 70%);
}

/* Glassmorphism overrides & additions */
.detail-card, 
.page-stat-card, 
.contact-card, 
.service-catalog-card, 
.area-catalog-card, 
.services-hero-copy,
.timeline-card,
.services-overview-card {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border: 1px solid var(--glass-border) !important;
    box-shadow: var(--glass-shadow) !important;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Glassmorphism hover effects */
.detail-card:hover, 
.page-stat-card:hover, 
.contact-card:hover, 
.service-catalog-card:hover, 
.area-catalog-card:hover,
.services-overview-card:hover,
.timeline-card:hover {
    transform: translateY(-8px) scale(1.01) !important;
    border-color: rgba(16, 51, 125, 0.2) !important;
    box-shadow: 0 32px 64px rgba(16, 51, 125, 0.12) !important;
}

.area-catalog-card:hover {
    border-color: rgba(255, 107, 47, 0.35) !important;
}

/* Image Zoom Effect in Catalog Cards */
.area-catalog-card .card-media, 
.services-overview-card img,
.service-catalog-card .service-photo {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.area-catalog-card:hover .card-media,
.services-overview-card:hover img,
.service-catalog-card:hover .service-photo {
    transform: scale(1.05);
}

/* Beautiful Icon Badges with Background Glow */
.premium-icon-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(16, 51, 125, 0.1), rgba(16, 51, 125, 0.03));
    border: 1px solid rgba(16, 51, 125, 0.1);
    color: var(--primary);
    font-size: 1.45rem;
    margin-bottom: 20px;
    box-shadow: 0 12px 24px rgba(16, 51, 125, 0.05);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease, color 0.35s ease;
}

.premium-icon-badge::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 24px;
    background: radial-gradient(circle, rgba(16, 51, 125, 0.2) 0%, transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.detail-card:hover .premium-icon-badge,
.contact-card:hover .premium-icon-badge,
.services-overview-card:hover .premium-icon-badge {
    transform: translateY(-4px) rotate(6deg);
    background: linear-gradient(135deg, var(--primary), #1e56be);
    color: var(--white);
    border-color: transparent;
}

.detail-card:hover .premium-icon-badge::before,
.contact-card:hover .premium-icon-badge::before,
.services-overview-card:hover .premium-icon-badge::before {
    opacity: 1;
}

/* Modern Check-lists */
.check-list li {
    padding-left: 28px !important;
}

.check-list li::before {
    content: "\f00c" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 0.76rem !important;
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
    width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    left: 0 !important;
    top: 4px !important;
    box-shadow: 0 6px 12px rgba(255, 107, 47, 0.2) !important;
}

/* Map frame enhancement */
.contact-card iframe {
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 16px 36px rgba(16, 51, 125, 0.06);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover iframe {
    border-color: rgba(16, 51, 125, 0.16);
    box-shadow: 0 24px 48px rgba(16, 51, 125, 0.1);
}

/* Parallax and Glow Sphere containers */
.glow-wrapper {
    position: relative;
    overflow: hidden;
}

/* Micro interaction transitions */
.button, .button-outline, .button-sm {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease !important;
}

/* --- YEPYENI DESIGN OVERHAUL --- */
.cta-panel {
    background: linear-gradient(135deg, #10337d, #061c47) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 30px 60px rgba(16, 51, 125, 0.22) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius) !important;
    padding: 34px !important;
    min-height: 100%;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.cta-panel::after {
    content: "";
    position: absolute;
    bottom: -15%;
    right: -15%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 47, 0.28) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.cta-panel:hover {
    transform: translateY(-8px) scale(1.01) !important;
    box-shadow: 0 36px 72px rgba(16, 51, 125, 0.3) !important;
}

.cta-panel small {
    display: block;
    color: rgba(255, 255, 255, 0.74) !important;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.1em;
    font-size: 0.78rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.cta-panel strong {
    display: block;
    color: #ffffff !important;
    font-size: 1.45rem !important;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

.cta-panel p {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 24px !important;
    position: relative;
    z-index: 2;
}

.cta-panel .button {
    background: #ffffff !important;
    color: var(--primary) !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
    width: 100%;
    font-weight: 800;
    position: relative;
    z-index: 2;
    padding: 15px 24px !important;
    border-radius: 999px !important;
}

.cta-panel .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22) !important;
    background: #f4f6fa !important;
}

.cta-panel .button-outline {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    width: 100%;
    font-weight: 800;
    position: relative;
    z-index: 2;
    padding: 15px 24px !important;
    border-radius: 999px !important;
}

.cta-panel .button-outline:hover {
    background: rgba(255, 255, 255, 0.14) !important;
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(16, 51, 125, 0.15) !important;
}

/* Redesigned Pill Badges for kickers */
.section-kicker {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px !important;
    background: var(--primary-soft) !important;
    color: var(--primary) !important;
    border-radius: 999px !important;
    font-weight: 800 !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    margin-bottom: 18px !important;
    border: 1px solid rgba(16, 51, 125, 0.08) !important;
    line-height: 1 !important;
}

.section-kicker::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    margin-right: 8px;
}

/* Neon Top Border on Hover for detail cards */
.detail-card {
    position: relative;
    overflow: hidden;
}

.detail-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.detail-card:hover::after {
    transform: scaleX(1);
}


