:root {
    --bg: #0b1020;
    --bg-secondary: #11172b;
    --panel: rgba(255, 255, 255, 0.08);
    --panel-solid: #151d34;
    --text: #f3f7ff;
    --text-muted: #b6c0d4;
    --border: rgba(255, 255, 255, 0.12);
    --primary: #7c9cff;
    --primary-strong: #5e84ff;
    --accent: #67e8f9;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    --header-bg: rgba(11, 16, 32, 0.65);
    --success: #8ef0c9;
}

body.light-mode {
    --bg: #f4f7fb;
    --bg-secondary: #ffffff;
    --panel: rgba(255, 255, 255, 0.72);
    --panel-solid: #ffffff;
    --text: #131927;
    --text-muted: #5f6b7f;
    --border: rgba(18, 25, 39, 0.08);
    --primary: #2f5cff;
    --primary-strong: #2248d8;
    --accent: #0ea5e9;
    --shadow: 0 18px 50px rgba(29, 41, 57, 0.10);
    --header-bg: rgba(255, 255, 255, 0.72);
    --success: #059669;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(124, 156, 255, 0.18), transparent 30%),
        radial-gradient(circle at bottom right, rgba(103, 232, 249, 0.16), transparent 25%),
        var(--bg);
    color: var(--text);
    transition: background 0.35s ease, color 0.35s ease;
    overflow-x: hidden;
}

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

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

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

/* Background orbs */
.site-bg-orb {
    position: fixed;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.28;
    z-index: -1;
    pointer-events: none;
}

.orb-1 {
    width: 320px;
    height: 320px;
    background: var(--primary);
    top: 100px;
    left: -80px;
}

.orb-2 {
    width: 280px;
    height: 280px;
    background: var(--accent);
    bottom: 60px;
    right: -70px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--header-bg);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
    border-color: var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

.brand {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.main-nav {
    display: flex;
    gap: 24px;
}

.main-nav a {
    color: var(--text-muted);
    font-weight: 600;
    transition: color 0.25s ease;
}

.main-nav a:hover,
.active-nav {
    color: var(--text) !important;
}

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

.theme-toggle,
.mobile-menu-btn {
    border: 1px solid var(--border);
    background: var(--panel);
    color: var(--text);
    border-radius: 12px;
    cursor: pointer;
}

.theme-toggle {
    width: 46px;
    height: 46px;
    font-size: 1rem;
}

.mobile-menu-btn {
    display: none;
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
}

.mobile-nav {
    display: none;
    padding: 0 20px 20px;
    flex-direction: column;
    gap: 14px;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}

.mobile-nav a {
    font-weight: 600;
    color: var(--text-muted);
}

.mobile-btn {
    width: fit-content;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #fff;
    box-shadow: 0 12px 30px rgba(92, 127, 255, 0.25);
}

.btn-outline {
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
}

.full-width-btn {
    width: 100%;
}

/* Shared type */
.eyebrow,
.mini-label {
    display: inline-block;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.eyebrow {
    margin-bottom: 16px;
}

.mini-label {
    margin-bottom: 10px;
}

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

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

.section-heading h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin: 0 0 14px;
}

.section-heading p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

/* Shared sections */
.logo-strip-section,
.services-section,
.feature-band,
.reviews-section,
.cta-section,
.services-directory-section,
.contact-section,
.about-story-section,
.about-pillars-section,
.about-process-clean {
    padding: 90px 0;
}

/* Shared cards */
.stat-card,
.service-card,
.review-card,
.feature-item,
.cta-box,
.contact-form-card,
.empty-state,
.about-side-stat,
.logo-item,
.about-floating-card {
    border: 1px solid var(--border);
    background: var(--panel);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

/* Homepage hero */
.hero-section {
    padding: 72px 0 50px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 42px;
    align-items: center;
    min-height: calc(100vh - 120px);
}

.hero-copy h1 {
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    line-height: 1.02;
    margin: 0 0 20px;
    max-width: 720px;
}

.hero-copy p {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 0 28px;
}

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

.stat-card {
    padding: 18px;
    border-radius: 20px;
}

.stat-card strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 8px;
}

.stat-card span {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.glass-panel {
    width: min(100%, 520px);
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    transform-style: preserve-3d;
}

.panel-top {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.red { background: #ff6b6b; }
.yellow { background: #ffd166; }
.green { background: #7bd88f; }

.screen-card {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: var(--panel-solid);
    margin-bottom: 14px;
    transition: transform 0.35s ease, border-color 0.25s ease;
}

.screen-card:last-child {
    margin-bottom: 0;
}

.screen-card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(124, 156, 255, 0.35);
}

.screen-label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.screen-card h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.screen-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Logo strip */
.logo-marquee {
    overflow: hidden;
    padding: 16px 0 4px;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scrollLogos 28s linear infinite;
}

.logo-item {
    min-width: 190px;
    height: 78px;
    margin: 0 12px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 800;
    letter-spacing: 0.04em;
}

.logo-image-item {
    padding: 12px 18px;
}

.client-logo-img {
    max-width: 140px;
    max-height: 46px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.9;
    transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.client-logo-img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.03);
}

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

/* Services / reviews / feature band */
.services-grid,
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card,
.review-card {
    padding: 26px;
    border-radius: 24px;
}

.service-tag {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(124, 156, 255, 0.15);
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}

.service-card h3 {
    margin: 0 0 12px;
    font-size: 1.25rem;
}

.service-card p,
.review-text,
.feature-copy p,
.feature-item span,
.about-side-stat strong,
.about-story-copy p {
    color: var(--text-muted);
    line-height: 1.8;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
    color: #f5c451;
    font-size: 1rem;
    line-height: 1;
}

.review-author {
    margin-top: 18px;
}

.review-author strong {
    display: block;
    margin-bottom: 4px;
}

.review-author span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.verified-note {
    margin-top: 24px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.7;
}

.section-cta {
    margin-top: 28px;
}

.feature-band {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.03), transparent);
}

.feature-band-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: start;
}

.feature-copy h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin: 0 0 14px;
}

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

.feature-item {
    padding: 22px;
    border-radius: 22px;
}

.feature-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

/* CTA */
.cta-box {
    padding: 34px;
    border-radius: 30px;
    text-align: center;
}

.cta-box h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin: 0 0 14px;
}

.cta-box p {
    max-width: 720px;
    margin: 0 auto 24px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Generic page hero */
.page-hero {
    padding: 120px 0 40px;
}

.page-title {
    font-size: clamp(2.3rem, 4vw, 4rem);
    margin: 0 0 16px;
    line-height: 1.05;
}

.page-intro {
    max-width: 760px;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

/* Products & Services */
.service-category-block {
    margin-bottom: 54px;
}

.category-header {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 24px;
}

.category-header h2 {
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 2.7vw, 2.5rem);
}

.category-header p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.8;
}

.category-count {
    width: 74px;
    height: 74px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    background: var(--panel);
}

.service-price {
    margin-top: 18px;
    font-weight: 800;
    color: var(--accent);
}

.empty-state {
    padding: 24px;
    border-radius: 20px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.contact-copy h2 {
    margin-top: 0;
    font-size: clamp(2rem, 3vw, 2.7rem);
}

.contact-copy p {
    color: var(--text-muted);
    line-height: 1.8;
}

.contact-form-card {
    border-radius: 28px;
    padding: 28px;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    color: var(--text);
    border-radius: 14px;
    padding: 14px 16px;
    font: inherit;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(124, 156, 255, 0.45);
    box-shadow: 0 0 0 4px rgba(124, 156, 255, 0.12);
}

.form-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 600;
}

.success-alert {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.24);
    color: var(--success);
}

.error-alert {
    background: rgba(239, 68, 68, 0.10);
    border: 1px solid rgba(239, 68, 68, 0.22);
    color: #ff8e8e;
}

/* About page */
.about-hero-clean {
    padding: 90px 0 40px;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
}

.about-hero-clean-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
    width: 100%;
}

.about-clean-title {
    font-size: clamp(2.3rem, 4vw, 4.2rem);
    line-height: 1.02;
    margin: 0 0 16px;
    max-width: 700px;
}

.about-clean-intro {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 0 22px;
}

.about-hero-clean-copy .hero-actions {
    margin-bottom: 0;
}

.about-hero-clean-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
    align-content: center;
}

.about-floating-card {
    position: relative;
    width: 100%;
    max-width: 360px;
    padding: 22px;
    border-radius: 24px;
    transition: transform 0.35s ease, border-color 0.25s ease;
    will-change: transform;
}

.about-floating-card:hover {
    border-color: rgba(124, 156, 255, 0.35);
}

.float-card-one,
.float-card-two,
.float-card-three {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
}

.float-card-one {
    justify-self: start;
}

.float-card-two {
    justify-self: center;
}

.float-card-three {
    justify-self: end;
}

.about-floating-card strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.about-floating-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.about-story-wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 34px;
    align-items: start;
}

.about-story-copy h2 {
    font-size: clamp(2.1rem, 3.6vw, 3.4rem);
    margin: 0 0 16px;
}

.about-story-copy p {
    line-height: 1.95;
    font-size: 1.02rem;
    margin: 0 0 18px;
    max-width: 780px;
}

.about-story-side {
    display: grid;
    gap: 16px;
}

.about-side-stat {
    padding: 24px;
    border-radius: 24px;
}

.about-side-stat span {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.about-process-clean-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.about-timeline {
    position: relative;
    display: grid;
    gap: 18px;
    margin-top: 18px;
}

.about-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 23px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(124, 156, 255, 0.5), rgba(103, 232, 249, 0.18));
}

.about-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 18px;
    align-items: start;
}

.about-timeline-dot {
    width: 18px;
    height: 18px;
    margin-top: 8px;
    margin-left: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 0 8px rgba(124, 156, 255, 0.10);
    position: relative;
    z-index: 1;
}

.about-timeline-content {
    padding: 24px 26px;
    border-radius: 24px;
}

.about-timeline-content h3 {
    margin: 0 0 10px;
    font-size: 1.28rem;
}

.about-timeline-content p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.85;
}

/* Footer */
.site-footer {
    padding: 34px 0 20px;
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 24px;
}

.footer-brand {
    margin-bottom: 12px;
}

.footer-text {
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 500px;
}

.site-footer h4 {
    margin-top: 0;
    margin-bottom: 12px;
}

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

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

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--text);
}

.footer-bottom {
    padding-top: 18px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.94rem;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.12s;
}

.delay-2 {
    transition-delay: 0.24s;
}

/* Responsive */
@media (max-width: 1080px) {
    .hero-grid,
    .feature-band-grid,
    .footer-grid,
    .services-grid,
    .reviews-grid,
    .about-hero-clean-grid,
    .about-story-wrap {
        grid-template-columns: 1fr;
    }

    .contact-grid,
    .category-header {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: auto;
    }

    .about-hero-clean {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .about-clean-title {
        max-width: 100%;
    }

    .about-clean-intro {
        max-width: 100%;
    }

    .about-floating-card,
    .float-card-one,
    .float-card-two,
    .float-card-three {
        justify-self: stretch;
        max-width: 100%;
    }
}

@media (max-width: 780px) {
    .main-nav,
    .nav-actions .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

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

    .hero-section,
    .logo-strip-section,
    .services-section,
    .feature-band,
    .reviews-section,
    .cta-section,
    .services-directory-section,
    .contact-section,
    .about-story-section,
    .about-process-clean {
        padding: 70px 0;
    }

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

    .cta-box {
        padding: 26px;
    }

    .about-hero-clean {
        padding: 70px 0 30px;
    }

    .about-clean-title {
        font-size: 2.1rem;
    }

    .about-clean-intro {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .about-timeline-item {
        grid-template-columns: 1fr;
    }

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

    .about-timeline-dot {
        margin-left: 0;
    }
}
.contact-v2-hero {
    padding: 120px 0 35px;
}

.contact-v2-hero-copy {
    max-width: 860px;
}

.contact-v2-hero-copy h1 {
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.98;
    margin: 0 0 18px;
    max-width: 820px;
}

.contact-v2-lead {
    max-width: 760px;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 1.06rem;
}

.contact-v2-section {
    padding: 30px 0 90px;
}

.contact-v2-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: start;
}

.contact-v2-info {
    display: grid;
    gap: 26px;
}

.contact-v2-intro h2 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
}

.contact-v2-intro p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.9;
    max-width: 680px;
}

.contact-v2-points {
    display: grid;
    gap: 16px;
}

.contact-v2-point {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: var(--panel);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.contact-v2-point strong {
    display: block;
    line-height: 1.7;
    font-size: 1rem;
}

.contact-v2-form-wrap {
    position: relative;
}

.contact-v2-form-card {
    padding: 30px;
    border-radius: 30px;
    border: 1px solid var(--border);
    background: var(--panel);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
}

.contact-v2-form-head {
    margin-bottom: 24px;
}

.contact-v2-form-head h3 {
    margin: 0 0 10px;
    font-size: 1.7rem;
}

.contact-v2-form-head p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-v2-form {
    display: grid;
    gap: 18px;
}

.contact-v2-form-row {
    display: grid;
    gap: 18px;
}

.contact-v2-form-row.two-col {
    grid-template-columns: 1fr 1fr;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    font-weight: 700;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    color: var(--text);
    border-radius: 14px;
    padding: 14px 16px;
    font: inherit;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    appearance: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 170px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(124, 156, 255, 0.45);
    box-shadow: 0 0 0 4px rgba(124, 156, 255, 0.12);
}

.form-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 600;
}

.success-alert {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.24);
    color: var(--success);
}

.error-alert {
    background: rgba(239, 68, 68, 0.10);
    border: 1px solid rgba(239, 68, 68, 0.22);
    color: #ff8e8e;
}

@media (max-width: 1080px) {
    .contact-v2-grid,
    .contact-v2-form-row.two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .contact-v2-hero {
        padding: 95px 0 25px;
    }

    .contact-v2-hero-copy h1 {
        font-size: 2.5rem;
    }

    .contact-v2-section {
        padding: 24px 0 70px;
    }

    .contact-v2-form-card {
        padding: 24px;
        border-radius: 24px;
    }
}
.disclaimer-section {
    padding: 20px 0 70px;
}

.disclaimer-card {
    max-width: 980px;
    margin: 0 auto;
    padding: 22px 26px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: linear-gradient(
        135deg,
        rgba(124, 156, 255, 0.12),
        rgba(103, 232, 249, 0.06)
    );
    box-shadow: var(--shadow);
}

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

.disclaimer-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.8;
}
.category-description-standard {
    max-width: 900px;
    margin-top: 14px;
}

.category-description-standard p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.85;
}

.category-description-card {
    max-width: 940px;
    margin-top: 18px;
    padding: 26px 28px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: linear-gradient(
        135deg,
        rgba(124, 156, 255, 0.12),
        rgba(255, 255, 255, 0.03)
    );
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.category-disclaimer-card {
    border-color: rgba(124, 156, 255, 0.22);
}

.category-description-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.category-description-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.85;
    font-size: 1rem;
}

.category-description-card p br,
.category-description-standard p br,
.service-card p br {
    display: block;
    content: "";
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .category-description-card {
        padding: 22px 20px;
        border-radius: 20px;
    }
}