:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0f172a;
    --accent: #06b6d4;
    --success: #10b981;
    --background: #f8fafc;
    --surface: #ffffff;
    --surface-soft: #f1f5f9;
    --surface-deep: #e2e8f0;
    --text: #0f172a;
    --text-soft: #475569;
    --text-muted: #64748b;
    --border: rgba(15, 23, 42, 0.1);
    --border-strong: rgba(15, 23, 42, 0.16);
    --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 24px 70px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 35px 100px rgba(15, 23, 42, 0.16);
    --gradient: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    --gradient-soft: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(6, 182, 212, 0.12));
    --header-height: 86px;
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --transition: 260ms ease;
}

html[data-theme="dark"] {
    --background: #07111f;
    --surface: #0d1a2d;
    --surface-soft: #101f35;
    --surface-deep: #162840;
    --text: #f8fafc;
    --text-soft: #cbd5e1;
    --text-muted: #94a3b8;
    --border: rgba(148, 163, 184, 0.15);
    --border-strong: rgba(148, 163, 184, 0.24);
    --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 24px 70px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 35px 100px rgba(0, 0, 0, 0.4);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    transition: background-color var(--transition), color var(--transition);
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
a,
input,
textarea,
select {
    -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(6, 182, 212, 0.42);
    outline-offset: 4px;
}

::selection {
    background: rgba(37, 99, 235, 0.2);
    color: var(--text);
}

.skip-link {
    position: fixed;
    left: 20px;
    top: -80px;
    z-index: 10000;
    padding: 12px 18px;
    border-radius: 10px;
    background: var(--secondary);
    color: #fff;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 16px;
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: #07111f;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-mark {
    position: relative;
    display: grid;
    width: 74px;
    height: 74px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 60px rgba(37, 99, 235, 0.38);
    overflow: hidden;
}

.loader-mark i {
    position: absolute;
    inset: -45%;
    border: 2px solid transparent;
    border-top-color: var(--accent);
    border-right-color: var(--primary);
    border-radius: 50%;
    animation: loader-spin 1.2s linear infinite;
}

@keyframes loader-spin {
    to { transform: rotate(360deg); }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-family: "Poppins", sans-serif;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

p {
    margin-top: 0;
    color: var(--text-soft);
}

.section-shell {
    position: relative;
    padding: 120px 0;
}

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

.section-heading {
    max-width: 820px;
    margin-bottom: 54px;
}

.section-heading-centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.compact-heading {
    margin-bottom: 34px;
}

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

.section-eyebrow::before {
    width: 28px;
    height: 2px;
    content: "";
    border-radius: 999px;
    background: var(--gradient);
}

.section-eyebrow-light {
    color: #a5f3fc;
}

.section-heading h2 {
    margin-bottom: 18px;
    font-size: clamp(2.15rem, 4.3vw, 4rem);
    font-weight: 700;
}

.section-heading p {
    max-width: 690px;
    margin-bottom: 0;
    font-size: 1.08rem;
}

.section-heading-centered p {
    margin-right: auto;
    margin-left: auto;
}

.text-gradient {
    color: transparent;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    gap: 10px;
    padding: 0 24px;
    overflow: hidden;
    border-radius: 16px;
    font-weight: 700;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

.btn i {
    transition: transform var(--transition);
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary-gradient {
    border: 1px solid transparent;
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.28);
}

.btn-primary-gradient:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.38);
}

.btn-ghost {
    border: 1px solid var(--border-strong);
    background: rgba(255, 255, 255, 0.55);
    color: var(--text);
    backdrop-filter: blur(14px);
}

html[data-theme="dark"] .btn-ghost {
    background: rgba(15, 23, 42, 0.5);
}

.btn-ghost:hover {
    border-color: rgba(37, 99, 235, 0.45);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.btn-link-arrow {
    min-height: auto;
    padding: 10px 0;
    border: 0;
    color: var(--text);
}

.btn-link-arrow:hover {
    color: var(--primary);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 700;
}

.text-link i {
    transition: transform var(--transition), color var(--transition);
}

.text-link:hover {
    color: var(--primary);
}

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

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    padding: 13px 0;
    transition: padding var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    background: color-mix(in srgb, var(--surface) 86%, transparent);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.07);
    backdrop-filter: blur(20px);
}

.navbar {
    padding: 0;
}

.text-logo {
    display: inline-flex;
    align-items: baseline;
    color: var(--text);
    font-family: "Poppins", sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.text-logo i {
    color: var(--accent);
    font-style: normal;
}

.navbar-nav {
    gap: 8px;
}

.navbar-nav .nav-link {
    position: relative;
    padding: 11px 10px !important;
    color: var(--text-soft);
    font-size: 0.92rem;
    font-weight: 700;
}

.navbar-nav .nav-link::after {
    position: absolute;
    right: 10px;
    bottom: 4px;
    left: 10px;
    height: 2px;
    content: "";
    border-radius: 999px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--text);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.header-cta-group,
.header-actions-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.theme-toggle {
    position: relative;
    display: inline-grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: color-mix(in srgb, var(--surface) 80%, transparent);
    color: var(--text);
    transition: border-color var(--transition), transform var(--transition), background var(--transition);
}

.theme-toggle:hover {
    border-color: rgba(37, 99, 235, 0.35);
    transform: translateY(-2px);
}

.theme-icon-light {
    display: none;
}

html[data-theme="dark"] .theme-icon-dark {
    display: none;
}

html[data-theme="dark"] .theme-icon-light {
    display: inline-block;
}

.header-resume {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    color: var(--text-soft);
    font-size: 0.9rem;
    font-weight: 700;
}

.header-resume:hover {
    color: var(--primary);
}

.btn-header {
    min-height: 46px;
    padding: 0 18px;
    border: 0;
    border-radius: 14px;
    background: var(--secondary);
    color: #fff;
}

html[data-theme="dark"] .btn-header {
    background: var(--gradient);
}

.btn-header:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.navbar-toggler {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
    box-shadow: none !important;
}

.navbar-toggler span {
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: var(--text);
    transition: transform var(--transition), opacity var(--transition);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
    min-height: 100vh;
    padding-top: 110px;
    padding-bottom: 70px;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 15%, rgba(37, 99, 235, 0.13), transparent 32%),
        radial-gradient(circle at 86% 22%, rgba(6, 182, 212, 0.14), transparent 28%),
        var(--background);
}

.hero-row {
    min-height: calc(100vh - 140px) !important;
}

.hero-grid,
.section-dark-grid,
.contact-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.34;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 74%, transparent);
}

.hero-orb,
.contact-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(12px);
}

.hero-orb-one {
    top: 12%;
    left: -7%;
    width: 280px;
    height: 280px;
    background: rgba(37, 99, 235, 0.12);
}

.hero-orb-two {
    right: -5%;
    bottom: 8%;
    width: 340px;
    height: 340px;
    background: rgba(6, 182, 212, 0.1);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particles span {
    position: absolute;
    width: var(--particle-size, 5px);
    height: var(--particle-size, 5px);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.82), rgba(6, 182, 212, 0.72));
    opacity: var(--particle-opacity, 0.24);
    animation: particle-float var(--particle-duration, 13s) ease-in-out infinite;
    animation-delay: var(--particle-delay, 0s);
}

@keyframes particle-float {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(18px, -34px, 0); }
}

.eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    padding: 9px 14px;
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.08);
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 700;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.13);
    animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse {
    50% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
}

.hero-kicker {
    margin-bottom: 4px;
    color: var(--text-soft);
    font-size: 1.3rem;
    font-weight: 700;
}

.hero-title {
    margin-bottom: 22px;
    font-size: clamp(3.2rem, 7vw, 6.8rem);
    font-weight: 800;
    letter-spacing: -0.065em;
    line-height: 0.96;
}

.hero-title span {
    display: block;
}

.hero-role {
    display: flex;
    min-height: 34px;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--text);
    font-size: clamp(1rem, 2vw, 1.22rem);
    font-weight: 700;
}

.role-divider {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 18px rgba(6, 182, 212, 0.65);
}

.typed-text {
    color: var(--primary);
}

.typed-cursor {
    color: var(--accent);
}

.hero-description {
    max-width: 660px;
    margin-bottom: 32px;
    font-size: 1.12rem;
}

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

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

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

.hero-proof strong {
    color: var(--text);
    font-size: 0.96rem;
}

.hero-proof > div:last-child span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.proof-avatar-group {
    display: flex;
}

.proof-avatar-group span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    margin-left: -8px;
    border: 3px solid var(--background);
    border-radius: 50%;
    background: var(--gradient-soft);
    color: var(--primary);
    font-size: 0.8rem;
}

.proof-avatar-group span:first-child {
    margin-left: 0;
}

.hero-visual-wrap {
    position: relative;
    max-width: 690px;
    margin-left: auto;
    perspective: 1400px;
}

.hero-visual {
    position: relative;
    min-height: 600px;
    padding: 70px 22px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 42px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(241, 245, 249, 0.66));
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(22px);
    transform-style: preserve-3d;
    transition: transform 200ms ease, border-color var(--transition), background var(--transition);
}

html[data-theme="dark"] .hero-visual {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.86), rgba(8, 19, 35, 0.72));
}

.visual-glow {
    position: absolute;
    inset: 14% 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.25), rgba(6, 182, 212, 0.1) 45%, transparent 70%);
    filter: blur(24px);
    animation: visual-glow 5s ease-in-out infinite;
}

@keyframes visual-glow {
    50% { transform: scale(1.08); opacity: 0.75; }
}

.dashboard-shell {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 25px;
    background: #0b1728;
    box-shadow: 0 24px 70px rgba(3, 10, 24, 0.36);
    transform: translateZ(26px);
}

.dashboard-topbar {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
}

.dashboard-dots {
    display: flex;
    gap: 6px;
}

.dashboard-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.26);
}

.dashboard-dots span:first-child { background: #fb7185; }
.dashboard-dots span:nth-child(2) { background: #facc15; }
.dashboard-dots span:last-child { background: #34d399; }

.dashboard-chip {
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(6, 182, 212, 0.12);
    color: #67e8f9;
    font-size: 0.61rem;
    font-weight: 700;
}

.dashboard-main {
    display: grid;
    grid-template-columns: 58px 1fr;
}

.dashboard-sidebar {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    padding: 15px 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.sidebar-logo,
.sidebar-item {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 11px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.78rem;
}

.sidebar-logo {
    margin-bottom: 4px;
    background: var(--gradient);
    color: #fff;
}

.sidebar-item.is-active {
    background: rgba(37, 99, 235, 0.19);
    color: #93c5fd;
}

.dashboard-content {
    padding: 18px;
}

.dashboard-headline,
.panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.dashboard-headline {
    margin-bottom: 17px;
}

.dashboard-headline span,
.panel-heading span,
.metric-card span,
.metric-card small {
    display: block;
    color: #94a3b8;
    font-size: 0.62rem;
}

.dashboard-headline strong,
.panel-heading strong {
    display: block;
    color: #f8fafc;
    font-family: "Poppins", sans-serif;
    font-size: 0.82rem;
}

.health-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    color: #6ee7b7 !important;
    font-weight: 700;
}

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

.metric-card {
    min-height: 104px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
}

.metric-card strong {
    display: block;
    margin: 8px 0 4px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
}

.metric-primary {
    border-color: rgba(37, 99, 235, 0.22);
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.18), rgba(6, 182, 212, 0.08));
}

.performance-panel {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
}

.panel-legend {
    display: flex;
    gap: 8px;
}

.panel-legend span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.panel-legend i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #60a5fa;
}

.panel-legend span:last-child i {
    background: #22d3ee;
}

.chart-bars {
    display: flex;
    height: 116px;
    align-items: end;
    gap: 8px;
    padding-top: 18px;
}

.chart-bars .bar {
    position: relative;
    width: 100%;
    min-width: 10px;
    border-radius: 6px 6px 2px 2px;
    background: linear-gradient(to top, rgba(37, 99, 235, 0.4), #60a5fa);
    animation: bar-rise 1.1s ease both;
}

.chart-bars .bar::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 44%;
    content: "";
    border-radius: inherit;
    background: linear-gradient(to top, rgba(6, 182, 212, 0.36), #22d3ee);
}

.bar-1 { height: 36%; }
.bar-2 { height: 52%; }
.bar-3 { height: 44%; }
.bar-4 { height: 68%; }
.bar-5 { height: 61%; }
.bar-6 { height: 82%; }
.bar-7 { height: 76%; }
.bar-8 { height: 94%; }

@keyframes bar-rise {
    from { transform: scaleY(0); transform-origin: bottom; }
}

.floating-card,
.floating-badge {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: color-mix(in srgb, var(--surface) 84%, transparent);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
    animation: float-card 5s ease-in-out infinite;
    transform: translateZ(40px);
}

.floating-card {
    min-width: 158px;
    padding: 12px 14px;
    border-radius: 16px;
}

.floating-card strong,
.floating-card span {
    display: block;
}

.floating-card strong {
    color: var(--text);
    font-size: 0.78rem;
}

.floating-card div > span {
    color: var(--text-muted);
    font-size: 0.65rem;
}

.floating-icon {
    display: grid !important;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    place-items: center;
    border-radius: 12px;
    color: #fff !important;
}

.icon-google { background: linear-gradient(135deg, #4285f4, #34a853); }
.icon-analytics { background: linear-gradient(135deg, #f59e0b, #fb923c); }
.icon-seo { background: linear-gradient(135deg, #2563eb, #06b6d4); }

.floating-card-google {
    top: 22px;
    left: -28px;
}

.floating-card-analytics {
    right: -34px;
    bottom: 52px;
    animation-delay: -1.4s;
}

.floating-card-seo {
    bottom: 8px;
    left: 62px;
    animation-delay: -2.3s;
}

.floating-badge {
    top: 46px;
    right: -10px;
    padding: 9px 12px;
    border-radius: 999px;
    color: var(--success);
    font-size: 0.7rem;
    font-weight: 800;
    animation-delay: -0.8s;
}

@keyframes float-card {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -10px; }
}

.scroll-cue {
    position: absolute;
    z-index: 3;
    bottom: 25px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.scroll-cue i {
    animation: scroll-bounce 1.6s ease-in-out infinite;
}

@keyframes scroll-bounce {
    50% { transform: translateY(5px); }
}

.trust-section {
    position: relative;
    z-index: 4;
    margin-top: -12px;
    padding: 0 0 30px;
}

.trust-grid {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: color-mix(in srgb, var(--surface) 88%, transparent);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
    grid-template-columns: repeat(4, 1fr);
}

.trust-stat {
    position: relative;
    display: grid;
    min-height: 168px;
    align-content: center;
    padding: 26px;
    text-align: center;
}

.trust-stat:not(:last-child)::after {
    position: absolute;
    top: 22%;
    right: 0;
    width: 1px;
    height: 56%;
    content: "";
    background: var(--border);
}

.stat-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    margin: 0 auto 10px;
    border-radius: 12px;
    background: var(--gradient-soft);
    color: var(--primary);
}

.stat-value {
    display: flex;
    justify-content: center;
    color: var(--text);
    font-family: "Poppins", sans-serif;
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 800;
    line-height: 1;
}

.trust-stat p {
    margin: 8px 0 0;
    color: var(--text-muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.about-section {
    overflow: hidden;
}

.about-visual-card {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 34px;
    background: var(--surface);
    box-shadow: var(--shadow-md);
    perspective: 1000px;
    transition: transform 200ms ease;
}

.about-visual-card img {
    width: 100%;
    border-radius: 24px;
}

.about-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: color-mix(in srgb, var(--surface) 86%, transparent);
    color: var(--text);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(14px);
    font-size: 0.75rem;
    font-weight: 700;
}

.about-badge i {
    color: var(--primary);
}

.about-badge-one {
    top: 11%;
    right: -28px;
}

.about-badge-two {
    bottom: 10%;
    left: -30px;
}

.about-copy p {
    font-size: 1.02rem;
}

.career-highlight-grid {
    display: grid;
    gap: 14px;
    margin: 28px 0 30px;
    grid-template-columns: repeat(2, 1fr);
}

.career-highlight {
    display: flex;
    gap: 13px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.career-highlight:hover {
    border-color: rgba(37, 99, 235, 0.28);
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.career-highlight > i {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border-radius: 12px;
    background: var(--gradient-soft);
    color: var(--primary);
}

.career-highlight strong,
.career-highlight span {
    display: block;
}

.career-highlight strong {
    margin-bottom: 4px;
    color: var(--text);
    font-size: 0.86rem;
}

.career-highlight span {
    color: var(--text-muted);
    font-size: 0.74rem;
    line-height: 1.45;
}

.about-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}

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

.skill-card {
    position: relative;
    padding: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
    transition: transform 200ms ease, border-color var(--transition), box-shadow var(--transition);
}

.skill-card::before {
    position: absolute;
    top: -90px;
    right: -70px;
    width: 150px;
    height: 150px;
    content: "";
    border-radius: 50%;
    background: var(--gradient-soft);
    transition: transform 450ms ease;
}

.skill-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: var(--shadow-md);
}

.skill-card:hover::before {
    transform: scale(1.25);
}

.skill-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.skill-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 15px;
    background: var(--gradient-soft);
    color: var(--primary);
    font-size: 1.2rem;
}

.skill-score {
    color: var(--primary);
    font-family: "Poppins", sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
}

.skill-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
    font-size: 1.12rem;
}

.skill-card p {
    position: relative;
    z-index: 1;
    min-height: 70px;
    margin-bottom: 18px;
    font-size: 0.83rem;
}

.skill-track {
    position: relative;
    z-index: 1;
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--surface-deep);
}

.skill-progress {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: var(--gradient);
    box-shadow: 0 0 16px rgba(37, 99, 235, 0.28);
    transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.skill-progress.is-visible { width: var(--progress); }
.progress-90 { --progress: 90%; }
.progress-91 { --progress: 91%; }
.progress-92 { --progress: 92%; }
.progress-93 { --progress: 93%; }
.progress-94 { --progress: 94%; }
.progress-95 { --progress: 95%; }
.progress-96 { --progress: 96%; }

.experience-layout {
    display: grid;
    gap: 54px;
    grid-template-columns: 0.82fr 1.6fr;
}

.experience-summary {
    position: relative;
}

.experience-summary-card {
    position: sticky;
    top: calc(var(--header-height) + 30px);
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 26px;
    background:
        linear-gradient(150deg, rgba(37, 99, 235, 0.09), rgba(6, 182, 212, 0.05)),
        var(--surface);
    box-shadow: var(--shadow-md);
}

.experience-summary-card::after {
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 190px;
    height: 190px;
    content: "";
    border-radius: 50%;
    background: var(--gradient-soft);
}

.summary-label {
    display: block;
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.experience-summary-card > strong {
    display: block;
    margin-bottom: 12px;
    color: var(--text);
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    letter-spacing: -0.06em;
}

.summary-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.summary-stack span,
.timeline-tags span {
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    color: var(--text-soft);
    font-size: 0.7rem;
    font-weight: 700;
}

.timeline {
    position: relative;
}

.timeline::before {
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 12px;
    width: 2px;
    content: "";
    background: linear-gradient(to bottom, var(--primary), var(--accent), rgba(6, 182, 212, 0.08));
}

.timeline-item {
    position: relative;
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
    grid-template-columns: 26px 1fr;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: relative;
    z-index: 2;
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    margin-top: 28px;
    border: 2px solid rgba(37, 99, 235, 0.26);
    border-radius: 50%;
    background: var(--background);
}

.timeline-marker span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gradient);
    box-shadow: 0 0 18px rgba(37, 99, 235, 0.46);
}

.timeline-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.timeline-card:hover {
    border-color: rgba(37, 99, 235, 0.28);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.timeline-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.timeline-meta span:first-child {
    color: var(--primary);
}

.timeline-card h3 {
    margin-bottom: 4px;
    font-size: 1.36rem;
}

.timeline-card h4 {
    margin-bottom: 13px;
    color: var(--text-soft);
    font-family: "Inter", sans-serif;
    font-size: 0.93rem;
    font-weight: 700;
    letter-spacing: 0;
}

.timeline-card p {
    margin-bottom: 18px;
    font-size: 0.9rem;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.section-dark {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 12%, rgba(37, 99, 235, 0.24), transparent 28%),
        radial-gradient(circle at 90% 70%, rgba(6, 182, 212, 0.16), transparent 28%),
        #081323;
}

.section-heading-light h2,
.section-heading-light p {
    color: #f8fafc;
}

.section-heading-light p {
    color: #94a3b8;
}

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

.service-card {
    position: relative;
    min-height: 310px;
    padding: 26px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(16px);
    transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.service-card::after {
    position: absolute;
    right: -36px;
    bottom: -55px;
    width: 130px;
    height: 130px;
    content: "";
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.22), transparent 68%);
    opacity: 0;
    transition: opacity var(--transition), transform 500ms ease;
}

.service-card:hover {
    border-color: rgba(34, 211, 238, 0.32);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    transform: translateY(-8px);
}

.service-card:hover::after {
    opacity: 1;
    transform: scale(1.3);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.18);
    font-family: "Poppins", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
}

.service-icon {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    margin-bottom: 24px;
    border: 1px solid rgba(96, 165, 250, 0.18);
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.24), rgba(6, 182, 212, 0.15));
    color: #67e8f9;
    font-size: 1.2rem;
}

.service-card h3 {
    margin-bottom: 12px;
    color: #f8fafc;
    font-size: 1.12rem;
}

.service-card p {
    margin-bottom: 24px;
    color: #94a3b8;
    font-size: 0.84rem;
}

.service-card a {
    position: absolute;
    right: 26px;
    bottom: 24px;
    left: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #cbd5e1;
    font-size: 0.78rem;
    font-weight: 700;
}

.service-card a i {
    transition: transform var(--transition), color var(--transition);
}

.service-card:hover a,
.service-card:hover a i {
    color: #67e8f9;
}

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

.heading-row {
    margin-bottom: 48px;
}

.heading-row .section-heading {
    margin-bottom: 0;
}

.section-side-copy {
    margin-bottom: 0;
    font-size: 0.96rem;
}

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

.hire-card {
    position: relative;
    min-height: 340px;
    padding: 26px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.hire-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
}

.hire-card-featured {
    background:
        linear-gradient(145deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.04)),
        var(--surface);
}

.hire-card-featured-alt {
    background:
        linear-gradient(145deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.04)),
        var(--surface);
}

.hire-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 15px;
    background: var(--gradient-soft);
    color: var(--primary);
}

.hire-label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hire-card h3 {
    margin-bottom: 10px;
    font-size: 1.28rem;
}

.hire-card p {
    max-width: 310px;
    margin-bottom: 0;
    font-size: 0.86rem;
}

.hire-visual {
    position: absolute;
    right: 24px;
    bottom: 20px;
    left: 24px;
    height: 82px;
}

.visual-strategy {
    display: flex;
    align-items: end;
    justify-content: space-around;
}

.visual-strategy::before {
    position: absolute;
    right: 8%;
    bottom: 17px;
    left: 8%;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: rotate(-7deg);
}

.visual-strategy span {
    position: relative;
    z-index: 1;
    display: block;
    width: 16px;
    height: 16px;
    border: 4px solid var(--surface);
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
}

.visual-strategy span:nth-child(2) { margin-bottom: 10px; background: #3b82f6; }
.visual-strategy span:nth-child(3) { margin-bottom: 23px; background: var(--accent); }

.visual-data {
    display: flex;
    align-items: end;
    gap: 10px;
    padding: 0 18px;
}

.visual-data i {
    display: block;
    flex: 1;
    border-radius: 9px 9px 3px 3px;
    background: var(--gradient);
    opacity: 0.78;
}

.visual-data i:nth-child(1) { height: 28%; }
.visual-data i:nth-child(2) { height: 46%; }
.visual-data i:nth-child(3) { height: 68%; }
.visual-data i:nth-child(4) { height: 92%; }

.visual-roi {
    display: grid;
    place-items: center;
}

.visual-roi span:first-child {
    width: 76px;
    height: 76px;
    border: 10px solid var(--surface-deep);
    border-top-color: var(--primary);
    border-right-color: var(--accent);
    border-radius: 50%;
    transform: rotate(20deg);
}

.visual-roi span:last-child {
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: var(--gradient);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.visual-ai {
    display: grid;
    place-items: center;
}

.visual-ai::before,
.visual-ai::after {
    position: absolute;
    width: 64%;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.35), transparent);
}

.visual-ai::after { transform: rotate(90deg); }

.visual-ai span {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gradient);
    box-shadow: 0 0 18px rgba(37, 99, 235, 0.5);
}

.visual-ai span:nth-child(1) { top: 8px; left: 28%; }
.visual-ai span:nth-child(2) { top: 20px; right: 22%; }
.visual-ai span:nth-child(3) { bottom: 10px; left: 20%; }
.visual-ai span:nth-child(4) { right: 34%; bottom: 5px; }

.visual-optimise {
    display: grid;
    place-items: center;
}

.visual-optimise span {
    position: relative;
    width: 80%;
    height: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--surface-deep);
}

.visual-optimise span::after {
    position: absolute;
    inset: 0;
    width: 78%;
    content: "";
    border-radius: inherit;
    background: var(--gradient);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.visual-leadership {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.visual-leadership i {
    display: block;
    width: 34px;
    height: 34px;
    border: 5px solid var(--surface);
    border-radius: 50%;
    background: var(--gradient);
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.15);
}

.visual-leadership i:nth-child(2) {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--success), var(--accent));
}

.tools-section {
    padding: 110px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.marquee-shell {
    position: relative;
    display: grid;
    gap: 16px;
    overflow: hidden;
}

.marquee-shell::before,
.marquee-shell::after {
    position: absolute;
    z-index: 3;
    top: 0;
    bottom: 0;
    width: 150px;
    content: "";
    pointer-events: none;
}

.marquee-shell::before {
    left: 0;
    background: linear-gradient(90deg, var(--surface), transparent);
}

.marquee-shell::after {
    right: 0;
    background: linear-gradient(-90deg, var(--surface), transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 14px;
    will-change: transform;
}

.marquee-track-left {
    animation: marquee-left 38s linear infinite;
}

.marquee-track-right {
    animation: marquee-right 42s linear infinite;
}

.marquee-shell:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-left {
    to { transform: translateX(-50%); }
}

@keyframes marquee-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.tool-chip {
    display: flex;
    min-width: max-content;
    align-items: center;
    gap: 10px;
    padding: 12px 17px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--background);
    color: var(--text);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    font-size: 0.82rem;
    font-weight: 700;
}

.tool-chip i {
    color: var(--primary);
    font-size: 1rem;
}

.testimonial-swiper {
    overflow: visible;
}

.swiper-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.swiper-button-custom {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
    color: var(--text);
    transition: transform var(--transition), color var(--transition), border-color var(--transition), background var(--transition);
}

.swiper-button-custom:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.testimonial-card {
    min-height: 330px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.05);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    color: #f59e0b;
    font-size: 0.82rem;
}

.testimonial-card blockquote {
    margin: 0 0 28px;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.75;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.person-avatar {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 14px;
    background: var(--gradient);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
}

.testimonial-person strong,
.testimonial-person span {
    display: block;
}

.testimonial-person strong {
    color: var(--text);
    font-size: 0.86rem;
}

.testimonial-person div > span {
    color: var(--text-muted);
    font-size: 0.72rem;
}

.testimonial-pagination {
    position: static !important;
    margin-top: 28px;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--text-muted);
    opacity: 0.36;
    transition: width var(--transition), opacity var(--transition), background var(--transition);
}

.testimonial-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 999px;
    background: var(--gradient);
    opacity: 1;
}

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

.blog-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
    border-color: rgba(37, 99, 235, 0.28);
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
}

.blog-visual {
    position: relative;
    display: flex;
    min-height: 220px;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px;
    overflow: hidden;
}

.blog-visual::before,
.blog-visual::after {
    position: absolute;
    content: "";
    transition: transform 600ms ease;
}

.blog-visual::before {
    inset: 15%;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 30px;
    transform: rotate(12deg);
}

.blog-visual::after {
    right: -50px;
    bottom: -60px;
    width: 190px;
    height: 190px;
    border: 28px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.blog-card:hover .blog-visual::before {
    transform: rotate(4deg) scale(1.08);
}

.blog-card:hover .blog-visual::after {
    transform: scale(1.14);
}

.blog-visual-one { background: linear-gradient(135deg, #1d4ed8, #06b6d4); }
.blog-visual-two { background: linear-gradient(135deg, #0f172a, #2563eb); }
.blog-visual-three { background: linear-gradient(135deg, #7c3aed, #06b6d4); }

.blog-category {
    position: relative;
    z-index: 2;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.blog-visual > i {
    position: relative;
    z-index: 2;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transition: transform var(--transition), background var(--transition);
}

.blog-card:hover .blog-visual > i {
    background: rgba(255, 255, 255, 0.25);
    transform: translate(3px, -3px);
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 13px;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 700;
}

.blog-content h3 {
    margin-bottom: 10px;
    font-size: 1.16rem;
}

.blog-content h3 a:hover {
    color: var(--primary);
}

.blog-content p {
    margin-bottom: 0;
    font-size: 0.84rem;
}

.contact-section {
    padding: 40px 0 110px;
}

.contact-panel {
    position: relative;
    display: grid;
    min-height: 430px;
    align-items: center;
    gap: 54px;
    padding: 64px;
    overflow: hidden;
    border-radius: 32px;
    background:
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.38), transparent 28%),
        radial-gradient(circle at 90% 85%, rgba(6, 182, 212, 0.28), transparent 32%),
        #081323;
    box-shadow: 0 35px 90px rgba(8, 19, 35, 0.28);
    grid-template-columns: 1.4fr 0.9fr;
}

.contact-grid {
    opacity: 0.18;
    mask-image: none;
}

.contact-orb-one {
    top: -100px;
    right: 28%;
    width: 220px;
    height: 220px;
    background: rgba(37, 99, 235, 0.28);
}

.contact-orb-two {
    bottom: -120px;
    left: 18%;
    width: 240px;
    height: 240px;
    background: rgba(6, 182, 212, 0.2);
}

.contact-copy,
.contact-actions {
    position: relative;
    z-index: 2;
}

.contact-copy h2 {
    max-width: 760px;
    margin-bottom: 18px;
    color: #fff;
    font-size: clamp(2.15rem, 4.6vw, 4.25rem);
}

.contact-copy p {
    max-width: 700px;
    margin-bottom: 0;
    color: #cbd5e1;
    font-size: 1rem;
}

.contact-actions {
    display: grid;
    gap: 12px;
}

.btn-white {
    border: 1px solid #fff;
    background: #fff;
    color: #0f172a;
}

.btn-white:hover {
    color: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(255, 255, 255, 0.16);
}

.btn-contact-ghost {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    backdrop-filter: blur(14px);
}

.btn-contact-ghost:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: translateY(-3px);
}

.btn-contact-link {
    min-height: 44px;
    border: 0;
    color: #cbd5e1;
}

.btn-contact-link:hover {
    color: #67e8f9;
}

.site-footer {
    padding: 78px 0 0;
    border-top: 1px solid var(--border);
    background: var(--surface);
}

.footer-top {
    display: grid;
    gap: 42px;
    padding-bottom: 54px;
    grid-template-columns: 1.5fr 0.7fr 0.9fr 1.1fr;
}

.footer-brand-block p {
    max-width: 390px;
    margin: 18px 0 20px;
    font-size: 0.88rem;
}

.footer-logo {
    font-size: 1.9rem;
}

.footer-socials {
    display: flex;
    gap: 9px;
}

.footer-socials a {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--background);
    color: var(--text-soft);
    transition: transform var(--transition), color var(--transition), border-color var(--transition), background var(--transition);
}

.footer-socials a:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-column h2 {
    margin-bottom: 18px;
    font-size: 0.95rem;
}

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

.footer-column li,
.footer-column a,
.footer-column p,
.footer-column span {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-contact-column p {
    margin-bottom: 14px;
}

.footer-contact-column .footer-email {
    display: inline-block;
    margin-bottom: 7px;
    color: var(--text);
    font-weight: 700;
}

.footer-contact-column span {
    display: block;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid var(--border);
}

.footer-bottom p,
.footer-bottom a {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.72rem;
}

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

.back-to-top {
    position: fixed;
    z-index: 900;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 14px;
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    color: #fff;
    box-shadow: 0 18px 38px rgba(37, 99, 235, 0.44);
    transform: translateY(-3px);
}

.ripple-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.38);
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    animation: ripple-expand 600ms ease-out forwards;
}

@keyframes ripple-expand {
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(10);
    }
}

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