/* =====================================================
   HAMILTON SITEWORKS — COMPLETE STYLESHEET
   ===================================================== */

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


/* =====================================================
   RESET
   ===================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #0b132b;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

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

section {
    position: relative;
}

h1,
h2,
h3,
h4 {
    line-height: 1.1;
}

h2 {
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 900;
    text-align: center;
    color: #0b132b;
}

.section-intro {
    max-width: 760px;
    margin-top: 18px;
    color: #64748b;
    font-size: 18px;
    line-height: 1.7;
}

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



/* =====================================================
   NAVBAR
   ===================================================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid #e8eef7;
    backdrop-filter: blur(18px);
}

.nav-content {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo::first-letter {
    color: #0b132b;
}

.nav-content nav {
    display: flex;
    align-items: center;
    gap: 38px;
}

.nav-content nav a {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    transition: color 0.25s ease;
}

.nav-content nav a:hover {
    color: #0969f5;
}


/* =====================================================
   HERO
   ===================================================== */

.hero {
    min-height: 640px;
    padding: 72px 0 58px;
    overflow: hidden;
    background:
        radial-gradient(circle at 5% 42%, rgba(191, 219, 254, 0.55), transparent 22%),
        radial-gradient(circle at 95% 30%, rgba(219, 234, 254, 0.75), transparent 26%),
        linear-gradient(135deg, #ffffff 0%, #f5f9ff 55%, #edf6ff 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.15);
}

.blob-one {
    width: 70px;
    height: 70px;
    top: 165px;
    left: 3%;
}

.blob-two {
    width: 42px;
    height: 42px;
    top: 340px;
    left: 41%;
}

.blob-three {
    width: 54px;
    height: 54px;
    top: 95px;
    right: 3%;
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.9fr 1.2fr;
    align-items: center;
    gap: 70px;
}

.hero-content {
    max-width: 600px;
}

.hero-label {
    margin-bottom: 18px;
    color: #0969f5;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    max-width: 650px;
    font-size: clamp(46px, 5.2vw, 72px);
    font-weight: 900;
    letter-spacing: -3px;
    color: #0b132b;
}

.hero-content h1::after {
    content: "";
}

.hero-description {
    max-width: 540px;
    margin-top: 24px;
    color: #475569;
    font-size: 18px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.btn {
    min-height: 52px;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 800;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

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

.primary-btn {
    color: white;
    background: linear-gradient(135deg, #0878ff, #075ee8);
    box-shadow: 0 12px 28px rgba(9, 105, 245, 0.25);
}

.primary-btn:hover {
    box-shadow: 0 18px 38px rgba(9, 105, 245, 0.35);
}

.secondary-btn {
    color: #0868ef;
    background: white;
    border: 2px solid #1775f6;
}


/* =====================================================
   HERO BROWSER MOCKUP
   ===================================================== */

.website-showcase {
    position: relative;
}

.browser-window {
    overflow: hidden;
    border: 1px solid #d8e2ef;
    border-radius: 18px;
    background: white;
    box-shadow: 0 28px 65px rgba(15, 23, 42, 0.18);
}

.browser-header {
    height: 44px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.browser-dots {
    display: flex;
    gap: 7px;
}

.browser-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) {
    background: #ff5f57;
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
    background: #28c840;
}

.browser-address {
    flex: 1;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: white;
    color: #64748b;
    font-size: 11px;
}

.demo-navigation {
    min-height: 58px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
}

.demo-navigation strong {
    font-size: 14px;
    letter-spacing: 0.3px;
}

.demo-links {
    display: flex;
    gap: 24px;
    color: #334155;
    font-size: 10px;
}

.demo-hero {
    position: relative;
    min-height: 290px;
    padding: 55px 36px;
    overflow: hidden;
    color: white;
    background:
        linear-gradient(
            90deg,
            rgba(4, 18, 48, 0.98) 0%,
            rgba(4, 27, 61, 0.86) 45%,
            rgba(4, 27, 61, 0.28) 100%
        ),
        url("../images/work/business-consulting.png") center/cover;
}

.demo-hero::after {
    content: none;
}

.demo-hero > * {
    position: relative;
    z-index: 2;
}

.demo-tag {
    color: #38a4ff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.7px;
}

.demo-hero h3 {
    max-width: 360px;
    margin-top: 17px;
    color: white;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -1.2px;
}

.demo-hero p {
    max-width: 340px;
    margin-top: 14px;
    color: #dbeafe;
    font-size: 13px;
}

.demo-hero button {
    margin-top: 20px;
    padding: 12px 20px;
    border: 0;
    border-radius: 7px;
    color: white;
    background: #0878ff;
    font-size: 12px;
    font-weight: 800;
}

.demo-stats {
    min-height: 78px;
    padding: 0 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 18px;
    background: white;
}

.demo-stats div {
    display: flex;
    flex-direction: column;
}

.demo-stats strong {
    font-size: 12px;
}

.demo-stats span {
    color: #94a3b8;
    font-size: 9px;
}

.showcase-badge {
    display: none;
}


/* =====================================================
   INDUSTRIES
   ===================================================== */

.industries {
    padding: 38px 0 24px;
    background: #f8fbff;
}

.industries h2 {
    font-size: clamp(34px, 3.3vw, 46px);
}

.industry-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
}

.industry-grid > div {
    min-height: 112px;
    padding: 18px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #e5edf7;
    border-radius: 12px;
    background: white;
    color: #111827;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.industry-grid > div:hover {
    transform: translateY(-6px);
    border-color: #93c5fd;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}


/* =====================================================
   SERVICES
   ===================================================== */

.services {
    padding: 42px 0 70px;
    background: white;
}

.services .container {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
}

.services h2 {
    text-align: center;
    font-size: 52px;
    margin-bottom: 20px;
}

.services .section-intro {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 1fr));
    gap: 28px;
}

.service-card {
    min-height: 260px;
    padding: 32px;
    border-radius: 18px;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.7);
    box-shadow: 0 18px 40px rgba(15,23,42,.08);
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.09);
}

.service-card h3 {
    margin-bottom: 14px;
    font-size: 17px;
    color: #0b132b;
}

.service-card p {
    color: #64748b;
    font-size: 13px;
    line-height: 1.7;
}


/* =====================================================
   FEATURED WORK
   ===================================================== */

.work {
    padding: 90px 0;
    background: #f8fbff;
}

.work-grid {
    margin-top: 46px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.work-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e3ebf5;
    border-radius: 18px;
    color: inherit;
    background: white;
    cursor: pointer;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.work-card:hover {
    transform: translateY(-10px);
    border-color: rgba(8, 120, 255, 0.28);
    box-shadow: 0 28px 55px rgba(15, 23, 42, 0.13);
}

.work-card:focus-visible {
    outline: 3px solid rgba(8, 120, 255, 0.32);
    outline-offset: 5px;
}

.site-preview {
    --preview-image: url("../images/work/business-consulting.png");
    --preview-shade: 7, 22, 47;
    min-height: 265px;
    padding: 18px;
    color: white;
    background-color: #07162f;
    background-image:
        linear-gradient(
            90deg,
            rgba(var(--preview-shade), 0.97) 0%,
            rgba(var(--preview-shade), 0.88) 38%,
            rgba(var(--preview-shade), 0.5) 66%,
            rgba(var(--preview-shade), 0.18) 100%
        ),
        var(--preview-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.mini-browser-bar {
    min-height: 34px;
    padding: 0 11px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(5, 16, 35, 0.42);
    -webkit-backdrop-filter: blur(9px);
    backdrop-filter: blur(9px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mini-browser-bar span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
}

.mini-browser-bar p {
    margin-left: auto;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.7);
}

.mini-site-content {
    padding: 32px 12px 15px;
    max-width: 86%;
    text-shadow: 0 2px 12px rgba(1, 9, 22, 0.45);
}

.mini-label {
    color: #60a5fa;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.mini-site-content h3 {
    margin-top: 12px;
    color: white;
    font-size: 25px;
}

.mini-site-content > p:not(.mini-label) {
    margin-top: 12px;
    color: #dbeafe;
    font-size: 12px;
}

.mini-preview-button {
    margin-top: 18px;
    display: inline-flex;
    padding: 10px 15px;
    border-radius: 7px;
    background: #0878ff;
    color: white;
    font-size: 11px;
    font-weight: 800;
    text-shadow: none;
    box-shadow: 0 8px 20px rgba(0, 69, 170, 0.24);
}

.work-card-content {
    flex: 1;
    padding: 23px;
    display: flex;
    flex-direction: column;
}

.work-card-content h3 {
    font-size: 19px;
}

.work-card-content p {
    margin-top: 10px;
    margin-bottom: 20px;
    color: #64748b;
    font-size: 14px;
}

.work-demo-link {
    width: fit-content;
    margin: auto auto 0;
    min-height: 43px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 9px;
    color: #ffffff;
    background: linear-gradient(135deg, #0878ff, #075ee8);
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(9, 105, 245, 0.2);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.work-demo-link > span {
    font-family: "Inter", Arial, sans-serif;
    font-variant-emoji: text;
    font-size: 16px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.work-card:hover .work-demo-link {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(9, 105, 245, 0.3);
}

.work-card:hover .work-demo-link > span {
    transform: translate(2px, -2px);
}

.restaurant-preview {
    --preview-image: url("../images/work/restaurant.png");
    --preview-shade: 55, 21, 8;
}

.sangronis-preview {
    --preview-image: url("../images/work/sangronis-featured-work.png");
    --preview-shade: 5, 24, 28;
    background-position: center top;
}

.sangronis-preview .mini-label {
    color: #ffb224;
}

.sangronis-preview .mini-preview-button {
    background: linear-gradient(135deg, #f5a313, #ffbd2e);
    color: #081c22;
    box-shadow: 0 8px 20px rgba(245, 163, 19, 0.28);
}

.ecommerce-preview {
    --preview-image: url("../images/work/ecommerce.png");
    --preview-shade: 31, 24, 75;
}

.law-preview {
    --preview-image: url("../images/work/law-firm.png");
    --preview-shade: 13, 24, 41;
}

.fitness-preview {
    --preview-image: url("../images/work/fitness-studio.png");
    --preview-shade: 5, 35, 30;
}

.realestate-preview {
    --preview-image: url("../images/work/real-estate.png");
    --preview-shade: 5, 35, 65;
}


/* =====================================================
   BENEFITS
   ===================================================== */

.benefits {
    padding: 90px 0;
    background: white;
}

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

.benefit-card {
    padding: 28px;
    border: 1px solid #e3ebf5;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.benefit-icon {
    margin-bottom: 16px;
    font-size: 30px;
}

.benefit-card h3 {
    font-size: 19px;
}

.benefit-card p {
    margin-top: 10px;
    color: #64748b;
    font-size: 14px;
}


/* =====================================================
   PRICING
   ===================================================== */

.pricing {
    padding: 90px 0;
    background: #f8fbff;
}

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

.price-card {
    padding: 34px;
    border: 1px solid #e3ebf5;
    border-radius: 18px;
    background: white;
    text-align: center;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.price-card.featured {
    border: 2px solid #0878ff;
    transform: translateY(-8px);
}

.price-card h3 {
    font-size: 22px;
}

.price {
    margin: 18px 0;
    color: #0878ff;
    font-size: 38px;
    font-weight: 900;
}

.price-card > p:not(.price) {
    color: #64748b;
}


/* =====================================================
   CTA
   ===================================================== */

.cta {
    padding: 90px 0;
    background: white;
}

.cta-box {
    padding: 70px 40px;
    border-radius: 24px;
    text-align: center;
    color: white;
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.32), transparent 35%),
        linear-gradient(135deg, #07162f, #0b2f64);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.2);
}

.cta-badge {
    color: #60a5fa;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.3px;
}

.cta-box h2 {
    max-width: 820px;
    margin: 18px auto 0;
    color: white;
}

.cta-box > p {
    max-width: 720px;
    margin: 20px auto 0;
    color: #cbd5e1;
}

.cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cta .secondary-btn {
    color: white;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
}


/* =====================================================
   CONTACT
   ===================================================== */

.contact {
    padding: 90px 0;
    background: #f8fbff;
}

.contact-content {
    max-width: 760px;
}

.contact-content h2 {
    text-align: left;
}

.contact-content .section-intro {
    margin-left: 0;
}

.contact form {
    margin-top: 35px;
    display: grid;
    gap: 16px;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #d8e2ef;
    border-radius: 10px;
    background: white;
    color: #0f172a;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.contact input:focus,
.contact textarea:focus {
    border-color: #0878ff;
    box-shadow: 0 0 0 4px rgba(8, 120, 255, 0.1);
}

.contact textarea {
    min-height: 150px;
    resize: vertical;
}

.contact form button {
    min-height: 52px;
    border: 0;
    border-radius: 10px;
    color: white;
    background: #0878ff;
    font-weight: 800;
}


/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    padding: 70px 0 25px;
    color: white;
    background: #07162f;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 45px;
}

.footer-column h3 {
    font-size: 24px;
}

.footer-column h4 {
    margin-bottom: 18px;
    color: white;
    font-size: 15px;
}

.footer-column p,
.footer-column li,
.footer-column a {
    color: #aebdd0;
    font-size: 14px;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a:hover {
    color: white;
}

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

.footer-bottom p {
    color: #8fa0b5;
    font-size: 13px;
}


/* =====================================================
   CHATBOT
   ===================================================== */

.chatbot {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 2000;
}

.chatbot-toggle {
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 50%;
    color: white;
    background: #0878ff;
    box-shadow: 0 14px 34px rgba(8, 120, 255, 0.35);
}

.chatbot-box {
    position: absolute;
    right: 0;
    bottom: 70px;
    width: 320px;
    overflow: hidden;
    display: none;
    border: 1px solid #dbe4ef;
    border-radius: 16px;
    background: white;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
}

.chatbot-box.active {
    display: block;
}

.chatbot-header {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    background: #0878ff;
}

.chatbot-close {
    border: 0;
    color: white;
    background: transparent;
    font-size: 22px;
}

.chatbot-messages {
    padding: 18px;
}

.bot-message {
    padding: 12px;
    border-radius: 10px;
    background: #f1f5f9;
    color: #334155;
    font-size: 14px;
}

.chatbot-options {
    padding: 0 18px 18px;
    display: grid;
    gap: 9px;
}

.chatbot-options button {
    padding: 11px;
    border: 1px solid #d8e2ef;
    border-radius: 8px;
    background: white;
    color: #334155;
    text-align: left;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1100px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 760px;
    }

    .website-showcase {
        max-width: 850px;
    }

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

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

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

@media (max-width: 850px) {
    .nav-content nav {
        display: none;
    }

    .hero {
        padding-top: 50px;
    }

    .hero-content h1 {
        letter-spacing: -2px;
    }

    .work-grid,
    .benefits-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 620px) {
    .container {
        width: min(100% - 26px, 1220px);
    }

    .hero-content h1 {
        font-size: 45px;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .demo-navigation {
        padding: 0 16px;
    }

    .demo-links {
        display: none;
    }

    .demo-hero {
        padding: 40px 22px;
    }

    .demo-hero h3 {
        font-size: 27px;
    }

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

    .service-grid,
    .work-grid,
    .benefits-grid,
    .pricing-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-box {
        padding: 50px 22px;
    }

    .chatbot-box {
        width: calc(100vw - 32px);
    }
}

/* =====================================================
   MOVING BACKGROUND BALLS
   ===================================================== */

.hero-blob,
.page-blob {
    animation: floatBlob 8s ease-in-out infinite;
}

.page-blob-one{
    animation-duration:22s;
}

.page-blob-two{
    animation-duration:28s;
}

.page-blob-three{
    animation-duration:26s;
}

.page-blob-four{
    animation-duration:31s;
}

.page-blob-five{
    animation-duration:24s;
}

@keyframes floatBlob{

    0%{
        transform:translate(0px,0px) scale(1);
    }

    20%{
        transform:translate(60px,-40px) scale(1.08);
    }

    40%{
        transform:translate(-40px,-90px) scale(.95);
    }

    60%{
        transform:translate(50px,40px) scale(1.05);
    }

    80%{
        transform:translate(-60px,30px) scale(.97);
    }

    100%{
        transform:translate(0px,0px) scale(1);
    }

}

/* =====================================================
   FULL-SITE FLOATING CIRCLES
   ===================================================== */

/* Keep circles behind the content but above the page background */
.page-background {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* Keep all website content above the circles */
main,
.footer {
    position: relative;
    z-index: 1;
}

.page-blob {
    position: absolute;
    border-radius: 50%;
    background: #b9d7ff;
    opacity: 0.28;
    filter: blur(5px);
    animation: floatBlob 18s ease-in-out infinite;
}

/* Existing circles */

.page-blob-one {
    width: 120px;
    height: 120px;
    top: 6%;
    left: -25px;
    animation-duration: 22s;
}

.page-blob-two {
    width: 85px;
    height: 85px;
    top: 18%;
    right: 4%;
    animation-duration: 28s;
}

.page-blob-three {
    width: 105px;
    height: 105px;
    top: 38%;
    left: 6%;
    animation-duration: 26s;
}

.page-blob-four {
    width: 140px;
    height: 140px;
    top: 64%;
    right: -35px;
    animation-duration: 31s;
}

.page-blob-five {
    width: 95px;
    height: 95px;
    top: 86%;
    left: 26%;
    animation-duration: 24s;
}

/* New circles */

.page-blob-six {
    width: 65px;
    height: 65px;
    top: 12%;
    left: 46%;
    background: #d5e8ff;
    animation-duration: 19s;
    animation-delay: -4s;
}

.page-blob-seven {
    width: 110px;
    height: 110px;
    top: 29%;
    right: 12%;
    background: #c6e0ff;
    animation-duration: 25s;
    animation-delay: -8s;
}

.page-blob-eight {
    width: 75px;
    height: 75px;
    top: 51%;
    left: 18%;
    background: #dcecff;
    animation-duration: 21s;
    animation-delay: -5s;
}

.page-blob-nine {
    width: 125px;
    height: 125px;
    top: 73%;
    right: 19%;
    background: #cce3ff;
    animation-duration: 27s;
    animation-delay: -11s;
}

.page-blob-ten {
    width: 80px;
    height: 80px;
    top: 92%;
    left: 67%;
    background: #e0efff;
    animation-duration: 23s;
    animation-delay: -7s;
}

/* Allow the circles to show through each section */

.industries,
.work,
.pricing,
.contact {
    background: rgba(248, 251, 255, 0.88);
}

.services,
.benefits,
.cta {
    background: rgba(255, 255, 255, 0.88);
}

/* Floating movement */

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(55px, -45px) scale(1.08);
    }

    50% {
        transform: translate(-40px, -75px) scale(0.95);
    }

    75% {
        transform: translate(-55px, 35px) scale(1.05);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* =====================================================
   MOVING CIRCLES INSIDE EVERY SECTION
   ===================================================== */

main section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Keep actual section content above the circles */
main section > .container {
    position: relative;
    z-index: 2;
}

/* Left floating circle */
main section:not(.hero)::before {
    content: "";
    position: absolute;
    width: 95px;
    height: 95px;
    top: 18%;
    left: 4%;
    border-radius: 50%;
    background: rgba(147, 197, 253, 0.22);
    pointer-events: none;
    z-index: 0;
    animation: sectionCircleLeft 11s ease-in-out infinite;
}

/* Right floating circle */
main section:not(.hero)::after {
    content: "";
    position: absolute;
    width: 65px;
    height: 65px;
    right: 5%;
    bottom: 15%;
    border-radius: 50%;
    background: rgba(191, 219, 254, 0.28);
    pointer-events: none;
    z-index: 0;
    animation: sectionCircleRight 13s ease-in-out infinite;
}

/* Different sizes and positions so sections do not look identical */

.services::before {
    width: 70px;
    height: 70px;
    top: 12%;
    left: 7%;
}

.services::after {
    width: 105px;
    height: 105px;
    right: 3%;
    bottom: 8%;
}

.work::before {
    width: 130px;
    height: 130px;
    top: 30%;
    left: -35px;
}

.work::after {
    width: 85px;
    height: 85px;
    right: 3%;
    bottom: 24%;
}

.benefits::before {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
}

.benefits::after {
    width: 115px;
    height: 115px;
    right: -25px;
    bottom: 12%;
}

.pricing::before {
    width: 90px;
    height: 90px;
    top: 15%;
    left: 8%;
}

.pricing::after {
    width: 70px;
    height: 70px;
    right: 8%;
    bottom: 10%;
}

.cta::before,
.cta::after {
    opacity: 0.7;
}

.contact::before {
    width: 110px;
    height: 110px;
    top: 20%;
    left: -30px;
}

.contact::after {
    width: 75px;
    height: 75px;
    right: 5%;
    bottom: 18%;
}

@keyframes sectionCircleLeft {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(45px, -30px) scale(1.1);
    }
}

@keyframes sectionCircleRight {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-40px, 35px) scale(0.92);
    }
}


/* =====================================================
   POLISHED GLASS CHATBOT
   ===================================================== */

.industry-grid > div.hidden,
.service-card.hidden,
.work-card.hidden,
.benefit-card.hidden,
.price-card.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.industry-grid > div.hidden.show,
.service-card.hidden.show,
.work-card.hidden.show,
.benefit-card.hidden.show,
.price-card.hidden.show {
    opacity: 1;
    transform: translateY(0);
}

.chatbot {
    position: fixed;
    right: 24px;
    bottom: 24px;
    left: auto;
    z-index: 3000;
    font-family: "Inter", sans-serif;
}

.chatbot-toggle {
    position: relative;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    color: #ffffff;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.35), transparent 34%),
        linear-gradient(145deg, #1687ff 0%, #075ee8 58%, #0649c6 100%);
    box-shadow:
        0 16px 34px rgba(7, 94, 232, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.34);
    font-size: 23px;
    line-height: 1;
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        filter 0.24s ease;
}

.chatbot-toggle::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

.chatbot-toggle:hover {
    transform: translateY(-3px) scale(1.03);
    filter: saturate(1.08);
    box-shadow:
        0 20px 42px rgba(7, 94, 232, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.chatbot-box {
    position: absolute;
    right: 0;
    bottom: 76px;
    width: min(380px, calc(100vw - 28px));
    max-height: min(610px, calc(100vh - 116px));
    display: none;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    -webkit-backdrop-filter: blur(24px) saturate(1.25);
    backdrop-filter: blur(24px) saturate(1.25);
    box-shadow:
        0 28px 80px rgba(15, 23, 42, 0.22),
        0 6px 22px rgba(7, 94, 232, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform-origin: bottom right;
}

.chatbot-box.active {
    display: flex;
    flex-direction: column;
    animation: chatbotOpen 0.32s cubic-bezier(0.2, 0.85, 0.35, 1.15);
}

@keyframes chatbotOpen {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chatbot-header {
    position: relative;
    min-height: 76px;
    padding: 17px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 18% -30%, rgba(96, 165, 250, 0.75), transparent 54%),
        linear-gradient(135deg, #071b3d 0%, #0a3470 54%, #075ee8 125%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.chatbot-header::after {
    content: "";
    position: absolute;
    top: -50px;
    right: -35px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(96, 165, 250, 0.18);
    filter: blur(2px);
    pointer-events: none;
}

.chatbot-header strong {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.15px;
}

.chatbot-header strong::after {
    content: "Website project assistant";
    color: rgba(219, 234, 254, 0.82);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0;
}

.chatbot-close {
    position: relative;
    z-index: 2;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
    font-size: 21px;
    line-height: 1;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: rotate(4deg);
}

.chatbot-messages {
    min-height: 185px;
    max-height: 278px;
    padding: 18px 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background:
        radial-gradient(circle at 95% 5%, rgba(219, 234, 254, 0.72), transparent 35%),
        linear-gradient(180deg, #f8fbff 0%, #f4f8fd 100%);
    scrollbar-width: thin;
    scrollbar-color: #bfdbfe transparent;
}

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: #bfdbfe;
}

.chat-message,
.bot-message,
.user-message {
    max-width: 86%;
    padding: 10px 13px;
    border-radius: 15px;
    font-size: 13px;
    line-height: 1.52;
    letter-spacing: -0.04px;
    overflow-wrap: anywhere;
}

.bot-message {
    align-self: flex-start;
    color: #334155;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(203, 213, 225, 0.72);
    border-bottom-left-radius: 5px;
    box-shadow:
        0 6px 18px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 #ffffff;
}

.user-message {
    align-self: flex-end;
    color: #ffffff;
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.22), transparent 40%),
        linear-gradient(135deg, #1687ff 0%, #075ee8 75%);
    border: 1px solid rgba(7, 94, 232, 0.2);
    border-bottom-right-radius: 5px;
    box-shadow:
        0 9px 20px rgba(7, 94, 232, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.typing-message {
    width: max-content;
    min-width: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.typing-message span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7c91ad;
    animation: typingDot 1s ease-in-out infinite;
}

.typing-message span:nth-child(2) {
    animation-delay: 0.14s;
}

.typing-message span:nth-child(3) {
    animation-delay: 0.28s;
}

@keyframes typingDot {
    0%,
    60%,
    100% {
        opacity: 0.42;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
        transform: translateY(-4px);
    }
}

.chatbot-action-button {
    align-self: flex-start;
    min-height: 39px;
    padding: 9px 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(7, 94, 232, 0.14);
    border-radius: 11px;
    color: #ffffff;
    background:
        linear-gradient(135deg, #1687ff 0%, #075ee8 72%);
    box-shadow:
        0 9px 20px rgba(7, 94, 232, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.2;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.chatbot-action-button:hover {
    transform: translateY(-1px);
    box-shadow:
        0 12px 24px rgba(7, 94, 232, 0.27),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.chatbot-options {
    padding: 12px 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid #e8eef7;
}

.chatbot-options button {
    min-height: 43px;
    padding: 9px 10px;
    display: flex;
    align-items: center;
    border: 1px solid #dce7f5;
    border-radius: 12px;
    color: #334155;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow:
        0 4px 12px rgba(15, 23, 42, 0.035),
        inset 0 1px 0 #ffffff;
    font-size: 11.5px;
    font-weight: 650;
    line-height: 1.3;
    text-align: left;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.chatbot-options button:hover {
    transform: translateY(-1px);
    border-color: #9cc6ff;
    color: #075ee8;
    box-shadow:
        0 8px 18px rgba(7, 94, 232, 0.09),
        inset 0 1px 0 #ffffff;
}

.chatbot-input-form {
    padding: 12px 14px 14px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    border-top: 1px solid #e8eef7;
    background: rgba(248, 251, 255, 0.96);
}

.chatbot-input {
    width: 100%;
    min-width: 0;
    height: 43px;
    padding: 0 13px;
    border: 1px solid #d6e1ef;
    border-radius: 12px;
    color: #172033;
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
        inset 0 1px 3px rgba(15, 23, 42, 0.04),
        0 1px 0 rgba(255, 255, 255, 0.9);
    font-size: 12.5px;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.chatbot-input::placeholder {
    color: #94a3b8;
}

.chatbot-input:focus {
    border-color: #76afff;
    box-shadow:
        0 0 0 4px rgba(8, 120, 255, 0.1),
        inset 0 1px 3px rgba(15, 23, 42, 0.03);
}

.chatbot-send {
    height: 43px;
    padding: 0 15px;
    border: 1px solid rgba(7, 94, 232, 0.15);
    border-radius: 12px;
    color: #ffffff;
    background:
        radial-gradient(circle at 25% 0%, rgba(255, 255, 255, 0.24), transparent 38%),
        linear-gradient(135deg, #1687ff 0%, #075ee8 75%);
    box-shadow:
        0 8px 18px rgba(7, 94, 232, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
    font-size: 12px;
    font-weight: 800;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.chatbot-send:hover {
    transform: translateY(-1px);
    box-shadow:
        0 11px 22px rgba(7, 94, 232, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.chatbot-send:disabled,
.chatbot-input:disabled {
    cursor: not-allowed;
    opacity: 0.58;
}

.chatbot-toggle:focus-visible,
.chatbot-close:focus-visible,
.chatbot-options button:focus-visible,
.chatbot-action-button:focus-visible,
.chatbot-input:focus-visible,
.chatbot-send:focus-visible {
    outline: 3px solid rgba(8, 120, 255, 0.22);
    outline-offset: 3px;
}

@media (max-width: 620px) {
    .chatbot {
        right: 12px;
        bottom: 14px;
    }

    .chatbot-box {
        width: min(380px, calc(100vw - 24px));
        max-height: calc(100vh - 100px);
        bottom: 72px;
        border-radius: 21px;
    }

    .chatbot-header {
        min-height: 70px;
        padding: 15px 16px;
    }

    .chatbot-messages {
        min-height: 160px;
        max-height: 250px;
    }

    .chatbot-options {
        padding: 10px 12px;
        gap: 7px;
    }

    .chatbot-options button {
        min-height: 41px;
        padding: 8px 9px;
        font-size: 11px;
    }

    .chatbot-input-form {
        padding: 10px 12px 12px;
    }
}

@media (max-width: 365px) {
    .chatbot-options {
        grid-template-columns: 1fr;
    }

    .chatbot-messages {
        max-height: 220px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .industry-grid > div.hidden,
    .service-card.hidden,
    .work-card.hidden,
    .benefit-card.hidden,
    .price-card.hidden {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .chatbot-box.active,
    .typing-message span {
        animation: none;
    }

    .chatbot-toggle,
    .chatbot-close,
    .chatbot-options button,
    .chatbot-action-button,
    .chatbot-send {
        transition: none;
    }
}


/* =====================================================
   PROFESSIONAL AI ASSISTANT CONTROLS
   ===================================================== */

.chatbot-header-tools {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
}

.chatbot-header-button {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.08);
    font-size: 15px;
    line-height: 1;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.chatbot-header-button:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.17);
    transform: translateY(-1px);
}

.chatbot-status {
    min-height: 30px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid #e7eef8;
    color: #64748b;
    background: rgba(255, 255, 255, 0.96);
    font-size: 10.5px;
    font-weight: 650;
    letter-spacing: 0.01em;
}

.chatbot-status-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.chatbot-status[data-state="working"] .chatbot-status-dot {
    background: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
    animation: statusPulse 1.2s ease-in-out infinite;
}

.chatbot-status[data-state="local"] .chatbot-status-dot {
    background: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.12);
}

.chatbot-status[data-state="offline"] .chatbot-status-dot {
    background: #94a3b8;
    box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.13);
}

@keyframes statusPulse {
    0%,
    100% {
        opacity: 0.55;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

.chatbot-messages {
    max-height: 255px;
}

.chat-message {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.chat-message-copy {
    display: block;
    white-space: pre-wrap;
}

.chat-message-time {
    display: block;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 550;
    line-height: 1;
}

.user-message .chat-message-time {
    color: rgba(255, 255, 255, 0.68);
    text-align: right;
}

.chatbot-privacy-note {
    margin: 0;
    padding: 7px 14px 0;
    color: #94a3b8;
    background: rgba(248, 251, 255, 0.96);
    font-size: 8.5px;
    line-height: 1.35;
    text-align: center;
}

.chatbot-options button:disabled,
.chatbot-header-button:disabled {
    cursor: not-allowed;
    opacity: 0.52;
    transform: none;
}

.chatbot.has-unread .chatbot-toggle::before {
    content: "";
    position: absolute;
    top: 2px;
    right: 2px;
    z-index: 3;
    width: 11px;
    height: 11px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
}

.chatbot-header-button:focus-visible,
.chatbot-status:focus-visible {
    outline: 3px solid rgba(147, 197, 253, 0.42);
    outline-offset: 2px;
}

@media (max-width: 620px) {
    .chatbot-header-tools {
        gap: 4px;
    }

    .chatbot-header-button,
    .chatbot-close {
        width: 31px;
        height: 31px;
    }

    .chatbot-status {
        padding: 0 14px;
    }

    .chatbot-messages {
        max-height: 225px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .chatbot-status[data-state="working"] .chatbot-status-dot {
        animation: none;
    }

    .chatbot-header-button {
        transition: none;
    }
}

/* Project Planner and smart follow-up actions */
.chatbot-options[data-mode="planner"] {
    gap: 8px;
    padding-top: 10px;
}

.chatbot-options[data-mode="planner"] button {
    min-height: 46px;
    padding: 10px 12px;
    text-align: left;
}

.chatbot-options .chatbot-option-primary {
    border-color: transparent;
    color: #ffffff;
    background: linear-gradient(135deg, #1f6feb 0%, #134fbc 100%);
    box-shadow: 0 8px 18px rgba(31, 111, 235, 0.2);
}

.chatbot-options .chatbot-option-primary:hover {
    border-color: transparent;
    color: #ffffff;
    background: linear-gradient(135deg, #2879f3 0%, #174fae 100%);
    box-shadow: 0 10px 22px rgba(31, 111, 235, 0.28);
}

.chatbot-options[data-mode="followup"] button {
    min-height: 42px;
}

@media (max-width: 365px) {
    .chatbot-options[data-mode="planner"],
    .chatbot-options[data-mode="followup"] {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   HAMILTON CONCIERGE - ENTERPRISE EXPERIENCE V4
   ===================================================== */

.chatbot {
    --chat-ink: #071426;
    --chat-muted: #64748b;
    --chat-line: #e6ebf2;
    --chat-surface: #ffffff;
    --chat-soft: #f5f8fc;
    --chat-blue: #1769e0;
    --chat-blue-deep: #0b4db7;
    right: 28px;
    bottom: 28px;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: -0.01em;
}

.chatbot-toggle {
    width: auto;
    min-width: 158px;
    height: 58px;
    padding: 7px 18px 7px 7px;
    justify-content: flex-start;
    gap: 11px;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 19px;
    color: #ffffff;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.07), transparent 42%),
        linear-gradient(135deg, #071426 0%, #0b2347 100%);
    box-shadow:
        0 20px 52px rgba(7, 20, 38, 0.28),
        0 3px 12px rgba(7, 20, 38, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    font-size: 13px;
    font-weight: 760;
}

.chatbot-toggle::after {
    inset: 0;
    border-color: rgba(255, 255, 255, 0.08);
}

.chatbot-toggle:hover {
    transform: translateY(-3px);
    filter: none;
    box-shadow:
        0 25px 62px rgba(7, 20, 38, 0.34),
        0 5px 14px rgba(7, 20, 38, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.chatbot-toggle.is-open {
    min-width: 144px;
}

.chatbot-launcher-mark {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 13px;
    color: #ffffff;
    background:
        radial-gradient(circle at 28% 16%, rgba(255, 255, 255, 0.3), transparent 34%),
        linear-gradient(145deg, #2c8dff 0%, #1769e0 58%, #0b4db7 100%);
    box-shadow:
        0 8px 20px rgba(23, 105, 224, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    font-size: 16px;
    font-weight: 850;
    letter-spacing: -0.04em;
}

.chatbot-launcher-label {
    white-space: nowrap;
}

.chatbot.has-unread .chatbot-toggle::before {
    top: 4px;
    right: 4px;
    width: 10px;
    height: 10px;
    border-width: 2px;
}

.chatbot-box {
    bottom: 74px;
    width: min(408px, calc(100vw - 32px));
    max-height: min(680px, calc(100dvh - 126px));
    border: 1px solid rgba(215, 222, 232, 0.9);
    border-radius: 24px;
    background: var(--chat-surface);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow:
        0 34px 90px rgba(7, 20, 38, 0.22),
        0 8px 28px rgba(7, 20, 38, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

.chatbot-box.active {
    animation: chatbotEnterpriseOpen 0.34s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes chatbotEnterpriseOpen {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.965);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chatbot-header {
    min-height: 86px;
    padding: 18px;
    background:
        radial-gradient(circle at 12% -35%, rgba(58, 142, 255, 0.46), transparent 55%),
        radial-gradient(circle at 102% 125%, rgba(22, 105, 224, 0.32), transparent 45%),
        linear-gradient(135deg, #071426 0%, #0a2041 58%, #0b326a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chatbot-header::after {
    top: -95px;
    right: -60px;
    width: 190px;
    height: 190px;
    background: rgba(79, 154, 255, 0.13);
    filter: blur(1px);
}

.chatbot-brand {
    position: relative;
    z-index: 2;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 11px;
}

.chatbot-brand-mark {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 13px;
    color: #ffffff;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
        #1769e0;
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    font-size: 16px;
    font-weight: 850;
    letter-spacing: -0.04em;
}

.chatbot-brand-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.chatbot-header .chatbot-brand strong {
    display: block;
    overflow: hidden;
    color: #ffffff;
    font-size: 14px;
    font-weight: 760;
    letter-spacing: -0.02em;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chatbot-header .chatbot-brand strong::after {
    content: none;
}

.chatbot-brand-subtitle {
    overflow: hidden;
    color: rgba(219, 234, 254, 0.72);
    font-size: 10.5px;
    font-weight: 540;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chatbot-header-tools {
    gap: 5px;
}

.chatbot-header-button {
    width: auto;
    height: 30px;
    padding: 0 9px;
    border-color: rgba(255, 255, 255, 0.11);
    border-radius: 9px;
    color: rgba(255, 255, 255, 0.74);
    background: rgba(255, 255, 255, 0.065);
    font-size: 9.5px;
    font-weight: 700;
}

.chatbot-close {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 18px;
}

.chatbot-status {
    min-height: 34px;
    padding: 0 16px;
    gap: 7px;
    border-bottom-color: var(--chat-line);
    color: #526176;
    background: #ffffff;
    font-size: 10.5px;
}

.chatbot-status-meta {
    margin-left: auto;
    color: #94a3b8;
    font-size: 9.5px;
    font-weight: 600;
}

.chatbot-planner-progress {
    height: 4px;
    padding: 0;
    overflow: hidden;
    background: #edf2f8;
}

.chatbot-planner-progress[hidden] {
    display: none;
}

.chatbot-planner-progress-bar {
    display: block;
    width: 100%;
    height: 100%;
}

.chatbot-planner-progress-fill {
    display: block;
    width: 0;
    height: 100%;
    border-radius: 0 999px 999px 0;
    background: linear-gradient(90deg, #1769e0 0%, #52a5ff 100%);
    box-shadow: 0 0 14px rgba(23, 105, 224, 0.42);
    transition: width 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.chatbot-messages {
    min-height: 190px;
    max-height: 310px;
    padding: 18px 16px 16px;
    gap: 11px;
    background:
        radial-gradient(circle at 100% 0%, rgba(222, 235, 255, 0.72), transparent 36%),
        linear-gradient(180deg, #f8fafd 0%, #f3f6fa 100%);
    scrollbar-color: #c9d4e3 transparent;
}

.chat-message,
.bot-message,
.user-message {
    max-width: 88%;
    padding: 11px 13px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.53;
}

.bot-message {
    color: #26364d;
    border-color: rgba(214, 222, 232, 0.88);
    border-bottom-left-radius: 6px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
        0 8px 22px rgba(18, 38, 63, 0.055),
        inset 0 1px 0 #ffffff;
}

.user-message {
    border-color: rgba(11, 77, 183, 0.3);
    border-bottom-right-radius: 6px;
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.2), transparent 40%),
        linear-gradient(135deg, #2178eb 0%, #0d55c5 100%);
    box-shadow:
        0 10px 24px rgba(13, 85, 197, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.chat-message-time {
    font-size: 8.5px;
    font-weight: 620;
    letter-spacing: 0.02em;
}

.chat-message-feedback {
    margin-top: 3px;
    padding-top: 7px;
    display: flex;
    align-items: center;
    gap: 9px;
    border-top: 1px solid #edf1f6;
}

.chat-message-feedback button {
    padding: 0;
    border: 0;
    color: #8a98aa;
    background: transparent;
    font: inherit;
    font-size: 9px;
    font-weight: 650;
    line-height: 1.2;
}

.chat-message-feedback button:hover,
.chat-message-feedback button[aria-pressed="true"] {
    color: var(--chat-blue);
}

.chatbot-brief-card {
    width: 100%;
    align-self: stretch;
    padding: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 18px;
    color: #ffffff;
    background:
        radial-gradient(circle at 100% 0%, rgba(54, 137, 248, 0.3), transparent 42%),
        linear-gradient(145deg, #071426 0%, #0c2750 100%);
    box-shadow:
        0 18px 40px rgba(7, 20, 38, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.chatbot-brief-eyebrow {
    display: block;
    margin-bottom: 5px;
    color: #7db6ff;
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.chatbot-brief-title {
    display: block;
    margin-bottom: 13px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 760;
    line-height: 1.35;
}

.chatbot-brief-details {
    margin: 0;
    display: grid;
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
}

.chatbot-brief-details > div {
    padding: 9px 10px;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 8px;
    background: rgba(4, 16, 32, 0.34);
}

.chatbot-brief-details dt,
.chatbot-brief-details dd {
    margin: 0;
    font-size: 9.5px;
    line-height: 1.35;
}

.chatbot-brief-details dt {
    color: rgba(191, 219, 254, 0.64);
    font-weight: 650;
}

.chatbot-brief-details dd {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 620;
}

.chatbot-brief-actions {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 7px;
}

.chatbot-brief-actions button {
    min-height: 36px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.08);
    font-size: 9.5px;
    font-weight: 720;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.chatbot-brief-actions button:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.13);
}

.chatbot-brief-actions .chatbot-brief-primary {
    border-color: rgba(88, 166, 255, 0.34);
    color: #ffffff;
    background: linear-gradient(135deg, #2d8cff 0%, #1769e0 100%);
    box-shadow: 0 8px 20px rgba(23, 105, 224, 0.28);
}

.chatbot-options {
    padding: 12px 14px;
    gap: 8px;
    border-top-color: var(--chat-line);
    background: #ffffff;
}

.chatbot-options button {
    min-height: 44px;
    padding: 10px 11px;
    border-color: #dde5ef;
    border-radius: 12px;
    color: #33445a;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(18, 38, 63, 0.035);
    font-size: 11px;
    font-weight: 680;
}

.chatbot-options button:hover {
    border-color: #a9c8ee;
    color: #0d55c5;
    background: #f8fbff;
    box-shadow: 0 8px 20px rgba(13, 85, 197, 0.07);
}

.chatbot-options .chatbot-option-primary {
    border-color: transparent;
    color: #ffffff;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.12), transparent 45%),
        linear-gradient(135deg, #1769e0 0%, #0b4db7 100%);
    box-shadow:
        0 9px 22px rgba(23, 105, 224, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.chatbot-options .chatbot-option-primary:hover {
    color: #ffffff;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.15), transparent 45%),
        linear-gradient(135deg, #2178eb 0%, #0d55c5 100%);
}

.chatbot-privacy-note {
    padding: 8px 14px 0;
    color: #9aa7b7;
    background: #f8fafc;
    font-size: 8.5px;
}

.chatbot-input-form {
    padding: 10px 14px 14px;
    gap: 8px;
    border-top: 0;
    background: #f8fafc;
}

.chatbot-input {
    min-height: 46px;
    height: 46px;
    max-height: 104px;
    padding: 13px 14px;
    border-color: #d9e1ec;
    border-radius: 13px;
    color: var(--chat-ink);
    background: #ffffff;
    font-size: 12.5px;
    line-height: 1.45;
    resize: none;
    scrollbar-width: thin;
}

.chatbot-input:focus {
    border-color: #77aef0;
    box-shadow:
        0 0 0 4px rgba(23, 105, 224, 0.09),
        0 5px 16px rgba(18, 38, 63, 0.04);
}

.chatbot-send {
    height: 46px;
    padding: 0 15px;
    border-color: transparent;
    border-radius: 13px;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.13), transparent 45%),
        linear-gradient(135deg, #1769e0 0%, #0b4db7 100%);
    box-shadow:
        0 10px 22px rgba(23, 105, 224, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    font-size: 11.5px;
    font-weight: 760;
}

.chatbot-action-button {
    min-height: 40px;
    border-radius: 11px;
    background: linear-gradient(135deg, #1769e0 0%, #0b4db7 100%);
    box-shadow: 0 9px 22px rgba(23, 105, 224, 0.2);
}

.chat-message-feedback button:focus-visible,
.chatbot-brief-actions button:focus-visible {
    outline: 2px solid #7db6ff;
    outline-offset: 2px;
}

@media (max-width: 620px) {
    .chatbot {
        right: 14px;
        bottom: 16px;
    }

    .chatbot-box {
        position: fixed;
        right: 10px;
        bottom: 82px;
        left: 10px;
        width: auto;
        max-height: calc(100dvh - 96px);
        border-radius: 22px;
    }

    .chatbot-header {
        min-height: 78px;
        padding: 15px;
    }

    .chatbot-header-button {
        padding: 0 8px;
    }

    .chatbot-messages {
        min-height: 160px;
        max-height: 285px;
    }
}

@media (max-width: 480px) {
    .chatbot-toggle,
    .chatbot-toggle.is-open {
        width: auto;
        min-width: 158px;
        max-width: calc(100vw - 28px);
        height: 58px;
        padding: 7px 18px 7px 7px;
        gap: 11px;
        border-radius: 19px;
    }

    .chatbot-launcher-label {
        display: inline;
        color: #ffffff;
        font-size: 13px;
        font-weight: 760;
        white-space: nowrap;
    }

    .chatbot-brand-mark {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .chatbot-brand-subtitle,
    .chatbot-status-meta {
        display: none;
    }

    .chatbot-header-button {
        width: 29px;
        padding: 0;
        overflow: hidden;
        color: transparent;
        font-size: 0;
    }

    .chatbot-header-button::before {
        color: rgba(255, 255, 255, 0.8);
        font-size: 11px;
        font-weight: 760;
    }

    .chatbot-header-button:first-child::before {
        content: "\21BB";
    }

    .chatbot-header-button:nth-child(2)::before {
        content: "\2193";
    }

    .chatbot-options[data-mode="planner"] {
        grid-template-columns: 1fr 1fr;
    }

    .chatbot-brief-details > div {
        grid-template-columns: 82px minmax(0, 1fr);
    }
}

@media (max-width: 365px) {
    .chatbot-options[data-mode="planner"],
    .chatbot-options[data-mode="followup"],
    .chatbot-options[data-mode="welcome"] {
        grid-template-columns: 1fr;
    }

    .chatbot-messages {
        max-height: 245px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .chatbot-box.active {
        animation: none;
    }

    .chatbot-planner-progress-fill,
    .chatbot-brief-actions button {
        transition: none;
    }
}

/* =====================================================
   PROFESSIONAL EDITORIAL ICON SYSTEM
   ===================================================== */

.industry-grid > div {
    position: relative;
    flex-direction: column;
    gap: 13px;
    overflow: hidden;
}

.industry-marker {
    position: relative;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #cfe0f5;
    border-radius: 11px;
    color: #1459ba;
    background: linear-gradient(145deg, #ffffff, #e8f1fd);
    box-shadow:
        0 8px 18px rgba(20, 89, 186, 0.09),
        inset 0 1px 0 #ffffff;
    font-size: 9.5px;
    font-weight: 820;
    letter-spacing: 0.1em;
    line-height: 1;
    transition:
        transform 0.24s ease,
        color 0.24s ease,
        border-color 0.24s ease,
        background 0.24s ease;
}

.industry-marker::after {
    content: "";
    position: absolute;
    right: 7px;
    bottom: 6px;
    left: 7px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #1769e0, #75b4ff);
    opacity: 0.72;
}

.industry-label {
    display: block;
    color: #111c31;
    font-size: 12px;
    font-weight: 740;
    line-height: 1.28;
    letter-spacing: -0.015em;
    text-align: center;
}

.industry-grid > div:hover .industry-marker {
    transform: translateY(-2px);
    border-color: #8ebbf1;
    color: #ffffff;
    background: linear-gradient(145deg, #2178eb, #0d55c5);
    box-shadow:
        0 10px 22px rgba(20, 89, 186, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.industry-grid > div:hover .industry-marker::after {
    background: rgba(255, 255, 255, 0.72);
}

.benefit-icon.benefit-index {
    position: relative;
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #cbdcf2;
    border-radius: 13px;
    color: #1459ba;
    background: linear-gradient(145deg, #ffffff, #edf4fd);
    box-shadow:
        0 10px 24px rgba(20, 89, 186, 0.09),
        inset 0 1px 0 #ffffff;
    font-size: 10px;
    font-weight: 840;
    letter-spacing: 0.11em;
    line-height: 1;
}

.benefit-icon.benefit-index::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 17px;
    height: 17px;
    border-radius: 0 12px 0 14px;
    background: rgba(23, 105, 224, 0.09);
}

.benefit-icon.benefit-index::after {
    content: "";
    position: absolute;
    right: 8px;
    bottom: 7px;
    left: 8px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #1769e0, #77b7ff);
}

/* =====================================================
   INTERACTIVE PRICING EXPERIENCE
   ===================================================== */

.pricing .section-intro {
    max-width: 780px;
}

.pricing-grid {
    align-items: stretch;
    gap: 22px;
}

.price-card {
    position: relative;
    min-height: 500px;
    padding: 34px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid #dce5f0;
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 0%, rgba(220, 234, 253, 0.62), transparent 35%),
        #ffffff;
    box-shadow:
        0 20px 48px rgba(15, 35, 62, 0.08),
        inset 0 1px 0 #ffffff;
    text-align: left;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.price-card:hover {
    transform: translateY(-6px);
    border-color: #a9c9ed;
    box-shadow:
        0 28px 62px rgba(15, 35, 62, 0.13),
        inset 0 1px 0 #ffffff;
}

.price-card.featured {
    transform: none;
    border: 2px solid #1769e0;
    background:
        radial-gradient(circle at 100% 0%, rgba(191, 219, 254, 0.72), transparent 36%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow:
        0 24px 58px rgba(23, 105, 224, 0.14),
        inset 0 1px 0 #ffffff;
}

.price-card.featured:hover {
    transform: translateY(-6px);
}

.price-card-featured-label {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 8px;
    border-radius: 7px;
    color: #ffffff;
    background: #1769e0;
    font-size: 8px;
    font-weight: 820;
    letter-spacing: 0.11em;
    line-height: 1;
}

.price-card-kicker {
    display: block;
    margin-bottom: 10px;
    color: #1769e0;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.09em;
    line-height: 1.3;
    text-transform: uppercase;
}

.price-card h3 {
    margin: 0;
    color: #0b1730;
    font-size: 24px;
    font-weight: 790;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.price-card .price {
    margin: 16px 0 14px;
    color: #1769e0;
    font-size: clamp(38px, 4vw, 48px);
    font-weight: 820;
    letter-spacing: -0.055em;
    line-height: 1;
}

.price-card > .price-card-best-for {
    min-height: 74px;
    margin: 0;
    color: #52647c;
    font-size: 12.5px;
    font-weight: 540;
    line-height: 1.55;
    text-align: left;
}

.price-card-features {
    margin: 20px 0 24px;
    padding: 18px 0 0;
    display: grid;
    gap: 11px;
    border-top: 1px solid #e7edf5;
    list-style: none;
}

.price-card-features li {
    position: relative;
    padding-left: 21px;
    color: #27384f;
    font-size: 11.5px;
    font-weight: 620;
    line-height: 1.42;
}

.price-card-features li::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 1px;
    width: 8px;
    height: 8px;
    border: 2px solid #1769e0;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(23, 105, 224, 0.08);
}

.price-details-button {
    width: 100%;
    min-height: 46px;
    margin-top: auto;
    padding: 11px 14px;
    border: 1px solid #cbd9ea;
    border-radius: 12px;
    color: #123764;
    background: #f8fbff;
    box-shadow: inset 0 1px 0 #ffffff;
    font-size: 11.5px;
    font-weight: 750;
    transition:
        transform 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.price-details-button:hover {
    transform: translateY(-1px);
    border-color: #1769e0;
    color: #ffffff;
    background: linear-gradient(135deg, #2178eb, #0d55c5);
    box-shadow: 0 10px 22px rgba(23, 105, 224, 0.2);
}

.price-card.featured .price-details-button {
    border-color: transparent;
    color: #ffffff;
    background: linear-gradient(135deg, #2178eb, #0d55c5);
    box-shadow: 0 10px 22px rgba(23, 105, 224, 0.2);
}

.pricing-confidence {
    margin-top: 26px;
    padding: 27px 30px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
    align-items: center;
    gap: 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #ffffff;
    background:
        radial-gradient(circle at 100% 0%, rgba(45, 140, 255, 0.25), transparent 42%),
        linear-gradient(135deg, #071426 0%, #0c2b58 100%);
    box-shadow: 0 24px 56px rgba(7, 20, 38, 0.16);
}

.pricing-confidence-copy > span {
    display: block;
    margin-bottom: 6px;
    color: #79b4ff;
    font-size: 8.5px;
    font-weight: 820;
    letter-spacing: 0.12em;
}

.pricing-confidence-copy > strong {
    display: block;
    max-width: 620px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 750;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.pricing-confidence-copy p {
    max-width: 650px;
    margin: 10px 0 0;
    color: rgba(219, 234, 254, 0.72);
    font-size: 11.5px;
    line-height: 1.55;
}

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

.pricing-confidence > ul li {
    position: relative;
    padding: 10px 12px 10px 31px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.055);
    font-size: 10.5px;
    font-weight: 640;
}

.pricing-confidence > ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 12px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #63a8ff;
    box-shadow: 0 0 0 4px rgba(99, 168, 255, 0.12);
    transform: translateY(-50%);
}

.pricing-dialog {
    width: min(680px, calc(100vw - 28px));
    max-height: calc(100dvh - 32px);
    padding: 0;
    overflow: auto;
    border: 1px solid rgba(218, 226, 237, 0.92);
    border-radius: 24px;
    color: #17233a;
    background: #ffffff;
    box-shadow: 0 38px 110px rgba(2, 12, 27, 0.34);
}

.pricing-dialog::backdrop {
    background: rgba(4, 13, 27, 0.66);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.pricing-dialog-shell {
    position: relative;
    padding: 34px;
    background:
        radial-gradient(circle at 100% 0%, rgba(218, 233, 253, 0.72), transparent 32%),
        #ffffff;
}

.pricing-dialog-close {
    position: absolute;
    top: 18px;
    right: 18px;
    min-height: 34px;
    padding: 0 11px;
    border: 1px solid #d8e1ec;
    border-radius: 9px;
    color: #52647c;
    background: rgba(255, 255, 255, 0.84);
    font-size: 9.5px;
    font-weight: 720;
}

.pricing-dialog-kicker {
    display: block;
    margin: 0 74px 7px 0;
    color: #1769e0;
    font-size: 9px;
    font-weight: 820;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pricing-dialog h3 {
    margin: 0;
    color: #0b1730;
    font-size: clamp(30px, 5vw, 42px);
    font-weight: 810;
    letter-spacing: -0.05em;
    line-height: 1.05;
}

.pricing-dialog-price {
    margin: 9px 0 18px;
    color: #1769e0;
    font-size: 18px;
    font-weight: 760;
}

.pricing-dialog-best-for {
    margin: 0 0 16px;
    padding: 14px 15px;
    border: 1px solid #dce7f4;
    border-radius: 12px;
    color: #28415f;
    background: #f6f9fd;
    font-size: 11.5px;
    font-weight: 650;
    line-height: 1.5;
}

.pricing-dialog-summary {
    margin: 0 0 22px;
    color: #52647c;
    font-size: 12.5px;
    line-height: 1.62;
}

.pricing-dialog h4 {
    margin: 0 0 12px;
    color: #15243b;
    font-size: 13px;
    font-weight: 760;
}

.pricing-dialog-features {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    list-style: none;
}

.pricing-dialog-features li {
    position: relative;
    padding: 12px 12px 12px 32px;
    border: 1px solid #e0e8f2;
    border-radius: 11px;
    color: #2b3d54;
    background: #ffffff;
    font-size: 10.5px;
    font-weight: 620;
    line-height: 1.45;
}

.pricing-dialog-features li::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 13px;
    width: 7px;
    height: 7px;
    border: 2px solid #1769e0;
    border-radius: 50%;
}

.pricing-dialog-value {
    margin-top: 18px;
    padding: 17px 18px;
    border-radius: 13px;
    color: #ffffff;
    background:
        radial-gradient(circle at 100% 0%, rgba(45, 140, 255, 0.26), transparent 40%),
        linear-gradient(135deg, #071426, #0c2b58);
}

.pricing-dialog-value strong {
    display: block;
    margin-bottom: 5px;
    color: #8fc3ff;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-dialog-value p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 11.5px;
    line-height: 1.55;
}

.pricing-dialog-note {
    margin: 15px 0 0;
    color: #7d8b9d;
    font-size: 9.5px;
    line-height: 1.5;
}

.pricing-dialog-actions {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 9px;
}

.pricing-dialog-actions button {
    min-height: 46px;
    padding: 11px 14px;
    border: 1px solid #cedaea;
    border-radius: 12px;
    color: #32465f;
    background: #ffffff;
    font-size: 11px;
    font-weight: 740;
}

.pricing-dialog-actions .pricing-dialog-primary {
    border-color: transparent;
    color: #ffffff;
    background: linear-gradient(135deg, #2178eb, #0d55c5);
    box-shadow: 0 10px 24px rgba(23, 105, 224, 0.22);
}

.price-details-button:focus-visible,
.pricing-dialog button:focus-visible {
    outline: 3px solid rgba(23, 105, 224, 0.22);
    outline-offset: 3px;
}

@media (max-width: 900px) {
    .price-card {
        min-height: 520px;
        padding: 30px 24px 24px;
    }

    .pricing-confidence {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

@media (max-width: 700px) {
    .price-card {
        min-height: auto;
    }

    .price-card > .price-card-best-for {
        min-height: auto;
    }

    .pricing-dialog-shell {
        padding: 28px 22px 24px;
    }

    .pricing-dialog-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .pricing-confidence {
        padding: 23px 20px;
    }

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

@media (prefers-reduced-motion: reduce) {
    .industry-marker,
    .price-card,
    .price-details-button {
        transition: none;
    }
}

/* =====================================================
   FULL-SCREEN PRICING EXPLORER
   ===================================================== */

.pricing-dialog {
    inset: 0;
    width: 100vw;
    max-width: none;
    height: 100dvh;
    max-height: none;
    margin: 0;
    overflow: auto;
    border: 0;
    border-radius: 0;
    background: #f4f7fb;
    box-shadow: none;
}

.pricing-dialog[open] {
    display: block;
}

.pricing-dialog::backdrop {
    background: #f4f7fb;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.pricing-dialog-shell {
    width: min(100%, 1480px);
    min-height: 100dvh;
    margin: 0 auto;
    padding: clamp(38px, 5vw, 76px) clamp(24px, 5.5vw, 82px) 64px;
    background:
        radial-gradient(circle at 100% 0%, rgba(208, 227, 252, 0.78), transparent 29%),
        radial-gradient(circle at 0% 50%, rgba(224, 235, 250, 0.62), transparent 28%),
        #f7f9fc;
}

.pricing-dialog-close {
    position: fixed;
    top: 22px;
    right: 28px;
    z-index: 5;
    min-height: 42px;
    padding: 0 15px;
    border-color: #cad7e7;
    border-radius: 11px;
    color: #31465f;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 28px rgba(15, 35, 62, 0.1);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    font-size: 10.5px;
}

.pricing-dialog-hero {
    max-width: 1050px;
    padding: 0 80px 34px 0;
    border-bottom: 1px solid #dce5f0;
}

.pricing-dialog-kicker {
    margin-right: 0;
    font-size: 10px;
}

.pricing-dialog h3 {
    max-width: 850px;
    font-size: clamp(48px, 7vw, 82px);
    line-height: 0.98;
}

.pricing-dialog-price {
    margin: 15px 0 20px;
    font-size: clamp(22px, 2.2vw, 30px);
}

.pricing-dialog-best-for {
    width: fit-content;
    max-width: 900px;
    margin-bottom: 18px;
    padding: 14px 16px;
    font-size: 12px;
}

.pricing-dialog-summary {
    max-width: 920px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.65;
}

.pricing-dialog-detail-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(310px, 0.7fr);
    align-items: start;
    gap: clamp(28px, 4vw, 58px);
}

.pricing-dialog-primary-column {
    display: grid;
    gap: 24px;
}

.pricing-dialog-section {
    padding: 24px;
    border: 1px solid #dce5f0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow:
        0 14px 34px rgba(15, 35, 62, 0.055),
        inset 0 1px 0 #ffffff;
}

.pricing-dialog h4 {
    margin-bottom: 15px;
    font-size: 15px;
    letter-spacing: -0.02em;
}

.pricing-dialog-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.pricing-dialog-features li {
    min-height: 64px;
    display: flex;
    align-items: center;
    padding: 13px 14px 13px 37px;
    font-size: 11.5px;
}

.pricing-dialog-features li::before {
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
}

.pricing-dialog-outcomes li {
    border-color: #d6e5f7;
    background: #f6faff;
}

.pricing-dialog-steps {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 9px;
    counter-reset: pricing-step;
    list-style: none;
}

.pricing-dialog-steps li {
    position: relative;
    min-height: 128px;
    padding: 46px 14px 14px;
    border: 1px solid #dfe7f1;
    border-radius: 12px;
    color: #2b3e56;
    background: #ffffff;
    font-size: 10.5px;
    font-weight: 620;
    line-height: 1.5;
    counter-increment: pricing-step;
}

.pricing-dialog-steps li::before {
    content: "0" counter(pricing-step);
    position: absolute;
    top: 13px;
    left: 14px;
    color: #1769e0;
    font-size: 10px;
    font-weight: 840;
    letter-spacing: 0.09em;
}

.pricing-dialog-side-column {
    position: sticky;
    top: 28px;
    display: grid;
    gap: 15px;
}

.pricing-dialog-value {
    margin-top: 0;
    padding: 22px;
    border-radius: 16px;
}

.pricing-dialog-value strong {
    font-size: 10px;
}

.pricing-dialog-value p {
    font-size: 12px;
    line-height: 1.62;
}

.pricing-dialog-quote-section {
    padding: 20px;
    border: 1px solid #dce5f0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 30px rgba(15, 35, 62, 0.05);
}

.pricing-dialog-quote-factors {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 9px;
    list-style: none;
}

.pricing-dialog-quote-factors li {
    position: relative;
    padding: 10px 11px 10px 29px;
    border-radius: 9px;
    color: #40546d;
    background: #f4f7fb;
    font-size: 10.5px;
    font-weight: 600;
    line-height: 1.45;
}

.pricing-dialog-quote-factors li::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1769e0;
    box-shadow: 0 0 0 4px rgba(23, 105, 224, 0.09);
}

.pricing-dialog-note {
    margin: 0;
    padding: 13px 14px;
    border-left: 3px solid #8dbcf4;
    border-radius: 0 9px 9px 0;
    background: rgba(231, 240, 251, 0.72);
    font-size: 10px;
}

.pricing-dialog-actions {
    margin-top: 0;
    grid-template-columns: 1fr;
}

.pricing-dialog-actions button {
    min-height: 48px;
}

@media (max-width: 980px) {
    .pricing-dialog-detail-grid {
        grid-template-columns: 1fr;
    }

    .pricing-dialog-side-column {
        position: static;
    }

    .pricing-dialog-actions {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

@media (max-width: 720px) {
    .pricing-dialog-shell {
        padding: 64px 18px 38px;
    }

    .pricing-dialog-close {
        top: 12px;
        right: 12px;
    }

    .pricing-dialog-hero {
        padding: 0 0 26px;
    }

    .pricing-dialog h3 {
        font-size: clamp(42px, 15vw, 64px);
    }

    .pricing-dialog-features,
    .pricing-dialog-steps {
        grid-template-columns: 1fr;
    }

    .pricing-dialog-steps li {
        min-height: auto;
        padding: 42px 14px 14px;
    }

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

/* =====================================================
   NATURAL, RESTRAINED PRICING FINISH
   ===================================================== */

.price-card,
.price-card.featured {
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 35, 62, 0.07);
}

.price-card:hover,
.price-card.featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 17px 38px rgba(15, 35, 62, 0.1);
}

.price-card.featured {
    border-width: 2px;
}

.price-card-kicker,
.pricing-dialog-kicker {
    letter-spacing: 0.015em;
    text-transform: none;
}

.price-card-featured-label {
    border-radius: 5px;
    letter-spacing: 0;
    text-transform: none;
}

.price-details-button,
.price-card.featured .price-details-button,
.pricing-dialog-actions .pricing-dialog-primary {
    border-radius: 8px;
    border-color: #155fc7;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    background: #155fc7;
    font-weight: 800;
    box-shadow: none;
}

.price-details-button:hover,
.price-card.featured .price-details-button:hover,
.pricing-dialog-actions .pricing-dialog-primary:hover {
    border-color: #0f4fa8;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    background: #0f4fa8;
    box-shadow: 0 8px 18px rgba(15, 79, 168, 0.2);
}

.price-details-button:active,
.price-card.featured .price-details-button:active {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    background: #0b438d;
    transform: translateY(0);
}

.pricing-confidence {
    border-radius: 12px;
    background: #0b213f;
    box-shadow: 0 15px 34px rgba(7, 20, 38, 0.13);
}

.pricing-confidence-copy > span,
.pricing-dialog-value strong {
    letter-spacing: 0.02em;
    text-transform: none;
}

.pricing-confidence > ul li {
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.06);
}

.pricing-dialog,
.pricing-dialog::backdrop {
    background: #f5f6f8;
}

.pricing-dialog-shell {
    background: #f5f6f8;
}

.pricing-dialog-close {
    border-radius: 7px;
    background: #ffffff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.pricing-dialog-section,
.pricing-dialog-quote-section {
    border-radius: 11px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 35, 62, 0.045);
}

.pricing-dialog-features li,
.pricing-dialog-steps li {
    border-radius: 8px;
    background: #ffffff;
}

.pricing-dialog-outcomes li {
    background: #f6f8fb;
}

.pricing-dialog-value {
    border-radius: 10px;
    background: #0b213f;
}

.pricing-dialog-best-for,
.pricing-dialog-note,
.pricing-dialog-quote-factors li {
    border-radius: 7px;
}

.pricing-dialog-actions button {
    border-radius: 8px;
}

/* =====================================================
   CLIENT TRUST SECTION
   ===================================================== */

.client-trust {
    position: relative;
    overflow: hidden;
    padding: 104px 0;
    border-top: 1px solid #e5ebf3;
    border-bottom: 1px solid #e5ebf3;
    background: #f5f8fc;
}

.client-trust::before {
    content: "";
    position: absolute;
    top: -86px;
    right: -62px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #e2edfb;
    pointer-events: none;
}

.client-trust-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 72px;
    align-items: start;
}

.client-trust-intro {
    position: sticky;
    top: 120px;
}

.client-trust-kicker {
    margin: 0 0 14px;
    color: #1769e0;
    font-size: 14px;
    font-weight: 800;
}

.client-trust-intro h2 {
    max-width: 620px;
    margin: 0;
    color: #071426;
    font-size: clamp(38px, 4.2vw, 62px);
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.client-trust-intro > p:not(.client-trust-kicker) {
    max-width: 590px;
    margin: 24px 0 0;
    color: #53647a;
    font-size: 18px;
    line-height: 1.75;
}

.client-trust-button {
    min-height: 52px;
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.client-trust-points {
    border-top: 1px solid #cfd9e6;
}

.client-trust-point {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 20px;
    padding: 27px 8px;
    border-bottom: 1px solid #cfd9e6;
    transition: padding 0.2s ease, background 0.2s ease;
}

.client-trust-point:hover {
    padding-right: 18px;
    padding-left: 18px;
    background: rgba(255, 255, 255, 0.72);
}

.client-trust-number {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #b9cce3;
    border-radius: 8px;
    color: #1769e0;
    background: #ffffff;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.client-trust-point h3 {
    margin: 1px 0 8px;
    color: #0b1729;
    font-size: 21px;
    line-height: 1.25;
}

.client-trust-point p {
    max-width: 650px;
    margin: 0;
    color: #607086;
    font-size: 15px;
    line-height: 1.7;
}

.client-trust-commitment {
    position: relative;
    margin-top: 48px;
    padding: 30px 32px;
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
    gap: 32px;
    align-items: center;
    border-radius: 14px;
    color: #ffffff;
    background: #0b2347;
}

.client-trust-commitment > p {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 750;
    line-height: 1.4;
}

.client-trust-commitment ul {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
    list-style: none;
}

.client-trust-commitment li {
    position: relative;
    padding-left: 20px;
    color: #dce9f8;
    font-size: 14px;
    line-height: 1.45;
}

.client-trust-commitment li::before {
    content: "";
    position: absolute;
    top: 0.52em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #5aa1f5;
    box-shadow: 0 0 0 4px rgba(90, 161, 245, 0.14);
}

@media (max-width: 960px) {
    .client-trust-layout {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .client-trust-intro {
        position: static;
    }

    .client-trust-intro h2,
    .client-trust-intro > p:not(.client-trust-kicker) {
        max-width: 760px;
    }
}

@media (max-width: 680px) {
    .client-trust {
        padding: 76px 0;
    }

    .client-trust::before {
        width: 150px;
        height: 150px;
    }

    .client-trust-layout {
        gap: 38px;
    }

    .client-trust-intro h2 {
        font-size: clamp(34px, 10vw, 48px);
        line-height: 1.07;
    }

    .client-trust-intro > p:not(.client-trust-kicker) {
        font-size: 16px;
        line-height: 1.7;
    }

    .client-trust-button {
        width: 100%;
    }

    .client-trust-point {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 15px;
        padding: 23px 0;
    }

    .client-trust-point:hover {
        padding-right: 10px;
        padding-left: 10px;
    }

    .client-trust-number {
        width: 38px;
        height: 38px;
    }

    .client-trust-point h3 {
        font-size: 19px;
    }

    .client-trust-commitment {
        margin-top: 36px;
        padding: 26px 22px;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .client-trust-commitment ul {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .client-trust-point {
        transition: none;
    }
}

/* =====================================================
   INTERACTIVE SERVICE AND BENEFIT CARDS
   ===================================================== */

body.detail-dialog-open {
    overflow: hidden;
}

.service-card.interactive-detail-card,
.benefit-card.interactive-detail-card {
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    touch-action: manipulation;
}

.service-card.interactive-detail-card {
    min-height: 238px;
    padding: 28px;
    border: 1px solid #dce6f2;
    background: #ffffff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.benefit-card.interactive-detail-card {
    min-height: 254px;
    border-color: #dce6f2;
}

.service-card.interactive-detail-card:hover,
.benefit-card.interactive-detail-card:hover {
    border-color: #80b5f4;
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(15, 46, 83, 0.1);
}

.service-card.interactive-detail-card:focus-visible,
.benefit-card.interactive-detail-card:focus-visible {
    outline: 3px solid rgba(23, 105, 224, 0.25);
    outline-offset: 4px;
    border-color: #1769e0;
}

.service-card.interactive-detail-card h3 {
    margin-bottom: 12px;
    font-size: 19px;
    line-height: 1.3;
}

.service-card.interactive-detail-card > p {
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.65;
}

.benefit-card.interactive-detail-card > p {
    margin-bottom: 24px;
}

.interactive-card-footer {
    width: 100%;
    margin-top: auto;
    padding: 12px 12px 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid #d7e5f6;
    border-radius: 11px;
    color: #135fc8;
    background: #f4f8fd;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
}

.interactive-card-footer::before {
    display: none;
}

.interactive-card-arrow {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: #1769e0;
    font-size: 16px;
    line-height: 1;
    transition: transform 0.2s ease, background 0.2s ease;
}

.interactive-detail-card:hover .interactive-card-arrow {
    transform: translateX(3px);
    background: #0f4fa8;
}

/* Shared card detail dialog */

.detail-dialog {
    position: fixed;
    inset: 0;
    z-index: 6000;
    padding: 24px;
    display: grid;
    place-items: center;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.detail-dialog.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.detail-dialog-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 18, 36, 0.7);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.detail-dialog-panel {
    position: relative;
    width: min(880px, 100%);
    max-height: calc(100dvh - 48px);
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 34px 90px rgba(4, 18, 36, 0.34);
    transform: translateY(18px) scale(0.985);
    transition: transform 0.24s ease;
    scrollbar-width: thin;
}

.detail-dialog.is-open .detail-dialog-panel {
    transform: translateY(0) scale(1);
}

.detail-dialog-header {
    padding: 30px 34px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    color: #ffffff;
    background: #0b2347;
}

.detail-dialog-label {
    margin: 0 0 8px;
    color: #72b3ff;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.04em;
}

.detail-dialog-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.detail-dialog-close {
    min-width: 72px;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 9px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
    font: inherit;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
}

.detail-dialog-close:hover {
    background: rgba(255, 255, 255, 0.16);
}

.detail-dialog-body {
    padding: 32px 34px;
}

.detail-dialog-summary {
    max-width: 760px;
    margin: 0;
    color: #4c5e75;
    font-size: 18px;
    line-height: 1.7;
}

.detail-dialog-section {
    margin-top: 28px;
    padding: 26px;
    border: 1px solid #dce6f2;
    border-radius: 14px;
    background: #f8fafd;
}

.detail-dialog-section h3 {
    margin: 0 0 18px;
    color: #0b1729;
    font-size: 18px;
}

.detail-dialog-list {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 24px;
    list-style: none;
}

.detail-dialog-list li {
    position: relative;
    padding-left: 24px;
    color: #44576e;
    font-size: 14px;
    line-height: 1.55;
}

.detail-dialog-list li::before {
    content: "";
    position: absolute;
    top: 0.45em;
    left: 0;
    width: 9px;
    height: 9px;
    border: 2px solid #1769e0;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(23, 105, 224, 0.08);
}

.detail-dialog-outcome {
    margin-top: 18px;
    padding: 22px 24px;
    border-radius: 13px;
    color: #ffffff;
    background: #102f5a;
}

.detail-dialog-outcome p {
    margin: 0 0 7px;
    color: #72b3ff;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.04em;
}

.detail-dialog-outcome strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.6;
}

.detail-dialog-actions {
    padding: 20px 34px 26px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    border-top: 1px solid #e2eaf3;
    background: #f8fafd;
}

.detail-dialog-primary,
.detail-dialog-secondary {
    min-height: 50px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.detail-dialog-primary {
    border: 1px solid #1769e0;
    color: #ffffff;
    background: #1769e0;
}

.detail-dialog-primary:hover {
    border-color: #0f4fa8;
    color: #ffffff;
    background: #0f4fa8;
}

.detail-dialog-secondary {
    border: 1px solid #cbd8e8;
    color: #14243a;
    background: #ffffff;
}

.detail-dialog-secondary:hover {
    border-color: #8ea9c8;
    background: #f2f6fb;
}

.detail-dialog-close:focus-visible,
.detail-dialog-primary:focus-visible,
.detail-dialog-secondary:focus-visible {
    outline: 3px solid rgba(90, 161, 245, 0.38);
    outline-offset: 3px;
}

@media (max-width: 680px) {
    .services .section-intro {
        margin-bottom: 34px;
    }

    .service-grid,
    .benefits-grid {
        gap: 16px;
    }

    .service-card.interactive-detail-card,
    .benefit-card.interactive-detail-card {
        min-height: 0;
        padding: 24px;
        border-radius: 16px;
    }

    .service-card.interactive-detail-card h3,
    .benefit-card.interactive-detail-card h3 {
        font-size: 21px;
    }

    .service-card.interactive-detail-card > p,
    .benefit-card.interactive-detail-card > p {
        margin-bottom: 22px;
        font-size: 15px;
        line-height: 1.6;
    }

    .interactive-card-footer {
        margin-top: auto;
        padding: 12px 12px 12px 14px;
        font-size: 14px;
    }

    .detail-dialog {
        padding: 0;
        place-items: end stretch;
    }

    .detail-dialog-panel {
        width: 100%;
        max-height: 92dvh;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        border-radius: 22px 22px 0 0;
        transform: translateY(28px);
    }

    .detail-dialog-header {
        padding: 24px 22px;
        gap: 16px;
    }

    .detail-dialog-header h2 {
        font-size: 31px;
    }

    .detail-dialog-close {
        min-width: 64px;
        min-height: 40px;
        padding: 0 12px;
    }

    .detail-dialog-body {
        padding: 24px 22px;
    }

    .detail-dialog-summary {
        font-size: 16px;
        line-height: 1.65;
    }

    .detail-dialog-section {
        margin-top: 22px;
        padding: 21px 19px;
    }

    .detail-dialog-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .detail-dialog-actions {
        padding: 16px 22px calc(18px + env(safe-area-inset-bottom));
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .interactive-card-arrow,
    .detail-dialog,
    .detail-dialog-panel {
        transition: none;
    }
}

/* =====================================================
   CLICKABLE FOOTER EMAIL
   ===================================================== */

.footer .footer-column a.footer-email {
    width: min(100%, 330px);
    margin: 0;
    padding: 12px 13px 12px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    overflow: hidden;
    border: 1px solid rgba(123, 183, 255, 0.3);
    border-radius: 13px;
    color: #ffffff !important;
    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(96, 165, 250, 0.24),
            transparent 42%
        ),
        linear-gradient(
            135deg,
            rgba(21, 72, 139, 0.68),
            rgba(10, 39, 82, 0.92)
        );
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    text-decoration: none !important;
    transform: none;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.footer-email-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-email-label {
    color: #79b8ff;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-email-address {
    color: #ffffff;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.footer-email-arrow {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    color: #ffffff;
    background: linear-gradient(135deg, #2587ff, #1265d6);
    box-shadow:
        0 8px 18px rgba(7, 94, 232, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
    font-size: 18px;
    line-height: 1;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.footer .footer-column a.footer-email:hover {
    border-color: rgba(133, 194, 255, 0.7);
    color: #ffffff !important;
    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(96, 165, 250, 0.34),
            transparent 44%
        ),
        linear-gradient(
            135deg,
            rgba(27, 88, 166, 0.82),
            rgba(11, 47, 99, 0.98)
        );
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    text-decoration: none !important;
    transform: translateY(-2px);
}

.footer-email:hover .footer-email-arrow {
    transform: translateX(3px);
    background: linear-gradient(135deg, #3591ff, #1769e0);
}

.footer .footer-column a.footer-email:focus-visible {
    outline: 3px solid rgba(105, 173, 255, 0.5);
    outline-offset: 4px;
    border-radius: 13px;
}

/* =====================================================
   GENERATED INDUSTRY IMAGE CARDS
   ===================================================== */

.industry-grid > div {
    --industry-accent: #1769e0;
    --industry-soft: rgba(23, 105, 224, 0.16);
    --industry-image: none;
    --industry-image-position: center;
    container-type: inline-size;
    isolation: isolate;
    min-height: 206px;
    border-color: color-mix(
        in srgb,
        var(--industry-accent) 28%,
        #e4ebf4
    );
    background-color: #eef5fc;
    background-image:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.18) 0%,
            rgba(255, 255, 255, 0.48) 32%,
            rgba(248, 251, 255, 0.9) 68%,
            rgba(255, 255, 255, 0.98) 100%
        ),
        var(--industry-image);
    background-position:
        center,
        var(--industry-image-position);
    background-repeat: no-repeat;
    background-size: cover;
    color: #091a36;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
    box-shadow:
        0 16px 34px rgba(15, 35, 62, 0.1),
        inset 0 3px 0 var(--industry-accent);
}

.industry-grid > div::before {
    content: "";
    position: absolute;
    inset: 8px;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 9px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    pointer-events: none;
}

.industry-grid > div::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.2),
        transparent 42%
    );
    pointer-events: none;
}

.industry-grid > div:nth-child(1) {
    --industry-accent: #c66f1d;
    --industry-soft: rgba(198, 111, 29, 0.18);
    --industry-image: url("../images/industries/trades-home-services.webp");
    --industry-image-position: 48% center;
}

.industry-grid > div:nth-child(2) {
    --industry-accent: #147b87;
    --industry-soft: rgba(20, 123, 135, 0.18);
    --industry-image: url("../images/industries/small-businesses.webp");
    --industry-image-position: 54% center;
}

.industry-grid > div:nth-child(3) {
    --industry-accent: #6553d8;
    --industry-soft: rgba(101, 83, 216, 0.18);
    --industry-image: url("../images/industries/startups.webp");
    --industry-image-position: 52% center;
}

.industry-grid > div:nth-child(4) {
    --industry-accent: #178456;
    --industry-soft: rgba(23, 132, 86, 0.18);
    --industry-image: url("../images/industries/retail-ecommerce.webp");
    --industry-image-position: center;
}

.industry-grid > div:nth-child(5) {
    --industry-accent: #1d5f9d;
    --industry-soft: rgba(29, 95, 157, 0.18);
    --industry-image: url("../images/industries/professional-services.webp");
    --industry-image-position: center;
}

.industry-grid > div:nth-child(6) {
    --industry-accent: #bd5630;
    --industry-soft: rgba(189, 86, 48, 0.18);
    --industry-image: url("../images/industries/restaurants-cafes.webp");
    --industry-image-position: center;
}

.industry-grid > div:nth-child(7) {
    --industry-accent: #218164;
    --industry-soft: rgba(33, 129, 100, 0.18);
    --industry-image: url("../images/industries/health-fitness.webp");
    --industry-image-position: center;
}

.industry-grid > div:nth-child(8) {
    --industry-accent: #a9439f;
    --industry-soft: rgba(169, 67, 159, 0.18);
    --industry-image: url("../images/industries/creative-brands.webp");
    --industry-image-position: center;
}

.industry-grid > div .industry-number,
.industry-grid > div .industry-marker {
    border-color: color-mix(
        in srgb,
        var(--industry-accent) 28%,
        #d7e2ef
    );
    color: var(--industry-accent);
    background: rgba(255, 255, 255, 0.88);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow:
        0 8px 18px var(--industry-soft),
        inset 0 1px 0 #ffffff;
}

.industry-grid > div .industry-card-action {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 9px 10px;
    border: 1px solid color-mix(
        in srgb,
        var(--industry-accent) 22%,
        rgba(255, 255, 255, 0.7)
    );
    border-radius: 10px;
    color: var(--industry-accent);
    background: rgba(255, 255, 255, 0.82);
    -webkit-backdrop-filter: blur(11px);
    backdrop-filter: blur(11px);
    text-shadow: none;
    box-shadow:
        0 7px 18px rgba(12, 31, 57, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.industry-grid > div:hover {
    border-color: var(--industry-accent);
    box-shadow:
        0 22px 46px rgba(15, 35, 62, 0.17),
        inset 0 3px 0 var(--industry-accent);
}

.industry-grid > div:hover .industry-number,
.industry-grid > div:hover .industry-marker {
    border-color: var(--industry-accent);
    color: #ffffff;
    background: var(--industry-accent);
}

@supports not (
    color: color-mix(in srgb, #000000 50%, #ffffff)
) {
    .industry-grid > div,
    .industry-grid > div .industry-number,
    .industry-grid > div .industry-marker {
        border-color: #cfdcea;
    }
}

@media (max-width: 620px) {
    .footer .footer-column a.footer-email {
        width: 100%;
    }

    .footer-email-address {
        font-size: 11.5px;
    }

    .industry-grid > div {
        min-height: 220px;
        background-image:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.12) 0%,
                rgba(255, 255, 255, 0.45) 34%,
                rgba(248, 251, 255, 0.92) 70%,
                rgba(255, 255, 255, 0.99) 100%
            ),
            var(--industry-image);
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer .footer-column a.footer-email,
    .footer-email-arrow {
        transition: none;
    }
}

/* =====================================================
   GENERATED BENEFIT IMAGE CARDS
   ===================================================== */

.benefit-card.interactive-detail-card {
    --benefit-image: none;
    --benefit-image-position: center;
    isolation: isolate;
    min-height: 340px;
    overflow: hidden;
    border-color: rgba(23, 105, 224, 0.18);
    background-color: #eef5fc;
    background-image:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.16) 30%,
            rgba(248, 251, 255, 0.46) 66%,
            rgba(255, 255, 255, 0.8) 100%
        ),
        var(--benefit-image);
    background-position:
        center,
        var(--benefit-image-position);
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow:
        0 16px 34px rgba(15, 35, 62, 0.09),
        inset 0 3px 0 #1769e0;
}

.benefit-card.interactive-detail-card::before {
    content: "";
    position: absolute;
    top: 92px;
    right: 18px;
    bottom: 96px;
    left: 18px;
    z-index: 0;
    border: 1px solid rgba(207, 224, 244, 0.86);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.66);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow:
        0 10px 26px rgba(15, 46, 83, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
    pointer-events: none;
}

.benefit-card.interactive-detail-card > * {
    position: relative;
    z-index: 1;
}

.benefits-grid .benefit-card:nth-child(1) {
    --benefit-image: url("../images/benefits/fast-performance.png");
    --benefit-image-position: center;
}

.benefits-grid .benefit-card:nth-child(2) {
    --benefit-image: url("../images/benefits/mobile-responsive.png");
    --benefit-image-position: center;
}

.benefits-grid .benefit-card:nth-child(3) {
    --benefit-image: url("../images/benefits/built-for-conversions.png");
    --benefit-image-position: center;
}

.benefits-grid .benefit-card:nth-child(4) {
    --benefit-image: url("../images/benefits/seo-ready.png");
    --benefit-image-position: center;
}

.benefits-grid .benefit-card:nth-child(5) {
    --benefit-image: url("../images/benefits/secure-reliable.png");
    --benefit-image-position: center;
}

.benefits-grid .benefit-card:nth-child(6) {
    --benefit-image: url("../images/benefits/ongoing-support.png");
    --benefit-image-position: center;
}

.benefit-card.interactive-detail-card .benefit-index {
    background: rgba(255, 255, 255, 0.88);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.benefit-card.interactive-detail-card h3 {
    color: #091a36;
    font-weight: 820;
    text-shadow: none;
}

.benefit-card.interactive-detail-card > p {
    color: #26364d;
    font-weight: 600;
    text-shadow: none;
}

.benefit-card.interactive-detail-card .interactive-card-footer {
    padding: 13px 16px;
    border-color: rgba(23, 105, 224, 0.2);
    border-radius: 11px;
    color: #1769e0;
    background: rgba(255, 255, 255, 0.88);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow:
        0 8px 20px rgba(15, 46, 83, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.benefit-card.interactive-detail-card .interactive-card-arrow {
    width: auto;
    height: auto;
    flex: 0 0 auto;
    border-radius: 0;
    color: #1769e0;
    background: transparent;
    font-size: 18px;
}

.benefit-card.interactive-detail-card:hover .interactive-card-arrow {
    transform: translateX(4px);
    background: transparent;
}

.benefit-card.interactive-detail-card:hover {
    border-color: #1769e0;
    box-shadow:
        0 22px 46px rgba(15, 35, 62, 0.16),
        inset 0 3px 0 #1769e0;
}

@media (max-width: 680px) {
    .benefit-card.interactive-detail-card {
        min-height: 320px;
        background-image:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.14) 0%,
                rgba(255, 255, 255, 0.44) 32%,
                rgba(248, 251, 255, 0.92) 66%,
                rgba(255, 255, 255, 0.99) 100%
            ),
            var(--benefit-image);
    }

    .benefit-card.interactive-detail-card::before {
        top: 86px;
        right: 14px;
        bottom: 90px;
        left: 14px;
        background: rgba(255, 255, 255, 0.74);
    }
}

/* =====================================================
   GENERATED SERVICE IMAGE CARDS
   ===================================================== */

.service-card.interactive-detail-card {
    --service-image: none;
    --service-image-position: center;
    isolation: isolate;
    min-height: 320px;
    overflow: hidden;
    border-color: rgba(23, 105, 224, 0.18);
    background-color: #eef5fc;
    background-image:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.16) 30%,
            rgba(248, 251, 255, 0.46) 66%,
            rgba(255, 255, 255, 0.8) 100%
        ),
        var(--service-image);
    background-position:
        center,
        var(--service-image-position);
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow:
        0 16px 34px rgba(15, 35, 62, 0.09),
        inset 0 3px 0 #1769e0;
}

.service-card.interactive-detail-card::before {
    content: "";
    position: absolute;
    top: 22px;
    right: 18px;
    bottom: 138px;
    left: 18px;
    z-index: 0;
    border: 1px solid rgba(207, 224, 244, 0.86);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.66);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow:
        0 10px 26px rgba(15, 46, 83, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
    pointer-events: none;
}

.service-card.interactive-detail-card > * {
    position: relative;
    z-index: 1;
}

#website-design {
    --service-image: url("../images/services/website-design.png");
    --service-image-position: center;
}

#website-redesign {
    --service-image: url("../images/services/website-redesign.png");
    --service-image-position: center;
}

#seo-optimization {
    --service-image: url("../images/services/seo-optimization.png");
    --service-image-position: center;
}

#website-maintenance {
    --service-image: url("../images/services/website-maintenance.png");
    --service-image-position: center;
}

.service-card.interactive-detail-card h3 {
    color: #091a36;
    font-weight: 820;
    text-shadow: none;
}

.service-card.interactive-detail-card > p {
    color: #26364d;
    font-weight: 600;
    text-shadow: none;
}

.service-card.interactive-detail-card .interactive-card-footer {
    padding: 13px 16px;
    border-color: rgba(23, 105, 224, 0.2);
    border-radius: 11px;
    color: #1769e0;
    background: rgba(255, 255, 255, 0.88);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow:
        0 8px 20px rgba(15, 46, 83, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.service-card.interactive-detail-card .interactive-card-arrow {
    width: auto;
    height: auto;
    flex: 0 0 auto;
    border-radius: 0;
    color: #1769e0;
    background: transparent;
    font-size: 18px;
}

.service-card.interactive-detail-card:hover .interactive-card-arrow {
    transform: translateX(4px);
    background: transparent;
}

.service-card.interactive-detail-card:hover {
    border-color: #1769e0;
    box-shadow:
        0 22px 46px rgba(15, 35, 62, 0.16),
        inset 0 3px 0 #1769e0;
}

@media (max-width: 680px) {
    .service-card.interactive-detail-card {
        min-height: 320px;
    }

    .service-card.interactive-detail-card::before {
        top: 18px;
        right: 14px;
        bottom: 104px;
        left: 14px;
        background: rgba(255, 255, 255, 0.74);
    }
}

/* =====================================================
   UNIFIED INDUSTRY CARD THEME
   ===================================================== */

.industries .industry-grid > div {
    --industry-accent: #1769e0;
    --industry-soft: rgba(23, 105, 224, 0.16);
    border-color: rgba(23, 105, 224, 0.28);
    box-shadow:
        0 16px 34px rgba(15, 35, 62, 0.1),
        inset 0 3px 0 #1769e0;
}

.industries .industry-grid .industry-label {
    width: 100%;
    padding: 7px 3px;
    border: 1px solid rgba(207, 224, 244, 0.82);
    border-radius: 8px;
    color: #07162e;
    background: rgba(255, 255, 255, 0.72);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    box-shadow:
        0 7px 18px rgba(15, 46, 83, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
    font-size: clamp(10.75px, 7cqw, 14.5px);
    font-weight: 850;
    line-height: 1.22;
    letter-spacing: -0.035em;
    white-space: nowrap;
    text-shadow: none;
}

.industries .industry-grid > div:first-child .industry-label {
    width: calc(100% + 18px);
    max-width: none;
    flex: 0 0 auto;
    padding-inline: 4px;
    overflow: hidden;
    font-size: 11px;
    letter-spacing: -0.055em;
}

.industries .industry-grid > div:first-child .industry-card-action {
    font-size: 10px;
}

.industries .industry-grid > div .industry-card-action {
    border-color: rgba(23, 105, 224, 0.22);
    color: #1769e0;
    font-size: clamp(10px, 5.8cqw, 12px);
}

.industries .industry-grid > div:hover {
    border-color: #1769e0;
}
