/* Theme foundation */
:root {
    --navy: #03143a;
    --navy-2: #061f56;
    --navy-3: #092d75;
    --blue: #0a64ff;
    --blue-2: #12a6ff;
    --yellow: #ffc107;
    --yellow-2: #ffb000;
    --white: #ffffff;
    --gray-50: #f8fbff;
    --gray-100: #eef4ff;
    --gray-200: #d9e4f7;
    --gray-500: #67738a;
    --dark: #061128;
    --green: #28b446;
    --red: #f20b18;
    --teal: #009d9b;
    --purple: #5a2ce6;
    --pink: #ec2457;
    --radius: 18px;
    --radius-sm: 10px;
    --shadow-soft: 0 18px 45px rgba(2, 20, 58, 0.12);
    --shadow-blue: 0 18px 45px rgba(10, 100, 255, 0.22);
    --ease: 220ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.65;
}

img {
    max-width: 100%;
    height: auto;
}

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

p {
    color: #536079;
}

strong {
    font-weight: 800;
}

.container {
    width: min(100% - 32px, 1320px);
    max-width: 1320px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    transform: translateY(-160%);
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--navy);
    background: var(--yellow);
    font-weight: 700;
    transition: transform var(--ease);
}

.skip-link:focus {
    transform: translateY(0);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 0.93rem;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn-yellow {
    color: var(--navy);
    background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
    box-shadow: 0 12px 28px rgba(255, 193, 7, 0.25);
}

.btn-yellow:hover,
.btn-yellow:focus-visible {
    color: var(--navy);
    box-shadow: 0 16px 34px rgba(255, 193, 7, 0.35);
}

.btn-ghost-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.08);
}

.btn-ghost-light:hover,
.btn-ghost-light:focus-visible {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.14);
}

.btn-outline-navy {
    color: var(--navy);
    border-color: rgba(3, 20, 58, 0.15);
    background: var(--white);
}

.btn-outline-navy:hover,
.btn-outline-navy:focus-visible {
    color: var(--white);
    background: var(--navy);
}

.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple::after {
    content: "";
    position: absolute;
    inset: auto auto 50% 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    transform: translate(-50%, 50%);
    transition: width 420ms ease, height 420ms ease;
}

.btn-ripple:active::after {
    width: 220px;
    height: 220px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: background var(--ease), box-shadow var(--ease), padding var(--ease);
}

.site-header.scrolled,
.inner-page .site-header {
    background: rgba(2, 15, 45, 0.9);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px);
}

.site-header.scrolled {
    padding: 9px 0;
}

.navbar-shell {
    width: min(100% - 32px, 1320px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand-link,
.mobile-brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
}

.brand-link > img:not(.brand-mark) {
    width: 220px;
    height: auto;
}

.nav-center {
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(3, 20, 58, 0.35);
}

.nav-link {
    position: relative;
    padding: 10px 15px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 999px;
    transition: color var(--ease), background var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
    color: var(--yellow);
    background: rgba(255, 255, 255, 0.07);
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 3px;
    height: 2px;
    border-radius: 999px;
    background: var(--yellow);
}

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

.menu-toggle,
.mobile-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 8px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    width: 100vw;
    max-width: 100vw;
    z-index: 1200;
    pointer-events: none;
    visibility: hidden;
    overflow: hidden;
    contain: paint;
    background: rgba(1, 10, 31, 0.5);
    opacity: 0;
    transition: opacity var(--ease), visibility var(--ease);
}

.mobile-menu.open {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(100%, 430px);
    min-height: 100%;
    padding: 28px 22px;
    overflow-y: auto;
    background:
        radial-gradient(circle at 0 0, rgba(10, 100, 255, 0.32), transparent 34%),
        linear-gradient(160deg, #03143a, #020b26 72%);
    transform: translate3d(100%, 0, 0);
    transition: transform 320ms ease;
    will-change: transform;
}

.mobile-menu.open .mobile-menu-panel {
    transform: translate3d(0, 0, 0);
}

.mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.mobile-links {
    display: grid;
    gap: 10px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 54px;
    padding: 14px 16px;
    border-radius: 12px;
    color: var(--white);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-link i {
    width: 22px;
    color: var(--yellow);
}

.mobile-nav-link.active {
    background: rgba(255, 193, 7, 0.14);
}

.mobile-cta {
    width: 100%;
    margin: 22px 0;
}

.mobile-service-list,
.mobile-socials {
    padding: 22px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.mobile-service-list h2,
.mobile-socials span {
    display: block;
    margin: 0 0 14px;
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 900;
}

.mobile-service-list a {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--navy);
    font-size: 0.86rem;
    font-weight: 700;
    border-bottom: 1px solid var(--gray-100);
}

.mobile-service-list a:last-child {
    border-bottom: 0;
}

.service-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--white);
}

.mobile-socials {
    margin-top: 18px;
}

.mobile-socials div,
.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-socials a,
.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--white);
    background: var(--blue);
    transition: transform var(--ease), box-shadow var(--ease);
}

.mobile-socials a:nth-child(2),
.footer-socials a:nth-child(2) {
    background: radial-gradient(circle at 30% 110%, #ffd776 0 18%, #f34a57 42%, #8d2cff 72%, #235fff 100%);
}

.mobile-socials a:nth-child(3),
.footer-socials a:nth-child(3) {
    background: var(--red);
}

.mobile-socials a:nth-child(4),
.footer-socials a:nth-child(4) {
    background: var(--green);
}

.mobile-socials a:hover,
.footer-socials a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue);
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 710px;
    padding: 142px 0 78px;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(2, 14, 43, 0.96), rgba(4, 23, 67, 0.82)),
        url("../images/dark-city-bg.png") center / cover no-repeat;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 74% 28%, rgba(19, 143, 255, 0.5), transparent 24%),
        radial-gradient(circle at 18% 74%, rgba(255, 193, 7, 0.16), transparent 26%);
    pointer-events: none;
}

.hero-bg-layer {
    position: absolute;
    inset: 0;
    background:
        url("../images/dot-pattern.png") left 24% / 220px auto no-repeat,
        url("../images/network-pattern.png") right 18% / 190px auto no-repeat;
    opacity: 0.4;
}

.hero-copy,
.hero-visual,
.feature-badges {
    position: relative;
    z-index: 2;
}

.eyebrow,
.section-heading span,
.panel-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--blue);
    background: rgba(10, 100, 255, 0.08);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero-copy .eyebrow {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-copy .eyebrow span,
.hero-copy strong,
.hero-copy h1 span {
    color: var(--yellow);
}

.hero-copy h1 {
    max-width: 740px;
    margin: 0;
    color: var(--white);
    font-size: clamp(2.45rem, 5vw, 4.85rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-copy p {
    max-width: 680px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.feature-badges {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
}

.feature-badge {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 10px;
    min-height: 72px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
}

.feature-badge span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    grid-row: span 2;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
}

.feature-badge strong,
.feature-badge small {
    display: block;
    color: var(--white);
    font-size: 0.78rem;
    line-height: 1.25;
}

.feature-badge small {
    color: rgba(255, 255, 255, 0.76);
}

.hero-visual {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual img {
    width: min(100%, 650px);
    border-radius: 22px;
    filter: drop-shadow(0 26px 52px rgba(0, 0, 0, 0.35));
    animation: floatImage 5.5s ease-in-out infinite;
}

.social-float {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.28);
    animation: floatIcon 4.5s ease-in-out infinite;
}

.social-float.facebook {
    left: 8%;
    top: 4%;
    background: linear-gradient(145deg, #1778f2, #0a57d6);
}

.social-float.instagram {
    left: 18%;
    top: 24%;
    background: radial-gradient(circle at 30% 110%, #ffd776 0 18%, #f34a57 42%, #8d2cff 72%, #235fff 100%);
    animation-delay: 500ms;
}

.social-float.youtube {
    left: 19%;
    bottom: 18%;
    background: var(--red);
    animation-delay: 900ms;
}

.social-float.like {
    right: 8%;
    top: 10%;
    width: 58px;
    height: 58px;
    font-size: 1.45rem;
    background: var(--blue);
    animation-delay: 700ms;
}

.social-float.heart {
    right: 4%;
    top: 31%;
    width: 58px;
    height: 58px;
    font-size: 1.35rem;
    background: #f22635;
    animation-delay: 1100ms;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-10px) rotate(3deg); }
}

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

.section-heading {
    max-width: 780px;
    margin: 0 auto 42px;
}

.section-heading.left {
    margin-left: 0;
    margin-right: 0;
}

.section-heading h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(1.85rem, 3vw, 2.8rem);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 0;
}

.section-heading p {
    margin: 12px 0 0;
}

.services-section {
    position: relative;
    background:
        url("../images/wave-pattern.png") 0 100% / 260px auto no-repeat,
        linear-gradient(180deg, #ffffff, #f8fbff);
}

.service-card,
.reason-card,
.testimonial-card,
.service-detail-card,
.mission-card,
.pricing-card,
.legal-content,
.contact-form,
.contact-info-panel {
    height: 100%;
    border: 1px solid rgba(3, 20, 58, 0.08);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 36px rgba(2, 20, 58, 0.08);
    backdrop-filter: blur(14px);
}

.service-card {
    display: flex;
    flex-direction: column;
    min-height: 238px;
    padding: 28px;
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(10, 100, 255, 0.22);
    box-shadow: var(--shadow-soft);
}

.service-icon,
.stat-icon,
.process-icon,
.process-deep-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: var(--white);
    border-radius: 50%;
}

.service-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    font-size: 1.45rem;
    box-shadow: 0 14px 28px rgba(3, 20, 58, 0.14);
}

.blue { background: var(--blue); }
.yellow { background: linear-gradient(135deg, #ffcd2e, #eba200); }
.red { background: var(--red); }
.purple { background: var(--purple); }
.green { background: var(--green); }
.teal { background: var(--teal); }
.pink { background: var(--pink); }

.service-card h3,
.why-card h3,
.reason-card h3,
.testimonial-card h3,
.process-step h3,
.mission-card h2,
.service-detail-card h2,
.pricing-card h3,
.legal-content h2,
.contact-info-panel h2,
.contact-form h2 {
    margin: 0;
    color: var(--navy);
    font-weight: 900;
    letter-spacing: 0;
}

.service-card h3 {
    font-size: 1.12rem;
}

.service-card p {
    flex: 1;
    margin: 10px 0 20px;
    font-size: 0.94rem;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-weight: 800;
    font-size: 0.9rem;
}

/* Stats */
.stats-band {
    padding: 22px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-radius: var(--radius);
    color: var(--white);
    background:
        radial-gradient(circle at 8% 0, rgba(10, 100, 255, 0.38), transparent 34%),
        linear-gradient(135deg, #03143a, #041d55 74%);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.stat-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: center;
    gap: 14px;
    padding: 28px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-icon {
    width: 58px;
    height: 58px;
    grid-row: span 2;
    font-size: 1.45rem;
    background: rgba(255, 255, 255, 0.11);
}

.stat-item strong {
    display: block;
    color: var(--white);
    font-size: 1.8rem;
    line-height: 1.1;
}

.stat-item small {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
}

/* Why preview */
.why-preview {
    background: linear-gradient(180deg, #ffffff, #f5f8ff);
}

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

.why-card,
.reason-card {
    display: flex;
    gap: 16px;
    padding: 22px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid rgba(3, 20, 58, 0.08);
    box-shadow: 0 12px 32px rgba(2, 20, 58, 0.07);
    transition: transform var(--ease), box-shadow var(--ease);
}

.why-card:hover,
.reason-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

.why-card i,
.reason-card > i,
.mission-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border-radius: 50%;
    color: var(--navy);
    background: rgba(255, 193, 7, 0.18);
}

.why-card h3 {
    font-size: 1rem;
}

.why-card p {
    margin: 6px 0 0;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials-section {
    background: var(--white);
}

.testimonial-swiper {
    padding: 4px 4px 48px;
}

.testimonial-card {
    min-height: 255px;
    padding: 28px;
}

.testimonial-card .quote {
    color: var(--blue);
    font-size: 1.6rem;
}

.testimonial-card p {
    min-height: 78px;
    margin: 14px 0 22px;
    color: #33405b;
}

.testimonial-author {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-card h3 {
    font-size: 0.95rem;
}

.testimonial-author span {
    color: var(--gray-500);
    font-size: 0.82rem;
    font-weight: 600;
}

.stars {
    display: flex;
    gap: 3px;
    color: var(--yellow-2);
    font-size: 0.86rem;
}

.swiper-pagination-bullet-active {
    background: var(--blue);
}

/* Process */
.process-section {
    background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.process-timeline::before {
    content: "";
    position: absolute;
    top: 52px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, rgba(10, 100, 255, 0), rgba(10, 100, 255, 0.32), rgba(255, 193, 7, 0.5), rgba(10, 100, 255, 0));
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.process-icon {
    width: 104px;
    height: 104px;
    margin: 0 auto 15px;
    color: var(--navy);
    font-size: 2rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: 0 10px 30px rgba(2, 20, 58, 0.08);
}

.process-step span {
    color: var(--blue);
    font-weight: 900;
}

.process-step:nth-child(2) span,
.process-step:nth-child(2) .process-icon {
    color: var(--yellow-2);
}

.process-step:nth-child(3) span,
.process-step:nth-child(3) .process-icon {
    color: var(--red);
}

.process-step:nth-child(4) span,
.process-step:nth-child(4) .process-icon {
    color: var(--purple);
}

.process-step:nth-child(5) span,
.process-step:nth-child(5) .process-icon {
    color: var(--green);
}

.process-step h3 {
    margin-top: 3px;
    font-size: 1rem;
}

.process-step p {
    margin: 6px auto 0;
    max-width: 190px;
    font-size: 0.86rem;
}

/* CTA and contact strip */
.cta-banner {
    padding: 34px 0 14px;
}

.cta-panel {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) auto;
    align-items: center;
    gap: 32px;
    padding: 24px 34px;
    border-radius: var(--radius);
    color: var(--white);
    background:
        radial-gradient(circle at 16% 0, rgba(10, 100, 255, 0.44), transparent 34%),
        linear-gradient(135deg, #03143a, #041e5d 78%);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.cta-panel img {
    width: 220px;
    border-radius: 14px;
}

.cta-panel span {
    color: var(--yellow);
    font-weight: 900;
}

.cta-panel h2 {
    margin: 4px 0 8px;
    color: var(--white);
    font-size: clamp(1.55rem, 2.6vw, 2.45rem);
    font-weight: 900;
    line-height: 1.15;
}

.cta-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.contact-strip {
    padding: 14px 0 28px;
}

.contact-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-radius: var(--radius);
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(135deg, #03143a, #041e5d);
    box-shadow: var(--shadow-soft);
}

.contact-strip-grid a {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 10px;
    padding: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-strip-grid a:last-child {
    border-right: 0;
}

.contact-strip-grid i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    grid-row: span 2;
    border-radius: 50%;
    background: var(--blue);
}

.contact-strip-grid span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.85rem;
    font-weight: 600;
}

.contact-strip-grid strong {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

/* Inner pages */
.inner-hero {
    position: relative;
    padding: 160px 0 92px;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 14%, rgba(10, 100, 255, 0.44), transparent 28%),
        linear-gradient(135deg, rgba(3, 20, 58, 0.95), rgba(4, 25, 72, 0.9)),
        url("../images/dark-city-bg.png") center / cover no-repeat;
    overflow: hidden;
}

.inner-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 6px;
    background: linear-gradient(90deg, var(--yellow), var(--blue), var(--yellow));
}

.inner-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.inner-hero-content span {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--yellow);
    font-weight: 900;
    text-transform: uppercase;
}

.inner-hero-content h1 {
    margin: 0;
    color: var(--white);
    font-size: clamp(2.15rem, 4vw, 4rem);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: 0;
}

.inner-hero-content p {
    max-width: 740px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.05rem;
}

.compact-inner {
    padding-bottom: 70px;
}

.image-stack {
    position: relative;
    padding: 24px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #edf5ff, #ffffff);
    box-shadow: var(--shadow-soft);
}

.image-stack img,
.rounded-visual,
.trust-visual img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(2, 20, 58, 0.14);
}

.trust-mini {
    position: absolute;
    right: 8px;
    bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: calc(100% - 16px);
    padding: 14px 16px;
    border-radius: 14px;
    color: var(--white);
    background: rgba(3, 20, 58, 0.9);
    box-shadow: var(--shadow-soft);
}

.trust-mini i {
    color: var(--yellow);
}

.mission-section,
.pricing-section,
.trust-section,
.visual-process-section,
.faq-section {
    background: var(--gray-50);
}

.mission-card,
.pricing-card,
.reason-card {
    padding: 30px;
}

.mission-card i {
    margin-bottom: 22px;
    color: var(--blue);
    background: rgba(10, 100, 255, 0.1);
}

.mission-card h2,
.pricing-card h3 {
    font-size: 1.35rem;
}

.timeline-section {
    background: #ffffff;
}

.vertical-timeline {
    position: relative;
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.vertical-timeline::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 16px;
    bottom: 16px;
    width: 2px;
    background: linear-gradient(var(--blue), var(--yellow));
}

.vertical-timeline article {
    position: relative;
    padding: 24px 28px 24px 76px;
    border: 1px solid rgba(3, 20, 58, 0.08);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(2, 20, 58, 0.07);
}

.vertical-timeline span {
    position: absolute;
    left: 0;
    top: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--navy);
    background: var(--yellow);
    font-weight: 900;
}

.vertical-timeline h3 {
    margin: 0;
    color: var(--navy);
    font-weight: 900;
}

.vertical-timeline p {
    margin: 8px 0 0;
}

/* Services page */
.service-details-section {
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 30px;
    scroll-margin-top: 120px;
}

.service-detail-top {
    display: flex;
    gap: 18px;
}

.service-detail-top .service-icon {
    margin-bottom: 0;
}

.service-detail-card h2 {
    font-size: 1.35rem;
}

.service-detail-card p {
    margin: 8px 0 0;
}

.benefit-list,
.check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.benefit-list span,
.check-grid span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--navy);
    background: var(--gray-50);
    font-size: 0.9rem;
    font-weight: 700;
}

.benefit-list i,
.check-grid i {
    color: var(--green);
}

.service-detail-card .btn {
    align-self: flex-start;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-card.featured {
    color: var(--white);
    background:
        radial-gradient(circle at 100% 0, rgba(255, 193, 7, 0.3), transparent 30%),
        linear-gradient(145deg, #03143a, #07327f);
    transform: translateY(-10px);
}

.pricing-card span {
    color: var(--blue);
    font-weight: 900;
}

.pricing-card.featured span,
.pricing-card.featured h3,
.pricing-card.featured p,
.pricing-card.featured li {
    color: var(--white);
}

.pricing-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-card li {
    color: #536079;
}

.pricing-card li::before {
    content: "\f00c";
    margin-right: 10px;
    color: var(--green);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.pricing-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    min-height: 44px;
    border-radius: 8px;
    color: var(--navy);
    background: var(--yellow);
    font-weight: 900;
}

/* Why page */
.reasons-section {
    background: #ffffff;
}

.reason-card {
    display: block;
}

.reason-card > i {
    margin-bottom: 22px;
    color: var(--blue);
    background: rgba(10, 100, 255, 0.1);
}

.reason-card h3 {
    font-size: 1.15rem;
}

.trust-visual {
    padding: 26px;
    border-radius: var(--radius);
    background:
        url("../images/dot-pattern.png") 95% 12% / 170px auto no-repeat,
        linear-gradient(135deg, #eef5ff, #ffffff);
    box-shadow: var(--shadow-soft);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.trust-badges div {
    padding: 18px;
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(2, 20, 58, 0.08);
}

.trust-badges i {
    color: var(--blue);
    margin-right: 8px;
}

.trust-badges strong,
.trust-badges span {
    display: block;
    color: var(--navy);
}

.trust-badges span {
    color: var(--gray-500);
}

/* How it works page */
.process-deep-section {
    background: #ffffff;
}

.process-deep-list {
    display: grid;
    gap: 22px;
    max-width: 980px;
    margin: 0 auto;
}

.process-deep-card {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 24px;
    align-items: start;
    padding: 28px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid rgba(3, 20, 58, 0.08);
    box-shadow: 0 12px 34px rgba(2, 20, 58, 0.08);
}

.process-deep-card:nth-child(even) {
    margin-left: 70px;
}

.process-deep-icon {
    width: 96px;
    height: 96px;
    color: var(--navy);
    font-size: 2rem;
    background: linear-gradient(135deg, #eef5ff, #ffffff);
    border: 1px solid var(--gray-200);
}

.process-deep-card span {
    color: var(--blue);
    font-weight: 900;
}

.process-deep-card h2 {
    margin: 2px 0 8px;
    color: var(--navy);
    font-weight: 900;
}

.process-deep-card p {
    margin: 0 0 8px;
}

.support-list {
    display: grid;
    gap: 14px;
}

.support-list div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(2, 20, 58, 0.07);
    color: var(--navy);
    font-weight: 700;
}

.support-list i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 50%;
    color: var(--white);
    background: var(--blue);
}

/* Contact */
.contact-main-section {
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.contact-info-panel,
.contact-form {
    padding: 34px;
}

.contact-info-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.contact-info-list a {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 10px;
    align-items: center;
    padding: 16px;
    border-radius: 14px;
    color: var(--navy);
    background: var(--gray-50);
    transition: transform var(--ease), background var(--ease);
}

.contact-info-list a:hover {
    transform: translateY(-3px);
    background: #eef5ff;
}

.contact-info-list i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    grid-row: span 2;
    border-radius: 50%;
    color: var(--white);
    background: var(--blue);
}

.contact-info-list span {
    color: var(--gray-500);
    font-size: 0.85rem;
    font-weight: 700;
}

.contact-info-list strong {
    overflow-wrap: anywhere;
    line-height: 1.3;
}

.form-heading {
    margin-bottom: 22px;
}

.form-heading span {
    color: var(--blue);
    font-weight: 900;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--navy);
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    border: 1px solid rgba(3, 20, 58, 0.12);
    border-radius: 10px;
    padding: 14px 15px;
    color: var(--navy);
    background: var(--gray-50);
    outline: 0;
    transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(10, 100, 255, 0.12);
}

.contact-form .btn {
    margin-top: 24px;
}

.invalid-feedback {
    display: block;
    margin-top: 7px;
    color: #ce1c32;
    font-weight: 700;
}

.contact-form .is-invalid {
    border-color: #ce1c32;
}

.map-section {
    padding: 0 0 58px;
    background: var(--gray-50);
}

.map-section iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.faq-accordion {
    max-width: 940px;
    margin: 0 auto;
}

.faq-accordion .accordion-item {
    overflow: hidden;
    border: 1px solid rgba(3, 20, 58, 0.08);
    border-radius: 14px;
    margin-bottom: 12px;
    box-shadow: 0 10px 24px rgba(2, 20, 58, 0.06);
}

.faq-accordion .accordion-button {
    color: var(--navy);
    font-weight: 900;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--navy);
    background: rgba(10, 100, 255, 0.08);
    box-shadow: none;
}

.whatsapp-cta {
    padding: 0 0 78px;
    background: var(--gray-50);
}

.whatsapp-panel {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 26px 30px;
    border-radius: var(--radius);
    color: var(--white);
    background: linear-gradient(135deg, #0b7932, #25d366);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.22);
}

.whatsapp-panel > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 2.3rem;
    background: rgba(255, 255, 255, 0.18);
}

.whatsapp-panel h2 {
    margin: 0;
    color: var(--white);
    font-weight: 900;
}

.whatsapp-panel p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.84);
}

/* Thank you and legal */
.thank-you-section {
    min-height: 760px;
    display: flex;
    align-items: center;
    padding: 150px 0 82px;
    background:
        radial-gradient(circle at 50% 16%, rgba(10, 100, 255, 0.18), transparent 34%),
        linear-gradient(180deg, #f8fbff, #ffffff);
}

.thank-you-card {
    max-width: 820px;
    margin: 0 auto;
    padding: 48px;
    text-align: center;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(3, 20, 58, 0.08);
}

.success-ring {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    margin-bottom: 20px;
    border-radius: 50%;
    color: var(--white);
    background: var(--green);
    font-size: 2.8rem;
    animation: successPulse 1.7s ease-in-out infinite;
}

.success-ring.warning {
    background: var(--yellow);
    color: var(--navy);
}

@keyframes successPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(40, 180, 70, 0.24); }
    50% { box-shadow: 0 0 0 18px rgba(40, 180, 70, 0); }
}

.thank-you-card span {
    color: var(--blue);
    font-weight: 900;
    text-transform: uppercase;
}

.thank-you-card h1 {
    margin: 10px 0 12px;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.12;
    font-weight: 900;
}

.thank-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

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

.legal-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 42px;
}

.legal-content h2 {
    margin-top: 26px;
    font-size: 1.35rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content a {
    color: var(--blue);
    font-weight: 800;
}

/* Footer */
.site-footer {
    position: relative;
    padding: 64px 0 24px;
    color: var(--white);
    background:
        radial-gradient(circle at 85% 5%, rgba(10, 100, 255, 0.34), transparent 28%),
        linear-gradient(145deg, #020b26, #03143a 68%);
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--blue), var(--yellow), var(--blue));
}

.site-footer p {
    max-width: 340px;
    margin: 16px 0 20px;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer h2 {
    margin: 0 0 16px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 900;
}

.site-footer ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer a,
.site-footer li {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    transition: color var(--ease);
}

.site-footer a:hover {
    color: var(--yellow);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    overflow-wrap: anywhere;
}

.footer-contact i {
    margin-top: 5px;
    color: var(--yellow);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 46px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin: 0;
}

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

/* Floating actions */
.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 22px;
    z-index: 1100;
    display: grid;
    gap: 10px;
}

.float-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
    box-shadow: 0 12px 24px rgba(2, 20, 58, 0.24);
    transition: transform var(--ease), opacity var(--ease);
}

.float-btn:hover,
.float-btn:focus-visible {
    color: var(--white);
    transform: translateY(-3px);
}

.float-btn.whatsapp {
    background: #25d366;
}

.float-btn.phone {
    background: var(--blue);
}

.float-btn.back-to-top {
    background: rgba(3, 20, 58, 0.92);
    opacity: 0;
    pointer-events: none;
}

.float-btn.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .brand-link > img:not(.brand-mark) {
        width: 195px;
    }

    .hero-copy h1 {
        font-size: 3.35rem;
    }

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

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

    .stat-item:nth-child(2),
    .contact-strip-grid a:nth-child(2) {
        border-right: 0;
    }

    .stat-item:nth-child(-n + 2),
    .contact-strip-grid a:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

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

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

    .cta-panel {
        grid-template-columns: 180px 1fr;
    }

    .cta-panel .btn {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 991.98px) {
    .site-header {
        background: rgba(2, 15, 45, 0.9);
        backdrop-filter: blur(16px);
    }

    .hero-section {
        min-height: auto;
        padding-top: 118px;
        text-align: left;
    }

    .hero-copy h1 {
        font-size: 2.75rem;
    }

    .hero-visual {
        min-height: 360px;
    }

    .social-float {
        width: 58px;
        height: 58px;
        font-size: 1.55rem;
    }

    .section {
        padding: 72px 0;
    }

    .why-grid,
    .benefit-list,
    .check-grid,
    .trust-badges {
        grid-template-columns: 1fr;
    }

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

    .process-deep-card,
    .process-deep-card:nth-child(even) {
        margin-left: 0;
    }

    .whatsapp-panel {
        grid-template-columns: 58px 1fr;
    }

    .whatsapp-panel .btn {
        grid-column: 1 / -1;
        justify-self: start;
    }
}

@media (max-width: 767.98px) {
    .container,
    .navbar-shell {
        width: min(100% - 24px, 1320px);
    }

    .brand-link > img:not(.brand-mark) {
        width: 178px;
    }

    .btn {
        width: auto;
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-section {
        padding: 110px 0 52px;
    }

    .hero-section .row > .col-lg-6:first-child {
        display: contents;
    }

    .hero-copy,
    .feature-badges {
        width: 100%;
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
    }

    .hero-copy {
        order: 1;
    }

    .hero-section .row > .col-lg-6:last-child {
        order: 2;
        width: 100%;
    }

    .feature-badges {
        order: 3;
    }

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

    .hero-copy h1 {
        font-size: 2.25rem;
        line-height: 1.12;
    }

    .hero-copy p {
        font-size: 0.96rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .hero-actions .btn {
        min-width: 0;
        padding: 11px 12px;
        font-size: 0.78rem;
        white-space: normal;
    }

    .feature-badges {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 22px;
    }

    .feature-badge {
        grid-template-columns: 38px 1fr;
        min-height: 82px;
        padding: 10px;
    }

    .feature-badge span {
        width: 38px;
        height: 38px;
    }

    .feature-badge strong,
    .feature-badge small {
        font-size: 0.68rem;
    }

    .hero-visual {
        min-height: 290px;
        margin-top: 6px;
    }

    .hero-visual img {
        border-radius: 18px;
    }

    .social-float {
        width: 44px;
        height: 44px;
        font-size: 1.18rem;
    }

    .social-float.facebook {
        left: 2%;
        top: -3%;
    }

    .social-float.instagram {
        left: 18%;
        top: 5%;
    }

    .social-float.youtube {
        left: 34%;
        top: 11%;
        bottom: auto;
    }

    .social-float.like {
        right: 6%;
        top: 10%;
        width: 40px;
        height: 40px;
    }

    .social-float.heart {
        right: 1%;
        top: 32%;
        width: 40px;
        height: 40px;
    }

    .section {
        padding: 58px 0;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading h2,
    .inner-hero-content h1 {
        font-size: 1.9rem;
    }

    .service-card,
    .service-detail-card,
    .mission-card,
    .pricing-card,
    .reason-card,
    .testimonial-card,
    .contact-info-panel,
    .contact-form,
    .legal-content {
        border-radius: 14px;
        padding: 22px;
    }

    .stats-grid,
    .contact-strip-grid,
    .process-timeline {
        grid-template-columns: 1fr;
    }

    .stat-item,
    .contact-strip-grid a {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .stat-item:last-child,
    .contact-strip-grid a:last-child {
        border-bottom: 0;
    }

    .testimonial-author {
        grid-template-columns: 54px 1fr;
    }

    .stars {
        grid-column: 2;
    }

    .process-icon {
        width: 88px;
        height: 88px;
    }

    .cta-panel {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 26px 22px;
    }

    .cta-panel img {
        width: 170px;
        margin: 0 auto;
    }

    .cta-panel .btn {
        grid-column: auto;
        justify-self: center;
        width: 100%;
    }

    .inner-hero {
        padding: 128px 0 70px;
    }

    .service-detail-top,
    .why-card {
        flex-direction: column;
    }

    .pricing-card.featured {
        transform: none;
    }

    .process-deep-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process-deep-icon {
        width: 82px;
        height: 82px;
    }

    .whatsapp-panel {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .whatsapp-panel > i,
    .whatsapp-panel .btn {
        justify-self: center;
    }

    .thank-you-section {
        min-height: 670px;
        padding-top: 130px;
    }

    .thank-you-card {
        padding: 34px 22px;
    }

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

    .floating-actions {
        right: 14px;
        bottom: 14px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 420px) {
    .brand-link > img:not(.brand-mark) {
        width: 158px;
    }

    .menu-toggle,
    .mobile-close {
        width: 42px;
        height: 42px;
    }

    .hero-copy h1 {
        font-size: 1.95rem;
    }

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

    .stat-item,
    .contact-strip-grid a {
        grid-template-columns: 52px 1fr;
        padding: 22px;
    }

    .mobile-service-list,
    .mobile-socials {
        padding: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* Refinement pass: lighter, less template-like visual language */
:root {
    --radius: 14px;
    --shadow-soft: 0 18px 46px rgba(5, 23, 58, 0.08);
    --shadow-blue: 0 18px 42px rgba(10, 100, 255, 0.16);
}

body {
    line-height: 1.72;
    text-rendering: geometricPrecision;
}

p,
li {
    color: #5d687c;
    font-weight: 400;
}

strong {
    font-weight: 650;
}

.btn {
    min-height: 44px;
    border-radius: 9px;
    padding: 11px 22px;
    font-size: 0.9rem;
    font-weight: 650;
}

.btn-yellow {
    background: linear-gradient(135deg, #ffd447, #ffb703);
    box-shadow: 0 12px 24px rgba(255, 183, 3, 0.18);
}

.site-header {
    padding: 12px 0;
}

.site-header.scrolled,
.inner-page .site-header {
    background: rgba(2, 13, 39, 0.78);
    box-shadow: 0 18px 44px rgba(1, 9, 27, 0.14);
}

.nav-center {
    gap: 2px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(255, 255, 255, 0.1);
}

.nav-link {
    padding: 9px 14px;
    font-size: 0.86rem;
    font-weight: 550;
}

.nav-link.active::after {
    left: 22px;
    right: 22px;
}

.hero-section {
    min-height: 680px;
    padding: 132px 0 68px;
    background:
        radial-gradient(circle at 78% 24%, rgba(18, 111, 255, 0.32), transparent 28%),
        linear-gradient(92deg, rgba(2, 14, 43, 0.98), rgba(3, 25, 70, 0.9)),
        url("../images/dark-city-bg.png") center / cover no-repeat;
}

.hero-section::before {
    opacity: 0.58;
}

.hero-bg-layer {
    opacity: 0.18;
}

.eyebrow,
.section-heading span,
.panel-kicker {
    padding: 7px 13px;
    font-size: 0.73rem;
    font-weight: 650;
    text-transform: none;
    letter-spacing: 0;
}

.hero-copy .eyebrow {
    background: rgba(255, 255, 255, 0.08);
}

.hero-copy h1 {
    max-width: 700px;
    font-size: clamp(2.35rem, 4.35vw, 4.15rem);
    line-height: 1.12;
    font-weight: 750;
    text-transform: none;
}

.hero-copy p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
}

.hero-actions {
    margin-top: 28px;
}

.hero-visual {
    min-height: 392px;
    overflow: visible;
    isolation: isolate;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 8% 3% 4% 6%;
    z-index: -1;
    border-radius: 36px;
    background: linear-gradient(140deg, rgba(0, 112, 255, 0.24), rgba(255, 193, 7, 0.08));
    filter: blur(10px);
}

.hero-visual img {
    width: min(100%, 700px);
    max-height: 430px;
    object-fit: contain;
    border-radius: 0;
    filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.24));
    animation: floatImage 7s ease-in-out infinite;
}

.social-float {
    display: none;
}

.feature-badges {
    gap: 10px;
    margin-top: 32px;
}

.feature-badge {
    min-height: 66px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.feature-badge strong {
    font-weight: 600;
}

.feature-badge small {
    font-weight: 400;
}

.section {
    padding: 78px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 36px;
}

.section-heading h2 {
    font-size: clamp(1.65rem, 2.5vw, 2.35rem);
    line-height: 1.24;
    font-weight: 700;
}

.section-heading p {
    font-size: 0.98rem;
}

.services-section,
.why-preview,
.process-section,
.mission-section,
.pricing-section,
.trust-section,
.visual-process-section,
.faq-section,
.legal-section,
.contact-main-section {
    background: linear-gradient(180deg, #fbfdff, #ffffff);
}

.service-card,
.reason-card,
.testimonial-card,
.service-detail-card,
.mission-card,
.pricing-card,
.legal-content,
.contact-form,
.contact-info-panel,
.why-card {
    border-color: rgba(10, 40, 90, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 32px rgba(5, 23, 58, 0.055);
    backdrop-filter: none;
}

.service-card {
    min-height: 220px;
    padding: 24px;
}

.service-card:hover,
.why-card:hover,
.reason-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(5, 23, 58, 0.09);
}

.service-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(3, 20, 58, 0.12);
}

.service-card h3,
.why-card h3,
.reason-card h3,
.testimonial-card h3,
.process-step h3,
.mission-card h2,
.service-detail-card h2,
.pricing-card h3,
.legal-content h2,
.contact-info-panel h2,
.contact-form h2 {
    font-weight: 650;
}

.service-card h3 {
    font-size: 1rem;
}

.service-card p {
    margin-top: 9px;
    font-size: 0.9rem;
}

.service-card a {
    font-weight: 600;
}

.stats-band {
    padding: 14px 0;
}

.stats-grid {
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(10, 100, 255, 0.18), rgba(255, 193, 7, 0.07)),
        linear-gradient(135deg, #03143a, #052560);
    box-shadow: 0 16px 36px rgba(3, 20, 58, 0.12);
}

.stat-item {
    padding: 24px 26px;
}

.stat-icon {
    width: 52px;
    height: 52px;
    font-size: 1.18rem;
}

.stat-item strong {
    font-size: 1.52rem;
    font-weight: 700;
}

.stat-item small {
    font-weight: 450;
}

.why-card {
    padding: 20px;
}

.why-card i,
.reason-card > i,
.mission-card i {
    width: 42px;
    height: 42px;
}

.testimonial-card {
    min-height: 235px;
    padding: 24px;
}

.testimonial-card p {
    color: #40506b;
    font-size: 0.92rem;
}

.testimonial-card h3 {
    font-size: 0.9rem;
}

.process-timeline {
    gap: 14px;
}

.process-icon {
    width: 88px;
    height: 88px;
    font-size: 1.55rem;
    box-shadow: 0 10px 24px rgba(5, 23, 58, 0.06);
}

.process-timeline::before {
    top: 44px;
}

.process-step span {
    font-weight: 650;
}

.process-step h3 {
    font-size: 0.94rem;
}

.process-step p {
    font-size: 0.82rem;
}

.cta-panel {
    border-radius: 14px;
    box-shadow: 0 18px 38px rgba(3, 20, 58, 0.12);
}

.cta-panel h2 {
    font-size: clamp(1.45rem, 2.25vw, 2.05rem);
    font-weight: 700;
}

.cta-panel span {
    font-weight: 650;
}

.contact-strip-grid {
    border-radius: 14px;
}

.inner-hero {
    padding: 148px 0 82px;
}

.inner-hero-content span {
    font-weight: 650;
    text-transform: none;
}

.inner-hero-content h1 {
    font-size: clamp(2rem, 3.3vw, 3.25rem);
    line-height: 1.18;
    font-weight: 700;
}

.mobile-nav-link,
.mobile-service-list a,
.site-footer h2 {
    font-weight: 600;
}

.site-footer {
    background:
        radial-gradient(circle at 85% 5%, rgba(10, 100, 255, 0.24), transparent 28%),
        linear-gradient(145deg, #020b26, #03143a 68%);
}

.site-footer a,
.site-footer li,
.site-footer p {
    font-weight: 400;
}

@media (max-width: 1199.98px) {
    .hero-copy h1 {
        font-size: 3.05rem;
    }

    .hero-visual img {
        width: min(100%, 640px);
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 112px;
    }

    .hero-copy h1 {
        font-size: 2.55rem;
    }

    .hero-visual {
        min-height: 320px;
    }
}

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

    .hero-copy h1 {
        font-size: 2rem;
        line-height: 1.18;
    }

    .hero-copy p {
        font-size: 0.93rem;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-actions .btn {
        padding: 10px 12px;
        font-size: 0.76rem;
    }

    .hero-visual {
        min-height: auto;
        margin-top: 2px;
        padding: 4px 0 10px;
    }

    .hero-visual img {
        width: 100%;
        max-height: none;
        border-radius: 8px;
    }

    .feature-badges {
        margin-top: 18px;
    }

    .feature-badge {
        min-height: 74px;
        border-radius: 12px;
    }

    .section {
        padding: 52px 0;
    }

    .section-heading h2,
    .inner-hero-content h1 {
        font-size: 1.72rem;
    }

    .service-card,
    .service-detail-card,
    .mission-card,
    .pricing-card,
    .reason-card,
    .testimonial-card,
    .contact-info-panel,
    .contact-form,
    .legal-content {
        padding: 20px;
    }

    .stats-grid,
    .contact-strip-grid {
        border-radius: 12px;
    }

    .process-icon {
        width: 78px;
        height: 78px;
    }

    .inner-hero {
        padding: 120px 0 64px;
    }
}

@media (max-width: 420px) {
    .hero-copy h1 {
        font-size: 1.82rem;
    }

    .eyebrow {
        align-items: flex-start;
        border-radius: 16px;
    }
}

/* Final polish after visual QA */
.hero-section {
    min-height: 610px;
    padding: 116px 0 44px;
}

.hero-copy h1 {
    max-width: 660px;
    font-size: clamp(2.15rem, 3.8vw, 3.65rem);
    line-height: 1.14;
    font-weight: 700;
}

.hero-copy p {
    max-width: 610px;
    font-size: 0.96rem;
}

.hero-visual {
    min-height: 330px;
    align-items: flex-start;
    padding-top: 16px;
}

.hero-visual::before {
    inset: 4% 0 0 2%;
    opacity: 0.72;
}

.hero-visual img {
    width: min(100%, 720px);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 69%, rgba(0, 0, 0, 0.9) 82%, transparent 100%);
    mask-image: radial-gradient(ellipse at center, #000 69%, rgba(0, 0, 0, 0.9) 82%, transparent 100%);
}

.hero-copy strong,
.feature-badge strong,
.service-card h3,
.why-card h3,
.reason-card h3,
.testimonial-card h3,
.process-step h3 {
    font-weight: 600;
}

.section-heading h2 {
    font-weight: 650;
}

.services-section {
    padding-top: 62px;
}

.section-heading span {
    margin-bottom: 12px;
}

.service-card,
.why-card,
.reason-card,
.testimonial-card {
    box-shadow: 0 10px 26px rgba(5, 23, 58, 0.045);
}

.service-card:hover,
.why-card:hover,
.reason-card:hover {
    transform: translateY(-3px);
}

.floating-actions {
    right: 16px;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 106px;
    }

    .hero-visual {
        padding-top: 6px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: auto;
        padding: 98px 0 42px;
    }

    .hero-section .row {
        --bs-gutter-y: 1.35rem;
    }

    .hero-copy h1 {
        font-size: 1.92rem;
        line-height: 1.18;
        font-weight: 700;
    }

    .hero-section .row > .col-lg-6:last-child {
        width: 100%;
        flex: 0 0 100%;
    }

    .hero-visual {
        display: block;
        width: 100%;
        min-height: 0;
        padding: 8px 0 0;
    }

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

    .hero-visual img {
        display: block;
        width: 100%;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .feature-badges {
        margin-top: 8px;
    }

    .services-section {
        padding-top: 48px;
    }

    .floating-actions {
        display: flex;
        flex-direction: row;
        right: 10px;
        bottom: 10px;
        gap: 8px;
    }

    .float-btn {
        width: 42px;
        height: 42px;
        font-size: 1.05rem;
    }

    .float-btn.back-to-top:not(.show) {
        display: none;
    }
}

/* Modern effects and blog system */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1400;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow), var(--blue-2), var(--yellow));
    box-shadow: 0 0 18px rgba(255, 193, 7, 0.38);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(circle at 8% 14%, rgba(10, 100, 255, 0.06), transparent 24%),
        radial-gradient(circle at 86% 32%, rgba(255, 193, 7, 0.055), transparent 22%),
        linear-gradient(180deg, #ffffff, #f9fbff 55%, #ffffff);
}

.site-header::after,
.hero-section::after,
.inner-hero::before {
    content: "";
    position: absolute;
    pointer-events: none;
}

.site-header::after {
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.hero-section::after {
    left: 0;
    right: 0;
    bottom: -1px;
    height: 88px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.96));
}

.inner-hero::before {
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 42px),
        radial-gradient(circle at 84% 22%, rgba(255, 193, 7, 0.12), transparent 22%);
    opacity: 0.45;
}

.inner-hero-content {
    isolation: isolate;
}

.section {
    position: relative;
}

.section::before {
    content: "";
    position: absolute;
    inset: 18px auto auto 5%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 100, 255, 0.06), transparent 68%);
    pointer-events: none;
}

.service-card,
.why-card,
.reason-card,
.testimonial-card,
.service-detail-card,
.mission-card,
.pricing-card,
.contact-form,
.contact-info-panel,
.legal-content,
.blog-card,
.blog-featured-card,
.blog-article-main,
.sidebar-card,
.process-deep-card {
    position: relative;
    overflow: hidden;
}

.service-card::before,
.why-card::before,
.reason-card::before,
.testimonial-card::before,
.service-detail-card::before,
.mission-card::before,
.pricing-card::before,
.contact-form::before,
.contact-info-panel::before,
.legal-content::before,
.blog-card::before,
.blog-featured-card::before,
.blog-article-main::before,
.sidebar-card::before,
.process-deep-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(10, 100, 255, 0.22), rgba(255, 193, 7, 0.22), rgba(255, 255, 255, 0));
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 220ms ease;
}

.service-card::after,
.why-card::after,
.reason-card::after,
.testimonial-card::after,
.service-detail-card::after,
.mission-card::after,
.pricing-card::after,
.contact-form::after,
.contact-info-panel::after,
.legal-content::after,
.blog-card::after,
.blog-featured-card::after,
.blog-article-main::after,
.sidebar-card::after,
.process-deep-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(10, 100, 255, 0.1), transparent 34%);
    opacity: 0;
    transition: opacity 220ms ease;
}

.service-card:hover::before,
.why-card:hover::before,
.reason-card:hover::before,
.testimonial-card:hover::before,
.service-detail-card:hover::before,
.mission-card:hover::before,
.pricing-card:hover::before,
.contact-form:hover::before,
.contact-info-panel:hover::before,
.legal-content:hover::before,
.blog-card:hover::before,
.blog-featured-card:hover::before,
.blog-article-main:hover::before,
.sidebar-card:hover::before,
.process-deep-card:hover::before,
.service-card:hover::after,
.why-card:hover::after,
.reason-card:hover::after,
.testimonial-card:hover::after,
.service-detail-card:hover::after,
.mission-card:hover::after,
.pricing-card:hover::after,
.contact-form:hover::after,
.contact-info-panel:hover::after,
.legal-content:hover::after,
.blog-card:hover::after,
.blog-featured-card:hover::after,
.blog-article-main:hover::after,
.sidebar-card:hover::after,
.process-deep-card:hover::after {
    opacity: 1;
}

.service-card > *,
.why-card > *,
.reason-card > *,
.testimonial-card > *,
.service-detail-card > *,
.mission-card > *,
.pricing-card > *,
.contact-form > *,
.contact-info-panel > *,
.legal-content > *,
.blog-card > *,
.blog-featured-card > *,
.blog-article-main > *,
.sidebar-card > *,
.process-deep-card > * {
    position: relative;
    z-index: 1;
}

.service-icon,
.stat-icon,
.process-icon,
.process-deep-icon,
.contact-info-list i,
.contact-strip-grid i {
    transition: transform 260ms ease, box-shadow 260ms ease;
}

.service-card:hover .service-icon,
.reason-card:hover > i,
.why-card:hover > i,
.process-step:hover .process-icon,
.contact-info-list a:hover i {
    transform: translateY(-2px) scale(1.04);
}

.section-action {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.blog-preview-section,
.blog-list-section,
.blog-article-content-section {
    background:
        radial-gradient(circle at 92% 8%, rgba(10, 100, 255, 0.055), transparent 24%),
        linear-gradient(180deg, #ffffff, #f8fbff);
}

.blog-featured-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 70px;
}

.blog-card,
.blog-featured-card {
    height: 100%;
    border: 1px solid rgba(10, 40, 90, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 32px rgba(5, 23, 58, 0.055);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.blog-featured-card {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 330px;
}

.blog-card:hover,
.blog-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(5, 23, 58, 0.1);
}

.blog-image-link {
    display: block;
    height: 100%;
    min-height: 210px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 22%, rgba(10, 100, 255, 0.34), transparent 32%),
        linear-gradient(135deg, #03143a, #07327f);
}

.blog-card .blog-image-link {
    height: 210px;
    min-height: 210px;
}

.blog-featured-card .blog-image-link {
    height: 270px;
    min-height: 270px;
}

.blog-image-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 420ms ease, filter 420ms ease;
}

.blog-card:hover .blog-image-link img,
.blog-featured-card:hover .blog-image-link img {
    transform: scale(1.035);
    filter: saturate(1.08);
}

.blog-card-body {
    padding: 24px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 13px;
    color: var(--gray-500);
    font-size: 0.78rem;
    font-weight: 500;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--blue);
    background: rgba(10, 100, 255, 0.08);
    font-weight: 650;
}

.blog-card h3,
.blog-featured-card h2 {
    margin: 0;
    color: var(--navy);
    line-height: 1.25;
    font-weight: 650;
}

.blog-card h3 {
    font-size: 1.15rem;
}

.blog-featured-card h2 {
    font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.blog-card p,
.blog-featured-card p {
    margin: 12px 0 18px;
    font-size: 0.93rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 0.9rem;
    font-weight: 650;
}

.text-link i {
    transition: transform 180ms ease;
}

.text-link:hover i {
    transform: translateX(4px);
}

.blog-more-heading {
    margin-top: 10px;
}

.blog-article-hero {
    position: relative;
    padding: 150px 0 80px;
    color: var(--white);
    background:
        radial-gradient(circle at 74% 22%, rgba(10, 100, 255, 0.36), transparent 26%),
        linear-gradient(135deg, #03143a, #061f56 72%);
    overflow: hidden;
}

.blog-article-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        url("../images/dot-pattern.png") 0 36% / 210px auto no-repeat,
        linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 46px);
    opacity: 0.35;
}

.blog-article-head {
    position: relative;
    max-width: 920px;
    z-index: 1;
}

.blog-article-head .blog-meta {
    color: rgba(255, 255, 255, 0.68);
}

.blog-article-head .blog-meta span {
    color: var(--navy);
    background: var(--yellow);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
}

.blog-article-head h1 {
    margin: 0;
    color: var(--white);
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 1.14;
    font-weight: 700;
}

.blog-article-head p {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.82);
}

.blog-article-content-section {
    padding: 76px 0;
}

.blog-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
    align-items: start;
}

.blog-article-main,
.sidebar-card {
    border: 1px solid rgba(10, 40, 90, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 32px rgba(5, 23, 58, 0.055);
}

.blog-article-main {
    padding: 28px;
}

.article-cover {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 32px;
}

.blog-article-main section {
    padding: 26px 0;
    border-bottom: 1px solid rgba(10, 40, 90, 0.08);
}

.blog-article-main section:last-child {
    border-bottom: 0;
}

.blog-article-main h2,
.sidebar-card h2 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 1.35rem;
    line-height: 1.28;
    font-weight: 650;
}

.blog-article-main p {
    margin: 0;
    color: #46546c;
}

.blog-sidebar {
    position: sticky;
    top: 102px;
    display: grid;
    gap: 18px;
}

.sidebar-card {
    padding: 24px;
}

.sidebar-card p {
    font-size: 0.93rem;
}

.recent-post {
    display: grid;
    gap: 4px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(10, 40, 90, 0.08);
}

.recent-post:last-child {
    border-bottom: 0;
}

.recent-post span {
    color: var(--blue);
    font-size: 0.75rem;
    font-weight: 650;
}

.recent-post strong {
    color: var(--navy);
    font-size: 0.9rem;
    line-height: 1.35;
}

@media (max-width: 1199.98px) {
    .blog-featured-card {
        grid-template-columns: 1fr;
    }

    .blog-featured-card .blog-image-link {
        height: 260px;
    }
}

@media (max-width: 991.98px) {
    .blog-featured-grid,
    .blog-article-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .blog-featured-grid {
        gap: 18px;
        margin-bottom: 46px;
    }

    .blog-card-body,
    .blog-article-main,
    .sidebar-card {
        padding: 20px;
    }

    .blog-card .blog-image-link,
    .blog-featured-card .blog-image-link {
        height: 190px;
        min-height: 190px;
    }

    .blog-article-hero {
        padding: 126px 0 62px;
    }

    .blog-article-head h1 {
        font-size: 1.9rem;
    }

    .blog-article-content-section {
        padding: 52px 0;
    }
}

/* Agency-grade polish: refined motion and all-page finish */
:root {
    --page-bg: #f7f9fc;
    --surface: rgba(255, 255, 255, 0.94);
    --surface-strong: #ffffff;
    --text-main: #061128;
    --text-muted: #5f6b7e;
    --line-soft: rgba(9, 31, 86, 0.1);
    --hero-start: #020a21;
    --hero-end: #062a72;
    --card-shadow: 0 16px 40px rgba(5, 23, 58, 0.07);
    --card-shadow-hover: 0 24px 58px rgba(5, 23, 58, 0.12);
}

[data-theme="dark"] {
    --page-bg: #f7f9fc;
    --surface: rgba(255, 255, 255, 0.94);
    --surface-strong: #ffffff;
    --text-main: #061128;
    --text-muted: #5f6b7e;
    --line-soft: rgba(9, 31, 86, 0.1);
    --hero-start: #020a21;
    --hero-end: #062a72;
    --card-shadow: 0 16px 40px rgba(5, 23, 58, 0.07);
    --card-shadow-hover: 0 24px 58px rgba(5, 23, 58, 0.12);
}

body {
    background: var(--page-bg);
    color: var(--text-main);
    transition: background 260ms ease, color 260ms ease;
}

body::before {
    background:
        linear-gradient(120deg, rgba(10, 100, 255, 0.055) 0 1px, transparent 1px 58px),
        linear-gradient(30deg, rgba(255, 193, 7, 0.04) 0 1px, transparent 1px 72px),
        linear-gradient(180deg, var(--page-bg), var(--page-bg));
    opacity: 0.7;
}

p,
li,
.section-heading p,
.service-card p,
.blog-card p,
.blog-featured-card p,
.contact-form input,
.contact-form textarea {
    color: var(--text-muted);
}

.section-heading h2,
.service-card h3,
.why-card h3,
.reason-card h3,
.testimonial-card h3,
.process-step h3,
.mission-card h2,
.service-detail-card h2,
.pricing-card h3,
.legal-content h2,
.contact-info-panel h2,
.contact-form h2,
.blog-card h3,
.blog-featured-card h2,
.blog-article-main h2,
.sidebar-card h2,
.recent-post strong,
.vertical-timeline h3 {
    color: var(--text-main);
}

.hero-section,
.inner-hero,
.blog-article-hero {
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 68px),
        linear-gradient(92deg, var(--hero-start), var(--hero-end));
}

.hero-section .container,
.inner-hero .container,
.blog-article-hero .container {
    position: relative;
}

.hero-section .container::before,
.inner-hero .container::before,
.blog-article-hero .container::before {
    content: "";
    position: absolute;
    right: -3%;
    top: 14%;
    width: min(52vw, 720px);
    height: 260px;
    pointer-events: none;
    background:
        linear-gradient(110deg, transparent 0 18%, rgba(18, 166, 255, 0.13) 19% 20%, transparent 21% 35%, rgba(255, 193, 7, 0.1) 36% 37%, transparent 38%),
        repeating-linear-gradient(100deg, transparent 0 18px, rgba(255, 255, 255, 0.08) 19px, transparent 20px 42px);
    clip-path: polygon(0 52%, 18% 34%, 42% 56%, 68% 24%, 100% 45%, 100% 64%, 68% 43%, 42% 75%, 18% 52%, 0 70%);
    opacity: 0.72;
    animation: signalDrift 9s ease-in-out infinite;
}

@keyframes signalDrift {
    0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.58; }
    50% { transform: translate3d(-18px, 10px, 0); opacity: 0.84; }
}

.theme-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
}

.theme-toggle .fa-sun {
    position: absolute;
    opacity: 0;
    transform: translateY(16px) rotate(-60deg);
    transition: opacity 220ms ease, transform 220ms ease;
}

.theme-toggle .fa-moon {
    transition: opacity 220ms ease, transform 220ms ease;
}

[data-theme="dark"] .theme-toggle .fa-sun {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

[data-theme="dark"] .theme-toggle .fa-moon {
    opacity: 0;
    transform: translateY(-16px) rotate(60deg);
}

.mobile-theme-toggle {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 18px;
    padding: 0 18px;
    border-radius: 12px;
    font-weight: 600;
}

.mobile-theme-toggle span {
    color: inherit;
}

.service-card,
.why-card,
.reason-card,
.testimonial-card,
.service-detail-card,
.mission-card,
.pricing-card,
.contact-form,
.contact-info-panel,
.legal-content,
.blog-card,
.blog-featured-card,
.blog-article-main,
.sidebar-card,
.process-deep-card,
.vertical-timeline article,
.contact-info-list a,
.support-list div,
.trust-badges div {
    background: var(--surface);
    border-color: var(--line-soft);
    box-shadow: var(--card-shadow);
    transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease, border-color 240ms ease;
}

.service-card:hover,
.why-card:hover,
.reason-card:hover,
.testimonial-card:hover,
.service-detail-card:hover,
.mission-card:hover,
.pricing-card:hover,
.blog-card:hover,
.blog-featured-card:hover,
.process-deep-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.services-section,
.why-preview,
.process-section,
.mission-section,
.pricing-section,
.trust-section,
.visual-process-section,
.faq-section,
.legal-section,
.contact-main-section,
.blog-preview-section,
.blog-list-section,
.blog-article-content-section,
.map-section,
.whatsapp-cta {
    background:
        linear-gradient(120deg, rgba(10, 100, 255, 0.045) 0 1px, transparent 1px 92px),
        linear-gradient(180deg, var(--page-bg), var(--page-bg));
}

.services-section::after,
.why-preview::after,
.process-section::after,
.blog-preview-section::after,
.blog-list-section::after,
.contact-main-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(10, 100, 255, 0.18), rgba(255, 193, 7, 0.22), transparent);
    pointer-events: none;
}

.btn,
.text-link,
.nav-link,
.mobile-nav-link {
    will-change: transform;
}

.btn-yellow {
    position: relative;
    overflow: hidden;
}

.btn-yellow::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 0 32%, rgba(255, 255, 255, 0.34) 48%, transparent 64%);
    transform: translateX(-120%);
    transition: transform 520ms ease;
}

.btn-yellow:hover::before {
    transform: translateX(120%);
}

.btn-yellow > * {
    position: relative;
    z-index: 1;
}

.hero-visual img,
.image-stack img,
.rounded-visual,
.trust-visual img,
.article-cover {
    transition: transform 420ms ease, filter 420ms ease;
}

.hero-visual:hover img,
.image-stack:hover img,
.trust-visual:hover img,
.blog-article-main:hover .article-cover {
    transform: translateY(-4px);
}

[data-theme="dark"] .site-header,
[data-theme="dark"] .site-header.scrolled,
[data-theme="dark"] .inner-page .site-header {
    background: rgba(3, 6, 18, 0.82);
}

[data-theme="dark"] .nav-center,
[data-theme="dark"] .mobile-menu-panel {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        #050914;
}

[data-theme="dark"] .mobile-service-list,
[data-theme="dark"] .mobile-socials,
[data-theme="dark"] .faq-accordion .accordion-item,
[data-theme="dark"] .faq-accordion .accordion-button,
[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form textarea,
[data-theme="dark"] .benefit-list span,
[data-theme="dark"] .check-grid span {
    color: var(--text-main);
    background: var(--surface-strong);
    border-color: var(--line-soft);
}

[data-theme="dark"] .faq-accordion .accordion-body,
[data-theme="dark"] .accordion-button::after,
[data-theme="dark"] .contact-info-list span,
[data-theme="dark"] .testimonial-author span {
    color: var(--text-muted);
}

[data-theme="dark"] .btn-outline-navy {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.14);
}

[data-theme="dark"] .btn-outline-navy:hover {
    color: var(--navy);
    background: var(--yellow);
}

[data-theme="dark"] .stats-grid,
[data-theme="dark"] .contact-strip-grid,
[data-theme="dark"] .cta-panel {
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

[data-theme="dark"] .blog-image-link {
    background:
        linear-gradient(120deg, rgba(255, 193, 7, 0.06), rgba(10, 100, 255, 0.22)),
        #071225;
}

@media (max-width: 991.98px) {
    .hero-section .container::before,
    .inner-hero .container::before,
    .blog-article-hero .container::before {
        width: 90vw;
        right: -35%;
        opacity: 0.38;
    }
}

@media (max-width: 767.98px) {
    .theme-toggle:not(.mobile-theme-toggle) {
        display: none;
    }

    .hero-section .container::before,
    .inner-hero .container::before,
    .blog-article-hero .container::before {
        display: none;
    }

    .service-card:hover,
    .why-card:hover,
    .reason-card:hover,
    .testimonial-card:hover,
    .service-detail-card:hover,
    .mission-card:hover,
    .pricing-card:hover,
    .blog-card:hover,
    .blog-featured-card:hover,
    .process-deep-card:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-section .container::before,
    .inner-hero .container::before,
    .blog-article-hero .container::before {
        animation: none;
    }
}

/* Final production polish requested: no theme switch, stronger agency UI */
:root {
    --page-bg: #f6f9ff;
    --surface: rgba(255, 255, 255, 0.94);
    --surface-strong: #ffffff;
    --text-main: #061128;
    --text-muted: #5f6b7e;
    --line-soft: rgba(9, 31, 86, 0.1);
    --hero-start: #020a21;
    --hero-end: #073070;
    --card-shadow: 0 18px 44px rgba(5, 23, 58, 0.08);
    --card-shadow-hover: 0 30px 70px rgba(5, 23, 58, 0.15);
}

html[data-theme],
[data-theme="dark"] {
    color-scheme: light;
}

body {
    background:
        radial-gradient(circle at 12% 12%, rgba(10, 100, 255, 0.08), transparent 26%),
        radial-gradient(circle at 88% 26%, rgba(255, 193, 7, 0.08), transparent 24%),
        var(--page-bg);
    color: var(--text-main);
}

.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 42%, rgba(10, 100, 255, 0.18), transparent 28%),
        linear-gradient(135deg, #020a21, #062863);
    opacity: 1;
    visibility: visible;
    transition: opacity 420ms ease, visibility 420ms ease;
}

.site-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-card {
    position: relative;
    display: grid;
    place-items: center;
    width: 138px;
    height: 138px;
}

.preloader-card::before,
.preloader-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--yellow);
    border-right-color: rgba(18, 166, 255, 0.7);
    animation: preloaderSpin 1.15s linear infinite;
}

.preloader-card::after {
    inset: 12px;
    animation-direction: reverse;
    animation-duration: 1.8s;
    opacity: 0.6;
}

.preloader-card img {
    width: 92px;
    height: 92px;
    padding: 5px;
    border-radius: 24px;
    object-fit: contain;
    background: var(--white);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.preloader-card span {
    position: absolute;
    bottom: -22px;
    width: 84px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--yellow), transparent);
    animation: preloaderLine 1.2s ease-in-out infinite;
}

@keyframes preloaderSpin {
    to { transform: rotate(360deg); }
}

@keyframes preloaderLine {
    0%, 100% { transform: scaleX(0.4); opacity: 0.45; }
    50% { transform: scaleX(1); opacity: 1; }
}

[data-aos="fade-left"],
[data-aos="fade-right"] {
    transform: translate3d(0, 34px, 0);
}

[data-aos="fade-left"].aos-animate,
[data-aos="fade-right"].aos-animate {
    transform: translate3d(0, 0, 0);
}

.brand-link,
.mobile-brand,
.footer-brand {
    gap: 12px;
    min-width: 0;
}

.brand-link .brand-mark,
.mobile-brand .brand-mark,
.footer-brand .brand-mark {
    flex: 0 0 auto;
    width: 78px;
    height: 54px;
    padding: 4px 7px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 16px;
    object-fit: contain;
    background: var(--white);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.brand-text {
    display: grid;
    gap: 0;
    line-height: 1.02;
    color: var(--white);
    text-transform: uppercase;
}

.brand-text strong {
    color: var(--white);
    font-size: 1.02rem;
    font-weight: 720;
    letter-spacing: 0;
}

.brand-text small {
    color: var(--yellow);
    font-size: 0.7rem;
    font-weight: 650;
    letter-spacing: 0.02em;
}

.footer-brand .brand-mark {
    width: 86px;
    height: 60px;
}

.theme-toggle,
.mobile-theme-toggle {
    display: none !important;
}

.site-header {
    background: rgba(2, 10, 33, 0.72);
    backdrop-filter: blur(18px);
}

.hero-section {
    min-height: 690px;
    padding: 132px 0 58px;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 76px),
        radial-gradient(circle at 74% 30%, rgba(10, 100, 255, 0.34), transparent 32%),
        linear-gradient(92deg, var(--hero-start), var(--hero-end));
}

.hero-section::after {
    height: 118px;
    background: linear-gradient(180deg, transparent, var(--page-bg));
}

.hero-visual {
    min-height: 360px;
    align-items: center;
    padding-top: 0;
}

.hero-visual::before {
    inset: 8% 2% 0 4%;
    border-radius: 44px;
    background:
        radial-gradient(circle at 48% 45%, rgba(18, 166, 255, 0.24), transparent 45%),
        linear-gradient(135deg, rgba(255, 193, 7, 0.08), rgba(10, 100, 255, 0.16));
    filter: blur(18px);
}

.hero-visual img {
    width: min(100%, 760px);
    border-radius: 18px;
    object-fit: contain;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.hero-copy h1 {
    font-weight: 720;
}

.service-card,
.why-card,
.reason-card,
.testimonial-card,
.service-detail-card,
.mission-card,
.pricing-card,
.contact-form,
.contact-info-panel,
.legal-content,
.blog-card,
.blog-featured-card,
.blog-article-main,
.sidebar-card,
.process-deep-card,
.showcase-card,
.premium-card {
    border: 1px solid rgba(9, 31, 86, 0.09);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
    box-shadow: var(--card-shadow);
}

.service-card {
    min-height: 224px;
    transform-style: preserve-3d;
}

.service-card:hover {
    transform: translateY(-8px) rotateX(1deg) rotateY(-1deg);
}

.service-card::before,
.premium-card::before,
.showcase-card::before {
    opacity: 0.7;
}

.premium-carousel-section,
.page-showcase-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 0, rgba(10, 100, 255, 0.08), transparent 26%),
        radial-gradient(circle at 90% 20%, rgba(255, 193, 7, 0.1), transparent 22%),
        linear-gradient(180deg, var(--page-bg), #ffffff);
}

.premium-service-swiper,
.page-showcase-swiper {
    padding: 18px 8px 58px;
}

.premium-card {
    min-height: 370px;
    padding: 30px;
    transform-style: preserve-3d;
}

.premium-card-glow {
    position: absolute;
    right: -44px;
    top: -44px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    opacity: 0.13;
    filter: blur(2px);
}

.premium-card h3,
.showcase-card h3 {
    margin: 18px 0 10px;
    color: var(--navy);
    font-size: 1.2rem;
    font-weight: 700;
}

.premium-card p,
.showcase-card p {
    font-size: 0.92rem;
}

.premium-points {
    display: grid;
    gap: 9px;
    margin: 18px 0 22px;
}

.premium-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-size: 0.86rem;
    font-weight: 600;
}

.premium-points i {
    color: var(--green);
}

.showcase-card {
    min-height: 230px;
    padding: 28px;
}

.showcase-card > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    color: var(--white);
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.36), transparent 30%),
        linear-gradient(135deg, var(--blue), var(--navy-3));
    box-shadow: 0 14px 30px rgba(10, 100, 255, 0.18);
}

.swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    opacity: 0.35;
}

.swiper-pagination-bullet-active {
    width: 26px;
    border-radius: 999px;
    opacity: 1;
    background: linear-gradient(90deg, var(--blue), var(--yellow));
}

.inner-hero {
    padding: 158px 0 96px;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 78px),
        radial-gradient(circle at 82% 28%, rgba(18, 166, 255, 0.28), transparent 28%),
        linear-gradient(135deg, #020a21, #073070);
}

.inner-hero-content {
    max-width: 980px;
}

.inner-hero-content h1 {
    max-width: 900px;
}

.legal-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.legal-content h2 {
    padding-top: 18px;
    border-top: 1px solid rgba(9, 31, 86, 0.08);
}

.legal-content h2:first-child {
    border-top: 0;
    padding-top: 0;
}

@media (max-width: 991.98px) {
    .brand-text strong {
        font-size: 0.92rem;
    }

    .brand-text small {
        font-size: 0.64rem;
    }

    .hero-visual img {
        -webkit-mask-image: none;
        mask-image: none;
    }
}

@media (max-width: 767.98px) {
    .site-preloader .preloader-card {
        transform: scale(0.9);
    }

    .brand-link .brand-mark,
    .mobile-brand .brand-mark {
        width: 64px;
        height: 46px;
        padding: 4px 6px;
        border-radius: 14px;
    }

    .brand-text strong {
        font-size: 0.78rem;
    }

    .brand-text small {
        font-size: 0.55rem;
    }

    .hero-section {
        padding: 112px 0 44px;
    }

    .hero-visual img {
        border-radius: 14px;
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
    }

    .premium-card,
    .showcase-card {
        min-height: auto;
        padding: 22px;
    }

    .page-showcase-section {
        padding: 52px 0 34px;
    }
}
