/* =========================
   CODEX REFACTORED COPY
   Source: assets/css/style.css
   Notes: selector names, IDs, animation names, media-query breakpoints,
   and JavaScript-facing class hooks are preserved.
========================= */

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

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

/* =========================
   GLOBAL SMOOTH SCROLL
========================= */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

}

/* =========================
   ROOT VARIABLES
========================= */

:root {
    --primary-color: #7c4dff;
    --secondary-color: #151515;
    --accent-blue: #00c3ff;
    --purple-glow: rgba(124, 77, 255, 0.35);
    --blue-glow: rgba(0, 195, 255, 0.18);
    --card-hover-border: rgba(0, 195, 255, 0.35);
    --gradient-primary:
    linear-gradient(
    135deg,
    #7c4dff,
    #5f2dff
    );
    --gradient-secondary:
    linear-gradient(
    135deg,
    #00c3ff,
    #0077ff
    );
    --background-color: #0d0d0d;
    --card-color: #1b1b1b;
    --text-color: #ffffff;
    --text-secondary: #b3b3b3;
    --border-color: #2a2a2a;
    --container-width: 1200px;
    --transition-speed: 0.3s;
}

/* =========================
   BODY
========================= */

html,
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

/* =========================
   CONTAINER
========================= */

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: auto;
}

/* =========================
   GRID SYSTEM
========================= */

.grid {
    display: grid;
    gap: 30px;
}

/* =========================
   USE CASES GRID
========================= */

.use-cases-grid {
    justify-content: center;
}

/* =========================
   LINKS
========================= */

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

/* =========================
   BUTTONS
========================= */

button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
}

.hero-button {
    display: inline-block;
    padding: 15px 17px;
    border-radius: 14px;
    background: linear-gradient(
    135deg,
    #7b4dff,
    #5f2dff
    );
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(123, 77, 255, 0.35);
}

button:hover {
    opacity: 0.85;
}

.about-hero {
    padding: 30px 20px 100px;
    text-align: center;
}

.about-hero p {
    max-width: 850px;
    margin: 25px auto;
    line-height: 1.8;
}

.mission-section {
    padding: 90px 0;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-services {
    padding: 100px 0;
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(
    auto-fit,
    minmax(260px, 1fr)
    );
    gap: 30px;
    margin-top: 60px;
}

.about-service-card {
    background: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
}

.about-service-card:hover {
    border-color: #8b5cf6;
}

.about-service-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-service-card h3 {
    margin-bottom: 15px;
}

.about-service-card p {
    line-height: 1.8;
}

.future-section {
    padding: 100px 0;
}

.future-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.future-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-cta {
    padding: 100px 0;
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    border-radius: 24px;
    background: var(--card-color);
    border: 1px solid var(--border-color);
}

.cta-box p {
    max-width: 700px;
    margin: 20px auto 35px;
}

/* =========================
   FORMS
========================= */

input,
textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background-color: var(--card-color);
    color: var(--text-color);
    margin-top: 8px;
    transition: 0.3s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.navbar {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background-color: var(--background-color);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: background-color 0.3s ease,
    border-color 0.3s ease;
}

/* =========================
   NAV CONTAINER
======================== */

.nav-container {
    width: 90%;
    max-width: var(--container-width);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* =========================
   LOGO
========================= */

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 2001;
    display: inline-block;
}

.logo:hover {
    opacity: 0.8;
}

.logo {
    display:flex;
    align-items:center;
    gap:0.1rem;
}

.logo-icon {
    width:64px;
    height:64px;
    object-fit:contain;
}

.footer-brand-header {
    display:flex;
    align-items:center;
    gap:0.75rem;
    margin-bottom:1rem;
}

.footer-logo-icon {
    width:32px;
    height:32px;
    flex-shrink:0;
}

.footer-logo {
    margin:0;
}

/* =========================
   NAV MENU
========================= */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1000;
}

/* =========================
   NAV LINKS
========================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    transition: 0.3s;
}

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

.nav-links a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

    /* =========================
   NAVIGATION DEMO CTA
========================= */

.nav-links .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        #7b4dff,
        #5f2dff
    );
    color: #ffffff;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(95, 45, 255, 0.22);
    transition:
        translate 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.nav-links .nav-cta:hover {
    color: #ffffff;
    translate: 0 -2px;
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 10px 24px rgba(95, 45, 255, 0.34);
}

.nav-links .nav-cta:focus-visible {
    outline: 3px solid rgba(123, 77, 255, 0.35);
    outline-offset: 3px;
}

.nav-links i {
    display: none;
}

/* =========================
   MENU CONTROLS
========================= */

.menu-controls {
    display: flex;
    align-items: center;
    gap: 14px;
}

#theme-toggle {
    padding: 8px 14px;
    font-size: 0.9rem;
    border-radius: 12px;
}

/* =========================
   LANGUAGE SELECTOR
========================= */

.language-selector {
    display:flex;
    align-items:center;
    gap:6px;
    white-space:nowrap;
    color:var(--text-secondary);
}

.language-selector span {
    opacity:.5;
}

.language-selector span {
    cursor: pointer;
    transition: 0.3s;
}

.language-selector span:hover {
    color: var(--text-color);
}

.language-btn {
    background:none;
    border:none;
    padding:0;
    margin:0;
    font:inherit;
    font-size:.85rem;
    line-height:1;
    color:inherit;
    cursor:pointer;
    transition:.3s;
}

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

/* =========================
   HAMBURGER
========================= */

.hamburger {
    display: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    font-size: 2rem;
    line-height: 1;
    color: inherit;
    cursor: pointer;
    z-index: 2001;
}

.hamburger:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
    border-radius: 4px;
}

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

.hero {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding:20px 20px 80px;
    background-color: var(--background-color);
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-main-image {
    width:min(85vw, 1400px);
    height:auto;
    display:block;
    margin:0 auto 20px;
}

.hero-content {
    max-width:950px;
    margin:0 auto;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .hero {
        min-height: 0;
        padding: 100px 20px;
    }

    .hero::before {
        width: 350px;
        height: 350px;
        right: 50%;
        top: 75%;
        transform: translate(50%, -50%);
        opacity: 0.08;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .hero-main-image {
        max-width:320px;
    }

    .hero h1 {
        font-size:2.3rem;
    }
}

/* =========================
   ABOUT IMAGE ILLUSTRATION
========================= */

.about-main-image {
    width:100%;
    max-width:1000px;
    height:auto;
    display:block;
    margin:0 auto 60px auto;
}

@media (max-width:768px) {
    .about-main-image {
        max-width:500px;
        margin-bottom:40px;
    }
}

/* =========================
   GLOBAL SECTION SPACING
========================= */

section {
    padding: 80px 0;
}

/* =========================
   CARDS
========================= */

.card {
    background-color: var(--card-color);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition-speed);
}

.card:hover {
    transform: translateY(-6px);
    border-color: var(--card-hover-border);
    box-shadow:
    0 15px 35px rgba(0,0,0,0.25),
    0 0 20px var(--blue-glow);
}

/* =========================
   LIGHT MODE
========================= */

body.light-mode {
    --background-color: #f5f5f5;
    --card-color: #ffffff;
    --text-color: #111111;
    --text-secondary: #555555;
    --border-color: #dddddd;
}

/* =========================
   TRANSITIONS
========================= */

body,
.navbar,
.hero,
button {
    transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

/* =========================
   404 PAGE
========================= */

.error-page-section {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 5rem;
    text-align: center;
}

.error-page-content {
    max-width: 760px;
    margin: 0 auto;
}

.error-code {
    display: block;
    margin-bottom: 1rem;
    font-size: clamp(5rem, 16vw, 10rem);
    font-weight: 800;
    line-height: 0.9;
    opacity: 0.14;
}

.error-page-content h1 {
    margin-top: 1.5rem;
    margin-bottom: 1.25rem;
}

.error-page-content > p {
    max-width: 640px;
    margin: 0 auto 2rem;
}

.error-page-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.error-contact-link {
    display: inline-block;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 600px) {

    .error-page-section {
        padding-top: 6rem;
    }

    .error-page-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .error-page-actions .hero-button {
        width: 100%;
        text-align: center;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
    /* Navbar */

    .nav-container {
        position:relative;
        display:grid;
        grid-template-columns:auto 1fr auto;
        align-items:center;
    }

    /* Hamburger */

    .hamburger {
        display: block;
    }

    /* Mobile Section Spacing */

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 80px 20px 60px;
    }

    /* Hide desktop menu */

    .nav-menu {
        display: none;
        top: 0;
        right: -100%;
    }

    /* Open mobile menu */

    .nav-menu.active {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: 75%;
        max-width: 280px;
        height: 100vh;
        background-color: var(--card-color);
        padding: 100px 30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        z-index: 2000;
        border-left: 1px solid var(--border-color);
    }

    /* Overlay */

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(5px);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        z-index: 1500;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Mobile links */

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        width: 100%;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .nav-links a.active{
    border-bottom:none;
    color:var(--primary-color);
    font-weight:600;
    }

    .nav-links .nav-cta {
    width: 100%;
    padding: 13px 16px;
    text-align: center;
}

    .nav-links i {
        display: inline-block;
        width: 20px;
    }

    /* Controls inside drawer */

    .menu-controls {
        width:auto;
        justify-self:end;
        display:flex;
        align-items:center;
        gap:8px;
    }

    /* Hero */

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .hero-content {
        width: 100%;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero p {
        max-width: 320px;
        margin: 0 auto 30px;
    }

    /* Mobile navbar adjustments */

    .logo {
        font-size: 1.1rem;
        position: relative;
        z-index: 1000;
    }

    .menu-controls {
        gap: 8px;
    }

    .language-selector {
        font-size:.75rem;
        gap:4px;
    }
}

@media (max-width: 768px) {
    .accordion-header {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .accordion-header .accordion-title {
        font-size: 1.15rem;
        line-height: 1.4;
        margin: 0;
    }

    .accordion-content {
        padding: 0 20px;
    }

    .faq-accordion.active .accordion-content {
        padding: 0 20px 18px;
    }

    .accordion-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 768px) {
    .faq-container {
        width: 100%;
    }
}

/* =========================
   PAGE SECTIONS
========================= */

.page-section {
    min-height: calc(42vh - 90px);
    padding: 140px 20px 80px;
    background-color: var(--background-color);
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
}

.page-section .container {
    width: 100%;
}

/* Page Titles */

.page-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}

/* Paragraphs */

.page-section p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: center;
}

.faq-container .accordion-content p {
    max-width:none;
    margin:0;
    text-align:left;
}

.service-description-box {
    text-align:center;
    max-width:900px;
    margin:0 auto 60px;
}

.service-description-box p {
    max-width:700px;
    margin:0 auto 50px;
}

/* Service List */

.service-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
}

.service-list li {
    background-color: var(--card-color);
    padding: 18px 22px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: 0.3s;
}

.service-list li:hover {
    transform: translateX(5px);
    border-color: var(--primary-color);
}

/* Mobile */

@media (max-width: 768px) {
    .page-section h1 {
        font-size: 2.2rem;
    }

    .page-section {
        padding-top: 120px;
    }
}

/* =========================
   PRODUCTS PAGE
========================= */

.products-hero {
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 80px;
}

.products-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.products-hero p {
    max-width: 800px;
    margin: auto;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Products Grid */

.products-grid-section {
    padding: 60px 0 100px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}

/* Product button */

.product-button {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 24px;
    border-radius: 12px;
    background: linear-gradient(
    135deg,
    #7b4dff,
    #5f2dff
    );
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.product-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(123, 77, 255, 0.35);
}

/* Product Card */

.product-card {
    background-color: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    gap: 20px;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-card h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.product-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* Responsive */

@media (max-width: 768px) {
    .products-hero h1 {
        font-size: 2.5rem;
    }
}

/* =========================
   PRODUCT UI
========================= */

.product-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    align-items: center;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    row-gap: 10px;
}

.product-meta span {
    position: relative;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    padding-left: 3px;
    white-space: nowrap;
}

.product-card {
    position: relative;
    overflow: hidden;
}

.product-card::before {
    display: none;
}

.product-card button {
    width: 100%;
    margin-top: auto;
}

.tool-interest-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background: linear-gradient(
    135deg,
    #8b5cf6,
    #6d28d9
    );
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tool-interest-btn:hover {
    transform: translateY(-2px);
    box-shadow:
    0 8px 20px rgba(139,92,246,.3);
}

.tool-interest-btn:active {
    transform: scale(.98);
}

/* =========================
   SECTION HEADING
========================= */

.section-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    background: rgba(124, 77, 255, 0.10);
    border: 1px solid rgba(124, 77, 255, 0.30);
    color: var(--text-color);
    box-shadow:
    0 0 20px rgba(124,77,255,0.10);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

.section-badge:hover {
    border-color: var(--accent-blue);
    box-shadow:
    0 0 25px rgba(0,195,255,0.18);
    transform: translateY(-2px);
}

.section-heading h2 {
    letter-spacing: -1px;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-heading p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* =========================
   TOOLS — PRODUCT CARD POLISH
========================= */

.product-card {
    position: relative;
    overflow: hidden;

    min-height: 100%;
    padding: 40px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--border-color);
    border-radius: 24px;

    background-color: var(--card-color);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.14);

    /*
    Independent translate preserves the
    transform-based reveal animation.
    */

    translate: 0 0;

    transition:
        translate 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

/* Blue/cyan upper accent */

.product-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 22%;
    right: 22%;

    display: block;
    height: 3px;

    border-radius: 0 0 999px 999px;

    background: linear-gradient(
        90deg,
        var(--accent-blue),
        #38bdf8
    );

    opacity: 0.75;
    scale: 0.55 1;

    transition:
        scale 0.28s ease,
        opacity 0.28s ease;
}

.product-card h2 {
    min-height: 70px;
    margin-bottom: 20px;

    font-size: 1.5rem;
    line-height: 1.4;
}

.product-card > p {
    margin-bottom: 25px;

    color: var(--text-secondary);

    line-height: 1.8;
}

.product-card .product-meta {
    margin-bottom: 24px;
}

/* Align all card buttons at the bottom */

.product-card .tool-interest-btn {
    width: 100%;
    margin-top: auto;

    text-align: center;
}

/* Light-mode shadow */

body.light-mode .product-card {
    box-shadow:
        0 14px 34px rgba(15, 23, 42, 0.07);
}

/* Desktop hover */

@media (hover: hover) and (pointer: fine) {

    .product-card:hover {
        translate: 0 -5px;

        border-color: var(--accent-blue);

        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.25),
            0 0 25px var(--blue-glow);
    }

    .product-card:hover::before {
        scale: 1 1;
        opacity: 1;
    }

}

/* Mobile */

@media (max-width: 768px) {

    .product-card {
        padding: 30px 24px;
    }

    .product-card h2 {
        min-height: 0;
    }

}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {

    .product-card {
        translate: 0 0;
        transition: none;
    }

    .product-card::before {
        transition: none;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 2.2rem;
    }
}

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

.services-grid-section {
    padding: 20px 0 100px;
}

/* Services Grid */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
}

/* Service Card */

.service-card {
    background-color: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 35px;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 360px;
}

.service-card:hover {
    border-color: var(--accent-blue);
    box-shadow:
    0 20px 40px rgba(0,0,0,0.25),
    0 0 25px var(--blue-glow);
}

/* Service Icon */

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(124, 77, 255, 0.12);
    font-size: 2rem;
    color: var(--primary-color);
}

.service-icon i {
    font-size: 2.5rem;
    color: #7c4dff;
}

/* Service Titles */

.service-card h2,
.service-card h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

/* Service Text */

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    flex-grow: 1;
}

.services-cta-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 25px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

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

.benefits-section {
    padding: 120px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(
    auto-fit,
    minmax(250px, 1fr)
    );
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: var(--card-color);
    border: 1px solid rgba(124,77,255,.15);
    border-radius: 20px;
    padding: 35px;
    transition: all .3s ease;
}

.benefit-card:hover {
    border-color: rgba(124,77,255,.4);
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-card p {
    line-height: 1.8;
}

.seo-services-section {
    padding: 80px 0;
}

.seo-services-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.seo-services-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

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

@media (max-width: 768px) {
    .services-grid-section {
        padding: 10px 0 80px;
    }

    .service-card {
        padding: 25px;
    }

    .service-card h2,
    .service-card h3 {
        font-size: 1.3rem;
    }
}

/* =========================
   FULL PAGE BACKGROUND FIX
========================= */

html,
body {
    min-height: 100%;
    background-color: var(--background-color);
}

body {
    min-height: 100vh;
}

/* Force all pages to inherit theme background */

main,
section,
.page-section,
.hero,
.products-grid-section,
.services-grid-section {
    background-color: inherit;
}

/* =========================
   HOMEPAGE PLATFORM FLEXIBILITY
========================= */

.home-platform-section {
    padding: 10px 0 70px;
}

.home-platform-card {
    display: grid;
    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(280px, 0.75fr);
    gap: 48px;
    align-items: center;
    padding: 48px;
    border: 1px solid var(--border-color);
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            rgba(124, 77, 255, 0.12),
            rgba(0, 195, 255, 0.05)
        ),
        var(--card-color);
    translate: 0 0;
    transition:
        translate 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.home-platform-copy h2 {
    max-width: 760px;
    margin-bottom: 20px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    letter-spacing: -1px;
}

.home-platform-copy > p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.home-platform-disclosure {
    margin-top: 24px;
    padding: 16px 18px;
    border-left: 3px solid var(--accent-blue);
    border-radius: 0 14px 14px 0;
    background: rgba(0, 195, 255, 0.06);
    font-size: 0.94rem;
}

.home-platform-list {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-platform-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background: var(--background-color);
}

.home-platform-option strong {
    font-size: 1.25rem;
    color: var(--text-color);
}

.home-platform-option span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: right;
}

.home-platform-option.validated-platform {
    border-color: rgba(124, 77, 255, 0.55);
}

@media (hover: hover) and (pointer: fine) {

    .home-platform-card:hover {
        translate: 0 -5px;
        border-color: var(--accent-blue);
        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.25),
            0 0 25px var(--blue-glow);
    }

}

@media (max-width: 900px) {

    .home-platform-card {
        grid-template-columns: 1fr;
        gap: 32px;
    }

}

@media (max-width: 600px) {

    .home-platform-section {
        padding: 0 0 60px;
    }

    .home-platform-card {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .home-platform-option {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .home-platform-option span {
        text-align: left;
    }

}

@media (prefers-reduced-motion: reduce) {

    .home-platform-card {
        translate: 0 0;
        transition: none;
    }

}

/* =========================
   SERVICES PLATFORM FLEXIBILITY
========================= */

.services-platform-section {
    padding: 100px 0;
}

.services-platform-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 55px;
}

.services-platform-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    background: var(--card-color);
    translate: 0 0;
    transition:
        translate 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.services-platform-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            rgba(124, 77, 255, 0.16),
            rgba(0, 195, 255, 0.1)
        );
    color: var(--primary-color);
    font-size: 1.6rem;
}

.services-platform-status {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 18px;
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.3;
}

.validated-status {
    border-color: rgba(124, 77, 255, 0.5);
    background: rgba(124, 77, 255, 0.1);
}

.option-status {
    border-color: rgba(0, 195, 255, 0.4);
    background: rgba(0, 195, 255, 0.07);
}

.services-platform-card h3 {
    margin-bottom: 14px;
    font-size: 1.55rem;
}

.services-platform-card p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.75;
}

.platform-selection-note {
    margin-top: 32px;
    padding: 32px;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-blue);
    border-radius: 20px;
    background:
        linear-gradient(
            135deg,
            rgba(124, 77, 255, 0.08),
            rgba(0, 195, 255, 0.05)
        ),
        var(--card-color);
    translate: 0 0;
    transition:
        translate 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.platform-selection-note-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.platform-selection-note-heading i {
    color: var(--accent-blue);
    font-size: 1.25rem;
}

.platform-selection-note-heading h3 {
    margin: 0;
}

.platform-selection-criteria {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.platform-selection-criteria li {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--background-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
}

.platform-selection-note > p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (hover: hover) and (pointer: fine) {

    .services-platform-card:hover,
    .platform-selection-note:hover {
        translate: 0 -5px;
        border-color: var(--accent-blue);
        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.25),
            0 0 25px var(--blue-glow);
    }

}

@media (max-width: 950px) {

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

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

}

@media (max-width: 600px) {

    .services-platform-section {
        padding: 75px 0;
    }

    .services-platform-card,
    .platform-selection-note {
        padding: 25px 22px;
        border-radius: 20px;
    }

    .platform-selection-criteria {
        grid-template-columns: 1fr;
    }

}

@media (prefers-reduced-motion: reduce) {

    .services-platform-card,
    .platform-selection-note {
        translate: 0 0;
        transition: none;
    }

}

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

.services-preview-section {
    padding: 100px 0;
}

/* Preview Grid */

.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Preview Card */

.preview-card {
    background-color: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 35px;
    transition: 0.3s ease;
}

.preview-card:hover {
    border-color: var(--accent-blue);
}

/* Icon */

.preview-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 77, 255, 0.12);
    border-radius: 20px;
    font-size: 2rem;
    margin-bottom: 25px;
}

/* Titles */

.preview-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Text */

.preview-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
    .services-preview-section {
        padding: 80px 0;
    }

    .preview-card {
        padding: 25px;
    }
}

/* =========================
   WORKFLOW SECTION
========================= */

.workflow-section {
    padding: 100px 0;
}

/* Workflow Grid */

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

/* Workflow Card */

.workflow-card {
    background-color: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 35px;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.workflow-card:hover {
    border-color: var(--accent-blue);
}

/* Step Number */

.workflow-number {
    font-size: 3rem;
    font-weight: bold;
    color: rgba(124, 77, 255, 0.35);
    margin-bottom: 20px;
}

/* Titles */

.workflow-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Text */

.workflow-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
    .workflow-section {
        padding: 80px 0;
    }

    .workflow-card {
        padding: 25px;
    }
}

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

.cta-section {
    padding: 100px 0 120px;
}

/* CTA Box */

.cta-box {
    background:
    linear-gradient(
    135deg,
    rgba(124, 77, 255, 0.12),
    rgba(124, 77, 255, 0.04)
    );
    border: 1px solid rgba(124, 77, 255, 0.2);
    border-radius: 32px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* CTA Title */

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* CTA Text */

.cta-box p {
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* CTA Buttons */

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Primary Button */

.primary-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 14px 8px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s ease;
}

/* =========================
   SECONDARY BUTTON
========================= */

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 14px;
    border: 1px solid rgba(124, 77, 255, 0.25);
    background: rgba(124, 77, 255, 0.06);
    color: var(--text-color);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.secondary-button:hover {
    background: rgba(124, 77, 255, 0.12);
    transform: translateY(-3px);
    border-color: #7c4dff;
}

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

/* Secondary Button */

.secondary-btn {
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 14px 28px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.secondary-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
    .cta-box {
        padding: 60px 25px;
    }

    .cta-box h2 {
        font-size: 2.2rem;
    }
}

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

.footer {
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
    background-color: var(--background-color);
}

/* Footer Grid */

.footer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

/* Logo */

/* Footer Logo */

.footer-logo {
    display:inline-block;
    color:var(--text-color);
    text-decoration:none;
    font-size:1.9rem;
    font-weight:700;
    transition:color .25s ease;
}

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

/* Titles */

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Text */

.footer-column p,
.footer-column a {
    color: var(--text-secondary);
    line-height: 1.9;
    display: block;
    margin-bottom: 10px;
    transition: 0.3s ease;
}

/* Hover */

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

/* Bottom */

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =========================
   HOME PRODUCTS PREVIEW
========================= */

.home-products-section {
    padding: 100px 0;
}

/* Products Grid */

.home-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* Product Card */

.mini-product-card {
    background-color: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 35px;
    transition: 0.3s ease;
}

.mini-product-card:hover {
    border-color: var(--accent-blue);
}

/* Icon */

.mini-product-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 77, 255, 0.12);
    border-radius: 20px;
    font-size: 2rem;
    margin-bottom: 25px;
}

/* Titles */

.mini-product-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Text */

.mini-product-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Button */

.products-preview-button {
    margin-top: 50px;
    text-align: center;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
    .home-products-section {
        padding: 80px 0;
    }

    .mini-product-card {
        padding: 25px;
    }
}

/* =========================
   NEWSLETTER SECTION
========================= */

.newsletter-section {
    padding: 100px 0 120px;
}

/* Box */

.newsletter-box {
    background-color: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 70px 40px;
    text-align: center;
}

/* Title */

.newsletter-box h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Text */

.newsletter-box p {
    max-width: 750px;
    margin: 0 auto 40px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Form */

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Input */

.newsletter-form input {
    width: 350px;
    max-width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background-color: transparent;
    color: var(--text-color);
    font-size: 1rem;
}

/* Button */

.newsletter-form button {
    padding: 16px 26px;
    border-radius: 12px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
    .newsletter-box {
        padding: 50px 25px;
    }

    .newsletter-box h2 {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
    }
}

/* =========================
   SECTION SPACING POLISH
========================= */

/* Hero */

.hero {
    padding: 10px 20px 80px;
}

/* Services Preview */

.services-preview-section {
    padding: 70px 0;
}

/* Workflow */

.workflow-section {
    padding: 70px 0;
}

/* CTA */

.cta-section {
    padding: 70px 0 90px;
}

/* Products Preview */

.home-products-section {
    padding: 70px 0;
}

/* Newsletter */

.newsletter-section {
    padding: 70px 0 100px;
}

/* Footer */

.footer {
    padding: 70px 0 25px;
}

/* =========================
   SCROLL REVEAL ANIMATIONS
========================= */

/* Hidden State */

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

.js .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

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

@media (prefers-reduced-motion: reduce) {

    .js .reveal,
    .js .reveal.active {
        opacity: 1;
        transform: none;
        transition: none;
    }

}

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

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

.delay-3 {
    transition-delay: 0.55s;
}

.delay-4 {
    transition-delay: 0.75s;
}

.delay-5 {
    transition-delay: 0.95s;
}

.delay-6 {
    transition-delay: 1.15s;
}

.delay-7 {
    transition-delay: 1.35s;
}

.delay-8 {
    transition-delay: 1.55s;
}

.delay-9 {
    transition-delay: 1.75s;
}

.delay-10 {
    transition-delay: 1.95s;
}

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

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

/* =========================
   CONTACT FORM BUTTON
========================= */

#contact-form button {
    width: fit-content;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    margin-top: 10px;
    background: linear-gradient(
    135deg,
    #7c4dff,
    #9b6dff
    );
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

#contact-form label {
    font-weight: 600;
    margin-bottom: -10px;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background-color: var(--card-color);
    color: var(--text-color);
    font-size: 1rem;
    transition: 0.3s ease;
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

#contact-form textarea {
    min-height: 160px;
    resize: vertical;
    padding: 10px 14px;
    line-height: 1.6;
    display: block;
}

#contact-form button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* =========================
   FAQ SECTION
========================= */

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-top: 60px;
}

.faq-item {
    background: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 28px;
    transition: 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-blue);
    box-shadow:
    0 20px 40px rgba(0,0,0,0.25),
    0 0 25px var(--blue-glow);
    transform: translateY(-4px);
}

.faq-item h3 {
    margin-bottom: 14px;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-accordion {
    margin-bottom: 15px;
}

/* =========================
   INTEGRATIONS SECTION
========================= */

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 50px auto 0;
}

.integration-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 22px 15px;
    text-align: center;
    transition: 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.integration-card i {
    font-size: 2rem;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border-radius: 14px;
    background: rgba(124, 77, 255, 0.08);
    transition: 0.3s ease;
}

.integration-card:hover i {
    transform: scale(1.08);
}

.whatsapp-icon {
    color: #25D366;
}

.google-icon {
    color: #4285F4;
}

.slack-icon {
    color: #4A154B;
}

.notion-icon {
    color: var(--text-color);
}

.openai-icon {
    color: #10A37F;
}

.gmail-icon {
    color: #D14836;
}

.outlook-icon {
    color: #0072C6;
}

.zendesk-icon {
    color: #F05A28;
}

.integration-card:hover {
    border-color: var(--accent-blue);
    box-shadow:
    0 10px 30px rgba(0, 195, 255, 0.15);
}

.integration-card span {
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
}

.integration-card h3 {
    font-size: 1rem;
    font-weight: 600;
}

.coming-badge {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 18px;
    border-radius: 30px;
    background: rgba(124, 77, 255, 0.12);
    border: 1px solid rgba(124, 77, 255, 0.25);
    color: #7c4dff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--text-color);
}

.service-link {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 24px;
    border-radius: 12px;
    background: linear-gradient(
    135deg,
    #7b4dff,
    #5f2dff
    );
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.service-link:hover {
    background: #7c4dff;
    color: #ffffff;
    transform: translateY(-2px);
}

.why-section {
    padding: 32px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    padding: 40px;
    border-radius: 24px;
    background: var(--card-color);
    border: 1px solid var(--border-color);
    transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-card:hover {
    border-color: var(--accent-blue);
    box-shadow:
    0 20px 40px rgba(0,0,0,0.25),
    0 0 25px var(--blue-glow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(124, 77, 255, 0.12);
    margin-bottom: 25px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: #7c4dff;
}

.feature-card h3 {
    margin-bottom: 18px;
    font-size: 1.4rem;
}

.feature-card p {
    line-height: 1.8;
    color: var(--text-secondary);
}

/* =========================
   SERVICES CTA BUTTON
========================= */

.services-preview-button {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 120px;
}

.services-preview-button .hero-button {
    margin-top: 20px;
    display: inline-block;
}

.services-pricing-cta {
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin-top:40px;
    flex-wrap:wrap;
}

.secondary-button {
    background:transparent !important;
    border:2px solid var(--primary-color);
    color:var(--primary-color) !important;
}

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

.pricing-section {
    padding: 100px 0;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 70px;
    align-items: stretch;
}

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

.pricing-card {
    background-color: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 40px 35px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition:
    translate 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* =========================
   PRICING SERVICE HEADER
========================= */

.pricing-service-header {
    display: flex;
    justify-content: center;
    margin-top: 55px;
    margin-bottom: 40px;
}

.pricing-service-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 14px;
    background:
    rgba(124, 77, 255, 0.10);
    border:
    1px solid rgba(124, 77, 255, 0.22);
    color: #a98bff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow:
    0 0 18px rgba(124, 77, 255, 0.08);
}

body.light-mode .pricing-service-label {
    color: #7c4dff;
}

.pricing-service-title {
    margin-top: 60px;
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.pricing-card:hover {
    translate: 0 -6px;
    border-color: var(--accent-blue);
    box-shadow:
    0 20px 40px rgba(0,0,0,0.25),
    0 0 25px var(--blue-glow);
}

.pricing-card .primary-btn,
.pricing-card .secondary-btn {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    border:
    1px solid rgba(124, 77, 255, 0.35);
}

.pricing-maintenance {
    font-size: 0.95rem;
    font-weight: 500;
    color: #8b8f96;
    margin-top: -10px;
    margin-bottom: 22px;
    opacity: 0.85;
}

/* =========================
   FEATURED CARD
========================= */

.pricing-card.featured {
    border: 1px solid rgba(124, 77, 255, 0.4);
    box-shadow:
    0 0 30px rgba(124, 77, 255, 0.12);
}

/* =========================
   POPULAR BADGE
========================= */

.popular-badge {
    position: absolute;
    top: 6px;
    right: 14px;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    background:
    linear-gradient(
    135deg,
    #614ba8,
    #614ba8
    );
    color: white;
}

/* =========================
   PLAN LABEL
========================= */

.pricing-plan {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

/* =========================
   TITLES
========================= */

.pricing-card h3 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 25px;
}

/* =========================
   PRICE BLOCK
========================= */

.pricing-price {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
}

.maintenance {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* =========================
   DESCRIPTION
========================= */

.pricing-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* =========================
   FEATURES LIST
========================= */

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.pricing-features li {
    position: relative;
    padding-left: 22px;
    color: var(--text-secondary);
}

/* Dot */

.pricing-features li::before {
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

/* =========================
   BUTTONS
========================= */

.pricing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 16px 24px;
    border-radius: 16px;
    background:
    linear-gradient(
    135deg,
    #7c4dff,
    #5f2dff
    );
    color: white;
    font-weight: 600;
    transition: 0.3s ease;
}

.pricing-button:hover {
    translate: 0 -3px;
    box-shadow:
    0 10px 25px rgba(124, 77, 255, 0.35);
}

/* =========================
   SECONDARY BUTTON
========================= */

.secondary-pricing-btn {
    background:
    rgba(124, 77, 255, 0.08);
    border: 1px solid rgba(124, 77, 255, 0.25);
    color: var(--text-color);
}

.secondary-pricing-btn:hover {
    background:
    rgba(124, 77, 255, 0.14);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
    .pricing-section {
        padding: 80px 0;
    }

    .pricing-card {
        padding: 30px 25px;
    }

    .pricing-card h3 {
        font-size: 1.5rem;
    }

    .price {
        font-size: 1.7rem;
    }
}

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

.service-cta {
    text-align: center;
    margin: 120px auto;
    max-width: 800px;
}

.service-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-cta p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 35px;
}

/* =========================
   STICKY SERVICES BUTTON SERVICES
========================= */

.sticky-services-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border-radius: 20px;
    background:
    linear-gradient(
    135deg,
    #ffb347,
    #ffb347
    );
    color: #111;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow:
    0 10px 30px rgba(255, 159, 67, 0.25);
    transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* Hover */

.sticky-services-btn:hover {
    transform: translateY(-4px);
    box-shadow:
    0 15px 35px rgba(255, 179, 71, 0.45);
}

.back-to-top-btn,
.sticky-services-btn {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* Mobile */

@media (max-width: 768px) {
    .sticky-services-btn {
        bottom: 20px;
        right: 6px;
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

body.menu-open .sticky-services-btn,
body.menu-open .back-to-top-btn,
body.menu-open .pricing-toggle-nav {
    display: none;
}

/* =========================
   STICKY PRICING TOGGLE
========================= */

.pricing-toggle-nav {
    position: fixed;
    top: 110px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background:
    rgba(255, 179, 71, 0.16);
    border:
    1px solid rgba(255, 179, 71, 0.4);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(12px);
    box-shadow:
    0 0 10px rgba(255, 179, 71, 0.20),
    0 0 24px rgba(255, 179, 71, 0.12);
}

.pricing-toggle-nav:hover {
    box-shadow:
    0 0 18px rgba(255, 179, 71, 0.28),
    0 0 40px rgba(255, 179, 71, 0.16);
}

/* Links */

.pricing-toggle-btn {
    color: #ffb347;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 700;
    transition:
    color 0.3s ease,
    transform 0.3s ease;
}

/* Hover */

.pricing-toggle-btn:hover {
    color: #ff9f43;
    transform: translateY(-2px);
}

/* Divider */

.pricing-divider {
    color: rgba(255, 220, 150, 0.45);
    font-weight: 600;
}

/* Mobile */

@media (max-width:768px) {
    .pricing-toggle-nav {
        top: 99px;
        right: -7px;
        transform: scale(0.85);
    }
}

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

.pricing-hero {
    padding-top: 20px;
}

.pricing-hero {
    padding-bottom: 35px;
}

.pricing-highlights {
    margin-top: 0;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .pricing-hero {
        padding-top: 10px;
    }
}

@media (max-width: 768px) {

    .pricing-hero {
        padding-bottom: 20px;
    }

    .pricing-highlights {
        padding-top: 10px;
    }

}

@media (max-width: 768px) {
    .compare-grid {
        padding: 0 20px;
    }
}

/* =========================
   ENTERPRISE SECTION
========================= */

.enterprise-section {
    padding: 100px 0;
}

.enterprise-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    text-align: center;
    border-radius: 24px;
    border: 1px solid rgba(124, 58, 237, 0.25);
    background: var(--card-color);
}

.enterprise-card h3 {
    margin-bottom: 20px;
}

.enterprise-card p {
    max-width: 700px;
    margin: 0 auto 30px;
}

.enterprise-features {
    list-style: none;
    margin-bottom: 35px;
}

.enterprise-features li {
    margin-bottom: 12px;
}

.enterprise-icon {
    font-size:3rem;
    margin-bottom:20px;
}

/* =========================
   BACK TO TOP BUTTON
========================= */

.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
    135deg,
    #ffb347,
    #ffcc70
    );
    color: #111;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 9998;
    box-shadow:
    0 10px 25px rgba(255,179,71,0.30);
    /* hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pricing-note {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
}

.pricing-note p {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
}

/* =========================
   REQUEST SETUP PAGE
========================= */

.request-setup-section {
    padding: 10px 0 100px;
    min-height: 100vh;
}

.success-message {
    display: none;
}

.success-message.is-visible {
    display: block;
}

body {
    background:#050505;
    color:#fff;
}

body.light-mode {
    background: #f5f7fb;
    color: #111827;
}

body.light-mode .thank-you-container {
    background: #ffffff;
    color: #111827;
    border: 1px solid #e5e7eb;
}

.request-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.request-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.selected-solution {
    max-width: 700px;
    margin: 0 auto 40px;
    padding: 24px;
    border-radius: 20px;
    text-align: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}

#selected-plan {
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: 700;
}

#setupForm {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.03);
    color: inherit;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 700;
    background: linear-gradient(
    135deg,
    #ffb347,
    #ffcc70
    );
    color: #111;
}

.form-group select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.10);
    background: #111;
    color: #fff;
}

.form-group select option {
    background: #111;
    color: #fff;
}

body.light-mode .request-form-container,
body.light-mode .thank-you-container {
    background: #ffffff;
    border: 1px solid #d1d5db;
    box-shadow:
    0 8px 24px rgba(0,0,0,.08);
}

body.light-mode input,
body.light-mode select,
body.light-mode textarea {
    background: #ffffff;
    border: 1px solid #d1d5db;
    color: #111827;
}

body.light-mode .selected-plan-box {
    background: #ffffff;
    border: 1px solid #d1d5db;
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    background: rgba(124,77,255,.08);
    border: 1px solid rgba(124,77,255,.15);
    border-radius: 12px;
    color: var(--text-color);
    text-align: left;
    cursor: pointer;
    font: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.accordion-header:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 4px;
}

.accordion-heading {
    margin: 0;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.accordion-content p {
    padding: 15px 0 20px;
}

.accordion-icon {
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform .3s ease;
}

.service-accordion.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-accordion:not(:first-child) {
    margin-top: 15px;
}

.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #111111;
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 10px;
    border: 1px solid rgba(124,77,255,.4);
    box-shadow: 0 10px 30px rgba(124,77,255,.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .3s ease;
    z-index: 9999;
}

.notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.compare-content {
    display: none;
}

.compare-content.active {
    display: block;
    animation: fadeCompare .35s ease;
}

@keyframes fadeCompare {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

}

.compare-toggle {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.compare-grid {
    display: grid;
    grid-template-columns:
    repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.compare-column {
    background: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    transition: 0.3s ease;
}

.compare-column:hover {
    transform: translateY(-6px);
    border-color: var(--accent-blue);
    box-shadow:
    0 20px 40px rgba(0,0,0,0.25),
    0 0 25px var(--blue-glow);
}

.compare-column h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.compare-column p {
    margin-bottom: 12px;
}

.compare-btn {
    opacity: .7;
    transition: .3s ease;
}

.compare-btn.active {
    opacity: 1;
    border: 2px solid white;
    box-shadow:
    0 0 20px rgba(124,77,255,.35);
}

.compare-btn.active {
    background: var(--primary-color);
}

.compare-recommendation {
    margin-top: 20px;
    font-weight: 700;
    color: var(--text-color);
}

.benefit-icon {
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    border-radius:18px;
    background:rgba(108,99,255,.12);
    color:var(--primary-color);
    font-size:2rem;
}

.back-navigation {
    text-align: center;
    margin-bottom: 25px;
    max-width: 900px;
    margin: 40px auto 20px;
    padding: 0 20px;
}

.back-pricing-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
}

.back-pricing-link:hover {
    transform: translateX(-4px);
}

.home-seo-section {
    padding: 20px 0 40px;
}

.seo-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
    color: var(--text-secondary);
}

.solution-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.form-security-note {
    font-size:0.85rem;
    opacity:0.8;
    margin-top:15px;
    text-align:center;
}

.legal-hero {
    padding:120px 0 80px;
    text-align:center;
}

.legal-content {
    padding:80px 0;
}

.legal-section {
    margin-bottom:50px;
}

.legal-section h2 {
    margin-bottom:15px;
}

.legal-section p {
    margin-bottom:15px;
    line-height:1.8;
}

.legal-section ul {
    padding-left:20px;
    line-height:1.8;
}

.legal-section li {
    margin-bottom:10px;
}

.form-disclaimer a {
    color: #7c4dff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.form-disclaimer a:hover {
    color: #9b6dff;
    text-decoration-thickness: 2px;
}

.inline-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.inline-link:hover {
    opacity: 0.8;
}

.pricing-highlights {
    margin: 2rem 0 3rem;
}

.highlights-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1rem;
}

.highlight-item {
    text-align: center;
    padding: 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: var(--card-color);
    font-weight: 600;
}

@media(max-width:768px) {
    .highlights-grid {
        grid-template-columns:1fr 1fr;
    }
}

.result-card {
    background: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
}

.results-strip {
    padding: 5rem 0;
}

.results-strip .container {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1.5rem;
}

#bundle-plans {
    padding-bottom: 45px;
}

.results-strip {
    padding: 30px 0 70px;
}

@media(max-width:768px) {
    .results-strip .container {
        grid-template-columns:repeat(2, minmax(140px,1fr));
        gap:1rem;
    }
}

@media (max-width: 768px) {

    #bundle-plans {
        padding-bottom: 30px;
    }

    .results-strip {
        padding: 20px 0 55px;
    }

}

/* CONTACT HIGHLIGHTS */

.contact-highlights {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1rem;
    margin:2rem 0 3rem;
}

.contact-highlight-item {
    text-align:center;
    padding:1rem;
    border:1px solid var(--border-color);
    border-radius:12px;
    background:var(--card-color);
    font-weight:600;
}

/* MOBILE */

@media(max-width:768px) {
    .contact-highlights {
        grid-template-columns:1fr;
    }
}

@media (max-width:768px) {
    .page-illustration-image {
        max-width:100%;
    }
}

/* =========================
   PAGE ILLUSTRATIONS
========================= */

.page-illustration {
    text-align:center;
    margin-top:20px;
    margin-bottom:40px;
}

.page-illustration-image {
    width:100%;
    max-width:1000px;
    display:block;
    margin:0 auto;
}

@media (max-width:768px) {
    .page-illustration {
        margin-top:10px;
        margin-bottom:30px;
    }

    .page-illustration-image {
        width:100%;
        max-width:100%;
    }
}

.newsletter-note {
    margin-top:15px;
    text-align:center;
    font-size:.9rem;
    color:var(--text-secondary);
    opacity:.8;
}

.workflow-icon {
    font-size:2rem;
    color:var(--primary-color);
    margin:18px 0;
    text-align:center;
}

.workflow-icon i {
    transition:.3s;
}

.feature-card:hover .workflow-icon i {
    transform:scale(1.1);
}

.highlight-item i,
.result-card i,
.enterprise-icon i,
.benefit-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

form label {
    display:flex;
    align-items:center;
    gap:8px;
    font-weight:600;
}

form label i {
    color:var(--primary-color);
    font-size:.95rem;
    width:18px;
    text-align:center;
}

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

@media (max-width:380px) {
    .logo img {
        width: 40px;
        height: auto;
    }

    .logo span {
        font-size: 1.1rem;
    }

    .theme-toggle {
        transform: scale(.9);
    }

    .language-switch {
        font-size: .8rem;
    }
}

@media (min-width:769px) and (max-width:1024px){

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

}

@media (min-width:769px) and (max-width:820px){

    .nav-links{
        gap:16px;
    }

}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================
   AUTOMATION WORKFLOWS
========================= */

.automation-workflows-section {
    padding: 6rem 0;
}

.automation-workflows-section .section-heading {
    max-width: 850px;
    margin: 0 auto 3rem;
    text-align: center;
}

.automation-workflows-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.automation-workflow-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    background: var(--card-bg);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.automation-workflow-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.automation-workflow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 1.25rem;
    border-radius: 16px;
    background: rgba(116, 71, 255, 0.12);
    color: var(--primary-color);
    font-size: 1.4rem;
}

.automation-workflow-card h3 {
    min-height: 3.2rem;
    margin-bottom: 0.8rem;
}

.automation-workflow-card p {
    margin-bottom: 0;
}

.automation-workflows-cta {
    max-width: 850px;
    margin: 3rem auto 0;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    background: var(--card-bg);
}

.automation-workflows-cta h3 {
    margin-bottom: 0.75rem;
}

.automation-workflows-cta p {
    max-width: 650px;
    margin: 0 auto 1.5rem;
}

@media (max-width: 992px) {

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

}

@media (max-width: 640px) {

    .automation-workflows-section {
        padding: 4rem 0;
    }

    .automation-workflows-grid {
        grid-template-columns: 1fr;
    }

    .automation-workflow-card h3 {
        min-height: 0;
    }

    .automation-workflows-cta {
        padding: 2rem 1.25rem;
    }

    .automation-workflows-cta .hero-button {
        display: block;
        width: 100%;
        text-align: center;
    }

}

/* Selected solution displayed above setup forms */
.selected-solution #selected-plan,
.selected-solution #custom-selected-plan {
    margin-top: 0.35rem;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 640px) {

    .selected-solution #selected-plan,
    .selected-solution #custom-selected-plan {
        font-size: 0.95rem;
        overflow-wrap: anywhere;
    }

}

/* =========================================================
   CASE STUDIES HUB PAGE
   case-studies.html
========================================================= */


/* =========================
   SHARED CASE-STUDY BUTTONS
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    border: 1px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 10px 25px rgba(124, 77, 255, 0.35);
}

.btn-secondary {
    background: rgba(124, 77, 255, 0.06);
    color: var(--text-color);
    border: 1px solid rgba(124, 77, 255, 0.35);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    background: rgba(124, 77, 255, 0.12);
}


/* =========================
   SECTION LABEL
========================= */

.section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: rgba(124, 77, 255, 0.10);
    border: 1px solid rgba(124, 77, 255, 0.30);
    color: var(--text-color);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.35px;
    line-height: 1.3;
    box-shadow:
        0 0 20px rgba(124, 77, 255, 0.10);
}


/* =========================
   CASE STUDIES HERO
========================= */

.page-hero.case-studies-hero {
    position: relative;
    overflow: hidden;
    min-height: 68vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 130px 20px 90px;
    text-align: center;
    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(124, 77, 255, 0.16),
            transparent 42%
        ),
        var(--background-color);
}

.case-studies-hero .container {
    position: relative;
    z-index: 1;
    max-width: 950px;
}

.case-studies-hero h1 {
    max-width: 900px;
    margin: 0 auto 24px;
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    line-height: 1.12;
    letter-spacing: -1.5px;
}

.case-studies-hero .hero-description {
    max-width: 820px;
    margin: 0 auto 34px;
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}


/* =========================
   CASE-STUDY PAGE SECTIONS
========================= */

/*
   Overrides the global .page-section rule only for
   the Case Studies hub sections.
*/

.simulation-transparency,
.case-studies-section,
.validation-method-section,
.production-adaptation-section,
.case-studies-cta {
    min-height: 0;
    padding: 90px 20px;
    display: block;
}

.simulation-transparency .container,
.case-studies-section .container,
.validation-method-section .container,
.production-adaptation-section .container,
.case-studies-cta .container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}


/* =========================
   TRANSPARENCY NOTICE
========================= */

.simulation-transparency {
    padding-top: 40px;
    padding-bottom: 70px;
}

.transparency-card {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 24px;
    padding: 34px;
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            rgba(124, 77, 255, 0.12),
            rgba(0, 195, 255, 0.04)
        );
    border: 1px solid rgba(124, 77, 255, 0.28);
}

.transparency-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--gradient-primary);
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 800;
    box-shadow:
        0 10px 25px rgba(124, 77, 255, 0.25);
}

.transparency-content h2 {
    margin-bottom: 12px;
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.3;
}

.page-section .transparency-content p {
    max-width: none;
    margin: 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    text-align: left;
}


/* =========================
   CASE STUDIES SECTION
========================= */

.case-studies-section {
    padding-top: 80px;
}

.case-studies-section .section-heading p,
.validation-method-section .section-heading p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 30px;
}


/* =========================
   CASE-STUDY CARD
========================= */

.case-study-card {
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-blue);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.25),
        0 0 25px var(--blue-glow);
}

.case-study-image-link {
    display: block;
}

.case-study-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    padding: 16px;
    background:
        linear-gradient(
            135deg,
            rgba(124, 77, 255, 0.08),
            rgba(0, 195, 255, 0.04)
        );
    border-bottom: 1px solid var(--border-color);
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.case-study-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(13, 13, 13, 0.88);
    border: 1px solid rgba(124, 77, 255, 0.45);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.2;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.case-study-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 28px;
}

.case-study-number {
    margin-bottom: 13px;
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.case-study-content h3 {
    margin-bottom: 16px;
    font-size: 1.42rem;
    line-height: 1.4;
}

.case-study-content h3 a {
    transition: color 0.3s ease;
}

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

.page-section .case-study-content > p {
    max-width: none;
    margin: 0 0 22px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.75;
    text-align: left;
}


/* =========================
   CARD HIGHLIGHTS
========================= */

.case-study-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.case-study-highlights li {
    position: relative;
    padding-left: 22px;
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.55;
}

.case-study-highlights li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--accent-blue);
    font-weight: 800;
}


/* =========================
   TOOL TAGS
========================= */

.case-study-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.case-study-tools span {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(124, 77, 255, 0.10);
    border: 1px solid rgba(124, 77, 255, 0.24);
    color: var(--text-color);
    font-size: 0.78rem;
    font-weight: 600;
}


/* =========================
   CARD LINK
========================= */

.case-study-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: fit-content;
    min-height: 46px;
    margin-top: auto;
    padding: 12px 20px;
    border-radius: 12px;
    background: rgba(124, 77, 255, 0.10);
    border: 1px solid rgba(124, 77, 255, 0.30);
    color: var(--primary-color);
    font-weight: 700;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.case-study-link:hover {
    transform: translateY(-2px);
    background: var(--gradient-primary);
    border-color: transparent;
    color: #ffffff;
    box-shadow:
        0 10px 24px rgba(124, 77, 255, 0.28);
}

.case-study-link span {
    transition: transform 0.3s ease;
}

.case-study-link:hover span {
    transform: translateX(4px);
}


/* =========================
   VALIDATION METHOD
========================= */

.validation-method-section {
    padding-top: 100px;
}

.validation-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.validation-step {
    height: 100%;
    padding: 28px;
    border-radius: 20px;
    background: var(--card-color);
    border: 1px solid var(--border-color);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.validation-step:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.18);
}

.validation-step-number {
    display: block;
    margin-bottom: 18px;
    color: rgba(124, 77, 255, 0.55);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.validation-step h3 {
    margin-bottom: 13px;
    font-size: 1.25rem;
    line-height: 1.4;
}

.page-section .validation-step p {
    max-width: none;
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.7;
    text-align: left;
}


/* =========================
   PRODUCTION ADAPTATION CARD
========================= */

.production-adaptation-card {
    max-width: 980px;
    margin: 0 auto;
    padding: 70px 40px;
    text-align: center;
    border-radius: 32px;
    background:
        linear-gradient(
            135deg,
            rgba(124, 77, 255, 0.12),
            rgba(124, 77, 255, 0.04)
        );
    border: 1px solid rgba(124, 77, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.production-adaptation-content {
    max-width: 820px;
    margin: 0 auto;
}

.production-adaptation-content h2 {
    max-width: 780px;
    margin: 0 auto 22px;
    font-size: 3rem;
    line-height: 1.2;
}

.page-section .production-adaptation-content > p {
    max-width: 760px;
    margin: 0 auto 34px;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center;
}

.production-adaptation-list {
    max-width: 660px;
    margin: 0 auto 38px;
    padding: 0;
    display: grid;
    gap: 14px;
    list-style: none;
    text-align: left;
}

.production-adaptation-list li {
    position: relative;
    padding-left: 26px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.production-adaptation-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: 800;
}

.production-adaptation-action {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.production-adaptation-action .btn {
    width: auto;
}


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

.case-studies-cta {
    padding-top: 80px;
    padding-bottom: 110px;
}

.case-studies-cta .cta-box {
    max-width: 980px;
    margin: 0 auto;
    padding: 70px 40px;
}

.case-studies-cta .cta-box h2 {
    max-width: 780px;
    margin: 0 auto 22px;
}

.case-studies-cta .cta-box p {
    max-width: 760px;
    margin: 0 auto 36px;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}


/* =========================
   LIGHT MODE
========================= */

body.light-mode .case-study-badge {
    background: rgba(255, 255, 255, 0.94);
    color: #111111;
    border-color: rgba(124, 77, 255, 0.40);
}

body.light-mode .transparency-card,
body.light-mode .production-adaptation-card {
    box-shadow:
        0 15px 40px rgba(15, 23, 42, 0.06);
}

body.light-mode .case-study-image {
    background:
        linear-gradient(
            135deg,
            rgba(124, 77, 255, 0.07),
            rgba(0, 195, 255, 0.035)
        );
}


/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

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

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

    .production-adaptation-card {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .production-adaptation-action {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .production-adaptation-action .btn {
        width: auto;
        flex: 1 1 230px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .page-hero.case-studies-hero {
        min-height: 0;
        padding: 105px 20px 70px;
    }

    .case-studies-hero h1 {
        font-size: 2.45rem;
        letter-spacing: -0.7px;
    }

    .case-studies-hero .hero-description {
        font-size: 1rem;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn,
    .cta-actions .btn {
        width: 100%;
    }

    .simulation-transparency,
    .case-studies-section,
    .validation-method-section,
    .production-adaptation-section,
    .case-studies-cta {
        padding: 65px 20px;
    }

    .simulation-transparency {
        padding-top: 25px;
    }

    .transparency-card {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 26px 22px;
    }

    .transparency-icon {
        width: 46px;
        height: 46px;
    }

    .case-studies-grid,
    .validation-steps {
        grid-template-columns: 1fr;
    }

    .case-study-content {
        padding: 24px 22px;
    }

    .case-study-image {
        padding: 12px;
    }

    .case-study-badge {
        top: 12px;
        left: 12px;
        font-size: 0.7rem;
    }

    .production-adaptation-card {
        padding: 50px 24px;
    }

    .production-adaptation-content h2 {
        font-size: 2.2rem;
    }

    .production-adaptation-action {
        flex-direction: column;
        align-items: stretch;
    }

    .production-adaptation-action .btn {
        width: 100%;
    }

    .case-studies-cta .cta-box {
        padding: 50px 24px;
    }

}

@media (max-width: 768px) {

    .case-study-link {
        width: 100%;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 420px) {

    .case-studies-hero h1 {
        font-size: 2.1rem;
    }

    .section-label {
        font-size: 0.76rem;
    }

    .case-study-content h3 {
        font-size: 1.25rem;
    }

    .case-study-image {
        aspect-ratio: 4 / 3;
    }

}

/* ========================================
   CASE STUDIES — FINAL MOBILE CTA FIX
======================================== */

@media (max-width: 768px) {

    .production-adaptation-action {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .production-adaptation-action .btn {
        width: 100%;
        min-height: 50px;
        height: auto;
        flex: 0 0 auto;
        padding: 14px 10px;
        line-height: 1.3;
    }

}

/* ========================================
   NAVBAR — COMPACT DESKTOP / TABLET
======================================== */

@media (min-width: 769px) and (max-width: 1100px) {

    .nav-container {
        width: 97%;
        max-width: none;
        gap: 12px;
    }

    .logo {
        font-size: 1.25rem;
        flex-shrink: 0;
    }

    .logo-icon {
        width: 52px;
        height: 52px;
    }

    .nav-menu {
        gap: 22px;
    }

    .nav-links {
        gap: 17px;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .menu-controls {
        gap: 8px;
    }

    #theme-toggle {
        padding: 8px 12px;
    }

    .language-selector {
        gap: 4px;
    }

}

/* ========================================
   CASE STUDY IMAGE LIGHTBOX
======================================== */

.case-study-image-open {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: inherit;
    background: transparent;
    cursor: zoom-in;
    overflow: hidden;
}

.case-study-image-open:hover {
    opacity: 1;
}

.case-study-image-open img {
    width: 100%;
    height: auto;
    display: block;
    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}

.case-study-image-open:hover img {
    transform: scale(1.01);
    filter: brightness(1.03);
}

.case-study-image-open:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 5px;
}

.case-study-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.case-study-lightbox.active {
    display: flex;
}

.case-study-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.case-study-lightbox-content {
    position: relative;
    z-index: 1;
    max-width: min(96vw, 1600px);
    max-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study-lightbox-content img {
    max-width: 100%;
    max-height: 88vh;
    width: auto;
    height: auto;
    display: block;
    border-radius: 14px;
    background: #ffffff;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.5);
}

.case-study-lightbox-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 46px;
    height: 46px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #ffffff;
    font-size: 1.2rem;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.35);
}

.case-study-lightbox-close:hover {
    opacity: 1;
    transform: scale(1.05);
}

body.lightbox-open {
    overflow: hidden;
}

@media (max-width: 768px) {

    .case-study-lightbox {
        padding: 16px;
    }

    .case-study-lightbox-content {
        max-width: 100%;
    }

    .case-study-lightbox-close {
        top: -12px;
        right: -4px;
        width: 42px;
        height: 42px;
    }

    .case-study-lightbox-content img {
        max-height: 84vh;
        border-radius: 10px;
    }

}

/* =========================================================
   CASE STUDY DETAIL PAGE
   case-study-lead-capture-crm.html
========================================================= */

/* =========================
   LEAD SERVICE PLATFORM STACK
========================= */

.lead-platform-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.lead-platform-card {
    padding: 34px;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    background: var(--card-color);
    translate: 0 0;
    transition:
        translate 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.validated-stack-card {
    border-color: rgba(124, 77, 255, 0.48);
}

.lead-platform-status {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 7px 13px;
    border: 1px solid rgba(124, 77, 255, 0.5);
    border-radius: 999px;
    background: rgba(124, 77, 255, 0.1);
    font-size: 0.78rem;
    font-weight: 600;
}

.lead-platform-status.option-status {
    border-color: rgba(0, 195, 255, 0.45);
    background: rgba(0, 195, 255, 0.08);
}

.lead-platform-card h3 {
    margin-bottom: 16px;
}

.lead-platform-card p,
.lead-platform-card li {
    color: var(--text-secondary);
    line-height: 1.7;
}

.lead-platform-card ul {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
    padding-left: 20px;
}

.lead-platform-disclosure {
    margin: 28px 0 0;
    padding: 18px 20px;
    border-left: 4px solid var(--accent-blue);
    border-radius: 0 16px 16px 0;
    background: rgba(0, 195, 255, 0.06);
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (hover: hover) and (pointer: fine) {

    .lead-platform-card:hover {
        translate: 0 -5px;
        border-color: var(--accent-blue);
        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.24),
            0 0 25px var(--blue-glow);
    }

}

@media (max-width: 800px) {

    .lead-platform-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .lead-platform-card {
        padding: 26px 22px;
        border-radius: 20px;
    }

}

@media (prefers-reduced-motion: reduce) {

    .lead-platform-card {
        translate: 0 0;
        transition: none;
    }

}

/* =========================
   SUPPORT SERVICE PLATFORM STACK
========================= */

.support-platform-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.support-platform-card {
    height: 100%;
    padding: 34px;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    background: var(--card-color);
    translate: 0 0;
    transition:
        translate 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.support-platform-card.validated-stack-card {
    border-color: rgba(124, 77, 255, 0.48);
}

.support-platform-status {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 7px 13px;
    border: 1px solid rgba(124, 77, 255, 0.5);
    border-radius: 999px;
    background: rgba(124, 77, 255, 0.1);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.35;
}

.support-platform-status.option-status {
    border-color: rgba(0, 195, 255, 0.45);
    background: rgba(0, 195, 255, 0.08);
}

.support-platform-card h3 {
    margin-bottom: 16px;
}

.support-platform-card p,
.support-platform-card li {
    color: var(--text-secondary);
    line-height: 1.7;
}

.support-platform-card ul {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
    padding-left: 20px;
}

.support-platform-disclosure {
    max-width: 800px;
    margin: 38px auto 0;
    padding: 20px 24px;
    border: 1px solid rgba(0, 195, 255, 0.2);
    border-left: 4px solid var(--accent-blue);
    border-radius: 0 16px 16px 0;
    background:
        linear-gradient(
            135deg,
            rgba(0, 195, 255, 0.075),
            rgba(124, 77, 255, 0.035)
        ),
        var(--card-color);
    color: var(--text-secondary);
    line-height: 1.75;
    text-align: center;
}

@media (hover: hover) and (pointer: fine) {

    .support-platform-card:hover {
        translate: 0 -5px;
        border-color: var(--accent-blue);
        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.24),
            0 0 25px var(--blue-glow);
    }

}

@media (max-width: 800px) {

    .support-platform-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .support-platform-card {
        padding: 26px 22px;
        border-radius: 20px;
    }

    .support-platform-disclosure {
        margin-top: 28px;
        padding: 17px 18px;
        text-align: left;
    }

}

@media (prefers-reduced-motion: reduce) {

    .support-platform-card {
        translate: 0 0;
        transition: none;
    }

}

/* =========================
   BREADCRUMB
========================= */

.case-study-breadcrumb-section {
    padding: 28px 0 10px;
    background: var(--background-color);
}

.case-study-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.case-study-breadcrumb a {
    transition: color 0.3s ease;
}

.case-study-breadcrumb a:hover {
    color: var(--primary-color);
}

.case-study-breadcrumb [aria-current="page"] {
    color: var(--text-color);
    font-weight: 600;
}


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

.case-study-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 20px 100px;
    text-align: center;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(124, 77, 255, 0.16),
            transparent 42%
        ),
        var(--background-color);
}

.case-study-detail-hero .container {
    max-width: 1050px;
}

.case-study-detail-hero h1 {
    max-width: 950px;
    margin: 0 auto 24px;
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    line-height: 1.12;
    letter-spacing: -1.4px;
}

.case-study-hero-description {
    max-width: 850px;
    margin: 0 auto 36px;
    color: var(--text-secondary);
    font-size: 1.12rem;
    line-height: 1.8;
}

.case-study-hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 0 auto 34px;
}

.case-study-meta-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 120px;
    padding: 22px;
    border-radius: 18px;
    background: var(--card-color);
    border: 1px solid var(--border-color);
    text-align: left;
}

.case-study-meta-item span {
    color: var(--text-secondary);
    font-size: 0.84rem;
    font-weight: 600;
}

.case-study-meta-item strong {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.5;
}


/* =========================
   NOTICE
========================= */

.case-study-notice-section {
    padding: 28px 20px 70px;
    background: var(--background-color);
}

.case-study-notice {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: flex-start;
    padding: 32px;
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            rgba(124, 77, 255, 0.11),
            rgba(0, 195, 255, 0.035)
        );
    border: 1px solid rgba(124, 77, 255, 0.28);
}

.case-study-notice-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: var(--gradient-primary);
    color: #ffffff;
    font-size: 1.2rem;
}

.case-study-notice h2 {
    margin-bottom: 10px;
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.case-study-notice p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.8;
}


/* =========================
   DETAIL PAGE SECTION FIX
========================= */

.case-study-challenge-section,
.case-study-objective-section,
.case-study-workflow-section,
.case-study-step-section,
.case-study-confirmation-section,
.validated-results-section,
.case-study-benefits-section,
.case-study-production-section,
.case-study-tools-section,
.case-study-faq-section,
.related-case-studies-section,
.case-study-final-cta {
    min-height: 0;
    display: block;
    padding: 90px 20px;
}

.case-study-challenge-section .container,
.case-study-objective-section .container,
.case-study-workflow-section .container,
.case-study-step-section .container,
.case-study-confirmation-section .container,
.validated-results-section .container,
.case-study-benefits-section .container,
.case-study-production-section .container,
.case-study-tools-section .container,
.case-study-faq-section .container,
.related-case-studies-section .container,
.case-study-final-cta .container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}


/* =========================
   BEFORE / AFTER
========================= */

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

.before-after-card {
    padding: 34px;
    border-radius: 22px;
    background: var(--card-color);
    border: 1px solid var(--border-color);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.before-after-card h3 {
    margin-bottom: 20px;
    font-size: 1.45rem;
}

.before-after-label {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.before-label {
    background: rgba(255, 179, 71, 0.10);
    border: 1px solid rgba(255, 179, 71, 0.30);
    color: var(--text-color);
}

.after-label {
    background: rgba(124, 77, 255, 0.10);
    border: 1px solid rgba(124, 77, 255, 0.30);
    color: var(--text-color);
}

.before-after-card ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.before-after-card li {
    position: relative;
    padding-left: 24px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.before-after-card li::before {
    content: "•";
    position: absolute;
    left: 2px;
    color: var(--primary-color);
    font-size: 1.2rem;
    line-height: 1.2;
}


/* =========================
   OBJECTIVE CARD
========================= */

.case-study-objective-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 45px;
    text-align: center;
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            rgba(124, 77, 255, 0.12),
            rgba(0, 195, 255, 0.03)
        );
    border: 1px solid rgba(124, 77, 255, 0.24);
}

.case-study-objective-card h2 {
    max-width: 780px;
    margin: 0 auto 20px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

.page-section .case-study-objective-card p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}


/* =========================
   STEP HEADERS
========================= */

.case-study-step-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto 45px;
}

.case-study-step-number {
    color: rgba(124, 77, 255, 0.48);
    font-size: clamp(3.2rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 0.95;
}

.case-study-step-header h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

.alternate-section {
    background:
        linear-gradient(
            180deg,
            rgba(124, 77, 255, 0.035),
            transparent
        );
}


/* =========================
   FIGURES
========================= */

.case-study-figure {
    max-width: 1180px;
    margin: 0 auto;
}

.compact-figure {
    max-width: 1100px;
}

.case-study-figure figcaption {
    max-width: 900px;
    margin: 18px auto 0;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    text-align: center;
}


/* =========================
   ANNOTATION LEGEND
========================= */

.annotation-legend {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.annotation-legend li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 18px;
    background: var(--card-color);
    border: 1px solid var(--border-color);
}

.annotation-number {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
}

.annotation-legend strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text-color);
}

.page-section .annotation-legend p {
    max-width: none;
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
    text-align: left;
}


/* =========================
   VALIDATED RESULTS
========================= */

.validated-results-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.validated-result-card {
    padding: 28px;
    border-radius: 20px;
    background: var(--card-color);
    border: 1px solid var(--border-color);
    text-align: center;
}

.validated-result-card i {
    margin-bottom: 18px;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.validated-result-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.page-section .validated-result-card p {
    max-width: none;
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
}

.result-boundary-note {
    max-width: 900px;
    margin: 34px auto 0;
    padding: 28px;
    border-radius: 20px;
    background: rgba(255, 179, 71, 0.07);
    border: 1px solid rgba(255, 179, 71, 0.25);
    text-align: center;
}

.result-boundary-note h3 {
    margin-bottom: 12px;
}

.page-section .result-boundary-note p {
    margin: 0 auto;
}


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

.case-study-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.case-study-benefit-card {
    padding: 30px;
    border-radius: 20px;
    background: var(--card-color);
    border: 1px solid var(--border-color);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.case-study-benefit-card i {
    margin-bottom: 18px;
    color: var(--primary-color);
    font-size: 1.75rem;
}

.case-study-benefit-card h3 {
    margin-bottom: 12px;
}

.page-section .case-study-benefit-card p {
    max-width: none;
    margin: 0;
    font-size: 0.95rem;
    text-align: left;
}


/* =========================
   STACK
========================= */

.case-study-stack-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.case-study-stack-card {
    flex: 0 1 calc((100% - 72px) / 4);
    min-width: 0;
}

@media (max-width: 1024px) {

    .case-study-stack-card {
        flex-basis: calc((100% - 24px) / 2);
    }

}

@media (max-width: 768px) {

    .case-study-stack-card {
        flex-basis: 100%;
    }

}

.case-study-stack-card {
    padding: 32px;
    border-radius: 20px;
    background: var(--card-color);
    border: 1px solid var(--border-color);
    text-align: center;
}

.case-study-stack-card i {
    margin-bottom: 18px;
    color: var(--primary-color);
    font-size: 2rem;
}

.case-study-stack-card h3 {
    margin-bottom: 12px;
}

.page-section .case-study-stack-card p {
    max-width: none;
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
}

.case-study-stack-note {
    max-width: 820px;
    margin: 28px auto 0 !important;
    font-style: italic;
}

.case-study-platform-disclosure {
    max-width: 900px !important;
    margin: 24px auto 0 !important;
    padding: 22px 24px;

    border: 1px solid rgba(124, 77, 255, 0.28);
    border-radius: 16px;

    background: rgba(124, 77, 255, 0.07);
    color: var(--text-secondary);

    font-size: 0.92rem !important;
    line-height: 1.7;
    text-align: left !important;
}


/* =========================
   RELATED CASE STUDIES
========================= */

.related-case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.related-case-study-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 32px;
    border-radius: 22px;
    background: var(--card-color);
    border: 1px solid var(--border-color);
}

.related-case-study-number {
    margin-bottom: 14px;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.related-case-study-card h3 {
    margin-bottom: 14px;
    font-size: 1.35rem;
}

.page-section .related-case-study-card p {
    max-width: none;
    margin: 0 0 22px;
    text-align: left;
}


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

.case-study-final-cta .cta-box {
    max-width: 980px;
    margin: 0 auto;
}


/* =========================
   LIGHT MODE
========================= */

body.light-mode .case-study-meta-item,
body.light-mode .before-after-card,
body.light-mode .annotation-legend li,
body.light-mode .validated-result-card,
body.light-mode .case-study-benefit-card,
body.light-mode .case-study-stack-card,
body.light-mode .related-case-study-card {
    box-shadow:
        0 14px 34px rgba(15, 23, 42, 0.06);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

    .case-study-hero-meta {
        grid-template-columns: 1fr;
    }

    .validated-results-grid,
    .case-study-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .case-study-detail-hero {
        padding: 75px 20px 70px;
    }

    .case-study-detail-hero h1 {
        font-size: 2.35rem;
    }

    .case-study-hero-meta,
    .before-after-grid,
    .annotation-legend,
    .validated-results-grid,
    .case-study-benefits-grid,
    .case-study-stack-grid,
    .related-case-studies-grid {
        grid-template-columns: 1fr;
    }

    .case-study-notice {
        grid-template-columns: 1fr;
        padding: 25px 22px;
    }

    .case-study-challenge-section,
    .case-study-objective-section,
    .case-study-workflow-section,
    .case-study-step-section,
    .case-study-confirmation-section,
    .validated-results-section,
    .case-study-benefits-section,
    .case-study-production-section,
    .case-study-tools-section,
    .case-study-faq-section,
    .related-case-studies-section,
    .case-study-final-cta {
        padding: 65px 20px;
    }

    .case-study-objective-card {
        padding: 42px 24px;
    }

    .case-study-step-header {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .case-study-step-number {
        font-size: 3.5rem;
    }

    .page-section .case-study-step-header p {
        text-align: left;
    }

    .before-after-card,
    .related-case-study-card {
        padding: 26px 22px;
    }

}

/* ========================================
   CASE STUDY STEP HEADER — IMPROVED
======================================== */

.case-study-step-header {
    max-width: 1050px;
    margin: 0 auto 45px;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 28px;
    align-items: center;
    padding: 32px;
    border-radius: 24px;
    background: var(--card-color);
    border: 1px solid var(--border-color);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.case-study-step-number {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: rgba(124, 77, 255, 0.10);
    border: 1px solid rgba(124, 77, 255, 0.25);
    color: var(--primary-color);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: inset 0 0 0 1px rgba(124, 77, 255, 0.06);
}

.case-study-step-header h2 {
    margin-bottom: 14px;
}

.page-section .case-study-step-header p {
    max-width: 760px;
    margin: 0;
    text-align: left;
}

body.light-mode .case-study-step-header {
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

@media (max-width: 768px) {

    .case-study-step-header {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 24px;
    }

    .case-study-step-number {
        width: 84px;
        height: 84px;
        font-size: 2.1rem;
        border-radius: 18px;
    }

}

.case-study-image-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 18px 0 28px;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: rgba(124, 77, 255, 0.08);
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.6;
}

.case-study-image-note i {
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-scope-note {
    max-width: 850px;
    margin: 28px auto 0;
    padding: 18px 22px;
    border: 1px solid rgba(124, 77, 255, 0.22);
    border-radius: 16px;
    background: rgba(124, 77, 255, 0.06);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
    text-align: center;
}

/* =========================================
   SIM01 — GROWTH WORKFLOW STRUCTURE
========================================= */

.case-study-growth-section .container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}


/* GROWTH PROCESS */

.growth-process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin: 0 0 48px;
}

.growth-process-grid article {
    padding: 24px 20px;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background: var(--card-color);
}

.growth-process-grid article > span {
    display: block;
    margin-bottom: 14px;
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 800;
}

.growth-process-grid h3 {
    margin-bottom: 10px;
    font-size: 1.08rem;
}

.page-section .growth-process-grid p {
    max-width: none;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    text-align: left;
}


/* GROWTH EVIDENCE */

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

.growth-evidence-featured {
    grid-column: 1 / -1;
}

.growth-evidence-grid .case-study-figure {
    height: auto;
    padding: 18px;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    background: var(--card-color);
}

.growth-evidence-grid .case-study-image-open {
    width: 100%;
    border-radius: 15px;
}

.growth-evidence-grid img {
    width: 100%;
    height: auto;
    display: block;
}


/* VALIDATION SUMMARY */

.growth-validation-summary {
    max-width: 1000px;
    margin: 36px auto 0;
    padding: 30px;
    border: 1px solid rgba(124, 77, 255, 0.3);
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            rgba(124, 77, 255, 0.10),
            rgba(0, 195, 255, 0.03)
        );
}

.growth-validation-summary h3 {
    margin-bottom: 18px;
    text-align: center;
}

.growth-validation-summary ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.growth-validation-summary li {
    position: relative;
    padding-left: 24px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.growth-validation-summary li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 800;
}


/* RESPONSIVE */

@media (max-width: 1024px) {

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

}

@media (max-width: 768px) {

    .growth-process-grid,
    .growth-evidence-grid,
    .growth-validation-summary ul {
        grid-template-columns: 1fr;
    }

    .growth-evidence-featured {
        grid-column: auto;
    }

    .growth-validation-summary {
        padding: 24px 22px;
    }

}

/* MEDIUM / LOW FIT ANNOTATION CARDS */

.growth-comparison-legend {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 22px;
}

.growth-comparison-legend li {
    width: 100%;
    text-align: left;
}

.growth-comparison-legend li > div {
    min-width: 0;
}

/* ========================================
   PRICING PAGE — SHARED CARD INTERACTIONS
======================================== */

.pricing-page .highlight-item,
.pricing-page .pricing-scope-note,
.pricing-page .result-card,
.pricing-page .compare-column,
.pricing-page .enterprise-card,
.pricing-page .benefit-card {
    transition:
        translate 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.pricing-page .highlight-item i,
.pricing-page .result-card i {
    display: block;
    margin-bottom: 0.85rem;
}

.pricing-page .highlight-item span {
    display: block;
    line-height: 1.45;
}

@media (hover: hover) and (pointer: fine) {

    .pricing-page .highlight-item:hover,
    .pricing-page .pricing-scope-note:hover,
    .pricing-page .result-card:hover,
    .pricing-page .compare-column:hover,
    .pricing-page .enterprise-card:hover,
    .pricing-page .benefit-card:hover {
        translate: 0 -6px;
        border-color: var(--accent-blue);
        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.25),
            0 0 25px var(--blue-glow);
    }

}

.pricing-starting-reference {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.5;
}

/* ========================================
   HOME PAGE — SHARED CARD INTERACTIONS
======================================== */

.home-page .preview-card,
.home-page .workflow-card,
.home-page .mini-product-card {
    transition:
        translate 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {

    .home-page .preview-card:hover,
    .home-page .workflow-card:hover,
    .home-page .mini-product-card:hover {
        translate: 0 -8px;
        border-color: var(--accent-blue);
        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.25),
            0 0 25px var(--blue-glow);
    }

}

.home-page .preview-icon,
.home-page .workflow-icon i,
.home-page .mini-product-icon {
    transition:
        transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {

    .home-page .preview-card:hover .preview-icon,
    .home-page .workflow-card:hover .workflow-icon i,
    .home-page .mini-product-card:hover .mini-product-icon {
        transform: scale(1.06);
    }

}

.home-page .services-preview-grid,
.home-page .workflow-grid,
.home-page .home-products-grid {
    align-items: stretch;
}

.home-page .preview-card,
.home-page .workflow-card,
.home-page .mini-product-card {
    height: 100%;
}

@media (prefers-reduced-motion: reduce) {

    .home-page .preview-card,
    .home-page .workflow-card,
    .home-page .mini-product-card,
    .home-page .preview-icon,
    .home-page .workflow-icon i,
    .home-page .mini-product-icon {
        transition: none;
    }

    .home-page .preview-card:hover,
    .home-page .workflow-card:hover,
    .home-page .mini-product-card:hover {
        translate: none;
    }

}

/* ========================================
   HOME PAGE — GET STARTED CTA POLISH
======================================== */

.home-page .cta-section .cta-box {
    border-color: rgba(124, 77, 255, 0.28);
    transition:
        translate 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.home-page .cta-section .cta-buttons a {
    min-width: 190px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-page .cta-section .cta-buttons a:focus-visible {
    outline: 3px solid var(--accent-blue);
    outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {

    .home-page .cta-section .cta-box:hover {
        translate: 0 -5px;
        border-color: var(--accent-blue);
        box-shadow:
            0 24px 55px rgba(0, 0, 0, 0.24),
            0 0 28px var(--blue-glow);
    }

}

@media (max-width: 600px) {

    .home-page .cta-section .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .home-page .cta-section .cta-buttons a {
        width: 100%;
        min-width: 0;
    }

}

@media (prefers-reduced-motion: reduce) {

    .home-page .cta-section .cta-box {
        transition: none;
    }

    .home-page .cta-section .cta-box:hover {
        translate: none;
    }

}

/* ========================================
   HOME PAGE — NEWSLETTER BOX POLISH
======================================== */

.home-page .newsletter-box {
    position: relative;
    overflow: hidden;
    border-color: rgba(124, 77, 255, 0.24);
    transition:
        translate 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.home-page .newsletter-form input {
    min-height: 54px;
    margin-top: 0;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.home-page .newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow:
        0 0 0 4px rgba(0, 195, 255, 0.12);
}

.home-page .newsletter-form button {
    min-height: 54px;
    min-width: 150px;
    font-weight: 600;
    background: var(--gradient-primary);
    transition:
        translate 0.3s ease,
        box-shadow 0.3s ease,
        opacity 0.3s ease;
}

.home-page .newsletter-form button:focus-visible {
    outline: 3px solid var(--accent-blue);
    outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {

    .home-page .newsletter-box:hover {
        translate: 0 -5px;
        border-color: var(--accent-blue);
        box-shadow:
            0 24px 55px rgba(0, 0, 0, 0.24),
            0 0 28px var(--blue-glow);
    }

    .home-page .newsletter-form button:hover {
        translate: 0 -2px;
        opacity: 1;
        box-shadow:
            0 10px 25px rgba(124, 77, 255, 0.35);
    }

}

@media (max-width: 600px) {

    .home-page .newsletter-form {
        align-items: stretch;
    }

    .home-page .newsletter-form input,
    .home-page .newsletter-form button {
        width: 100%;
        min-width: 0;
    }

}

@media (prefers-reduced-motion: reduce) {

    .home-page .newsletter-box,
    .home-page .newsletter-form input,
    .home-page .newsletter-form button {
        transition: none;
    }

    .home-page .newsletter-box:hover,
    .home-page .newsletter-form button:hover {
        translate: none;
    }

}

/* ========================================
   ABOUT PAGE — SHARED CARD INTERACTIONS
======================================== */

.about-page .about-service-card,
.about-page .workflow-card {
    height: 100%;
    transition:
        translate 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.about-page .about-services-grid,
.about-page .workflow-grid {
    align-items: stretch;
}

.about-page .about-service-icon,
.about-page .workflow-icon i {
    transition: transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {

    .about-page .about-service-card:hover,
    .about-page .workflow-card:hover {
        translate: 0 -6px;
        border-color: var(--accent-blue);
        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.22),
            0 0 24px var(--blue-glow);
    }

    .about-page .about-service-card:hover .about-service-icon,
    .about-page .workflow-card:hover .workflow-icon i {
        transform: scale(1.06);
    }

}

@media (prefers-reduced-motion: reduce) {

    .about-page .about-service-card,
    .about-page .workflow-card,
    .about-page .about-service-icon,
    .about-page .workflow-icon i {
        transition: none;
    }

    .about-page .about-service-card:hover,
    .about-page .workflow-card:hover {
        translate: none;
    }

}

/* ========================================
   ABOUT PAGE — MOBILE CARD BORDER FIX
======================================== */

@media (hover: none), (pointer: coarse) {

    .about-page .about-service-card,
    .about-page .workflow-card {
        translate: none;
        border-color: var(--border-color);
        box-shadow: none;
    }

    .about-page .about-service-card:hover,
    .about-page .workflow-card:hover {
        translate: none;
        border-color: var(--border-color);
        box-shadow: none;
    }

    .about-page .about-service-card:hover .about-service-icon,
    .about-page .workflow-card:hover .workflow-icon i {
        transform: none;
    }

}

/* ========================================
   ABOUT PAGE — FINAL CTA POLISH
======================================== */

.about-page .about-cta .cta-box {
    border-color: rgba(124, 77, 255, 0.28);
    transition:
        translate 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.about-page .about-cta .hero-buttons a {
    min-width: 190px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about-page .about-cta .hero-buttons a:focus-visible {
    outline: 3px solid var(--accent-blue);
    outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {

    .about-page .about-cta .cta-box:hover {
        translate: 0 -5px;
        border-color: var(--accent-blue);
        box-shadow:
            0 24px 55px rgba(0, 0, 0, 0.24),
            0 0 28px var(--blue-glow);
    }

}

@media (max-width: 600px) {

    .about-page .about-cta {
        padding: 70px 0;
    }

    .about-page .about-cta .cta-box {
        padding: 50px 22px;
        border-radius: 24px;
    }

    .about-page .about-cta .cta-box h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .about-page .about-cta .cta-box p {
        margin-bottom: 30px;
        font-size: 1rem;
    }

    .about-page .about-cta .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .about-page .about-cta .hero-buttons a {
        width: 100%;
        min-width: 0;
    }

}

@media (hover: none), (pointer: coarse) {

    .about-page .about-cta .cta-box,
    .about-page .about-cta .cta-box:hover {
        translate: none;
        border-color: rgba(124, 77, 255, 0.28);
        box-shadow: none;
    }

}

@media (prefers-reduced-motion: reduce) {

    .about-page .about-cta .cta-box,
    .about-page .about-cta .hero-buttons a {
        transition: none;
    }

    .about-page .about-cta .cta-box:hover {
        translate: none;
    }

}

/* ========================================
   PRICING CTA — BILINGUAL SIZE CONSISTENCY
======================================== */

.pricing-card .primary-btn {
    min-height: 58px;
    padding: 14px 20px;
    text-align: center;
    line-height: 1.35;
    white-space: normal;
}

@media (max-width: 600px) {

    .pricing-card .primary-btn {
        min-height: 76px;
        padding: 14px 18px;
    }

}

/* =========================
   SIM01 CARD INTERACTION POLISH
========================= */

.case-study-meta-item,
.before-after-card,
.annotation-legend li,
.validated-result-card,
.case-study-benefit-card,
.case-study-stack-card,
.related-case-study-card,
.implementation-level-card,
.growth-process-grid article,
.growth-evidence-grid .case-study-figure,
.growth-validation-summary {
    translate: 0 0;
    transition:
        translate 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {

    .case-study-meta-item:hover,
    .before-after-card:hover,
    .annotation-legend li:hover,
    .validated-result-card:hover,
    .case-study-benefit-card:hover,
    .case-study-stack-card:hover,
    .related-case-study-card:hover,
    .implementation-level-card:hover,
    .growth-process-grid article:hover,
    .growth-evidence-grid .case-study-figure:hover,
    .growth-validation-summary:hover {
        translate: 0 -5px;
        border-color: var(--accent-blue);
        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.25),
            0 0 25px var(--blue-glow);
    }

}

.growth-evidence-grid .case-study-figure {
    height: auto;
    align-self: start;
}

@media (prefers-reduced-motion: reduce) {

    .case-study-meta-item,
    .before-after-card,
    .annotation-legend li,
    .validated-result-card,
    .case-study-benefit-card,
    .case-study-stack-card,
    .related-case-study-card,
    .implementation-level-card,
    .growth-process-grid article,
    .growth-evidence-grid .case-study-figure,
    .growth-validation-summary {
        translate: 0 0;
        transition: none;
    }

}

/* ========================================
   SERVICES PAGE — COMPLETE VISUAL POLISH
======================================== */

/* SECTION RHYTHM */

.services-page .page-illustration {
    margin: 35px auto 15px;
    padding: 0 20px;
}

.services-page .page-illustration-image {
    border-radius: 28px;
    filter:
        drop-shadow(0 22px 42px rgba(0, 0, 0, 0.2));
}

.services-page .why-section,
.services-page .automation-workflows-section,
.services-page .services-platform-section,
.services-page .benefits-section,
.services-page .how-it-works-section,
.services-page .seo-services-section,
.services-page .faq-section {
    padding: 90px 0;
}

.services-page .page-section {
    min-height: 0;
    padding: 85px 20px 35px;
}

.services-page .services-grid-section {
    padding: 25px 0 90px;
}

.services-page .section-heading {
    max-width: 860px;
    margin-right: auto;
    margin-left: auto;
}


/* EQUAL-HEIGHT GRIDS */

.services-page .features-grid,
.services-page .automation-workflows-grid,
.services-page .services-grid,
.services-page .services-platform-grid,
.services-page .benefits-grid {
    align-items: stretch;
}

.services-page .feature-card,
.services-page .automation-workflow-card,
.services-page .service-card,
.services-page .services-platform-card,
.services-page .benefit-card {
    height: 100%;
}


/* SHARED CARD FOUNDATION */

.services-page .feature-card,
.services-page .automation-workflow-card,
.services-page .service-card,
.services-page .services-platform-card,
.services-page .benefit-card,
.services-page .platform-selection-criteria li {
    border-color: var(--border-color);
    background-color: var(--card-color);
    translate: 0 0;
    transition:
        translate 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}


/* CORRECT WORKFLOW CARD BACKGROUND */

.services-page .automation-workflow-card,
.services-page .automation-workflows-cta {
    background: var(--card-color);
}


/* MAIN CARD HOVER */

@media (hover: hover) and (pointer: fine) {

    .services-page .feature-card:hover,
    .services-page .automation-workflow-card:hover,
    .services-page .service-card:hover,
    .services-page .services-platform-card:hover,
    .services-page .benefit-card:hover {
        translate: 0 -6px;
        border-color: var(--accent-blue);
        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.24),
            0 0 25px var(--blue-glow);
    }

    .services-page .platform-selection-criteria li:hover {
        translate: 0 -3px;
        border-color: var(--accent-blue);
        box-shadow:
            0 12px 25px rgba(0, 0, 0, 0.18),
            0 0 18px var(--blue-glow);
    }

}


/* ICON POLISH */

.services-page .feature-icon,
.services-page .automation-workflow-icon,
.services-page .service-icon,
.services-page .services-platform-icon,
.services-page .benefit-icon {
    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {

    .services-page .feature-card:hover .feature-icon,
    .services-page .automation-workflow-card:hover
        .automation-workflow-icon,
    .services-page .service-card:hover .service-icon,
    .services-page .services-platform-card:hover
        .services-platform-icon,
    .services-page .benefit-card:hover .benefit-icon {
        transform: scale(1.06);
        background-color: rgba(0, 195, 255, 0.1);
        box-shadow:
            0 0 20px rgba(0, 195, 255, 0.12);
    }

}


/* SERVICE CARD BUTTON ALIGNMENT */

.services-page .service-card {
    max-width: none;
}

.services-page .service-card > p {
    flex-grow: 1;
}

.services-page .service-card .hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    text-align: center;
}

.services-page .service-card .case-study-link {
    width: 100%;
    min-height: 48px;
    margin-top: 0;
}


/* INFORMATION AND CTA PANELS */

.services-page .automation-workflows-cta,
.services-page .platform-selection-note,
.services-page .seo-services-content,
.services-page .services-preview-button {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(124, 77, 255, 0.25);
    background:
        linear-gradient(
            135deg,
            rgba(124, 77, 255, 0.09),
            rgba(0, 195, 255, 0.045)
        ),
        var(--card-color);
    translate: 0 0;
    transition:
        translate 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.services-page .automation-workflows-cta {
    border-radius: 24px;
}

.services-page .seo-services-content {
    max-width: 900px;
    padding: 42px;
    border-left: 4px solid var(--accent-blue);
    border-radius: 24px;
    text-align: left;
}

.services-page .seo-services-content p:last-child {
    margin-bottom: 0;
}

.services-page .services-preview-button {
    max-width: 900px;
    margin: 20px auto 100px;
    padding: 48px 32px;
    border-radius: 26px;
}

@media (hover: hover) and (pointer: fine) {

    .services-page .automation-workflows-cta:hover,
    .services-page .platform-selection-note:hover,
    .services-page .seo-services-content:hover,
    .services-page .services-preview-button:hover {
        translate: 0 -5px;
        border-color: var(--accent-blue);
        box-shadow:
            0 24px 50px rgba(0, 0, 0, 0.24),
            0 0 28px var(--blue-glow);
    }

}


/* PRICING CTA BUTTONS */

.services-page .services-pricing-cta .hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    min-height: 52px;
}

.services-page .services-pricing-cta .hero-button:focus-visible,
.services-page .service-card a:focus-visible,
.services-page .services-preview-button a:focus-visible {
    outline: 3px solid var(--accent-blue);
    outline-offset: 4px;
}


/* FAQ POLISH */

.services-page .faq-container {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}

.services-page .faq-accordion {
    margin-bottom: 16px;
}

.services-page .accordion-header {
    border-color: var(--border-color);
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            rgba(124, 77, 255, 0.08),
            rgba(0, 195, 255, 0.025)
        ),
        var(--card-color);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.services-page .faq-accordion.active .accordion-header {
    border-color: var(--accent-blue);
    box-shadow:
        0 0 20px rgba(0, 195, 255, 0.1);
}

@media (hover: hover) and (pointer: fine) {

    .services-page .accordion-header:hover {
        border-color: var(--accent-blue);
        box-shadow:
            0 10px 26px rgba(0, 0, 0, 0.16),
            0 0 18px var(--blue-glow);
    }

}


/* FOOTER HEADING ALIGNMENT */

.services-page .footer-column h4 {
    min-height: 2.8em;
    line-height: 1.4;
    overflow-wrap: anywhere;
}


/* LIGHT MODE */

body.services-page.light-mode
    .seo-services-content,
body.services-page.light-mode
    .services-preview-button,
body.services-page.light-mode
    .automation-workflows-cta,
body.services-page.light-mode
    .platform-selection-note {
    box-shadow:
        0 14px 34px rgba(15, 23, 42, 0.06);
}


/* TABLET */

@media (max-width: 950px) {

    .services-page .why-section,
    .services-page .automation-workflows-section,
    .services-page .services-platform-section,
    .services-page .benefits-section,
    .services-page .how-it-works-section,
    .services-page .seo-services-section,
    .services-page .faq-section {
        padding: 75px 0;
    }

    .services-page .services-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
        margin-right: auto;
        margin-left: auto;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .services-page .page-illustration {
        margin-top: 18px;
        margin-bottom: 5px;
    }

    .services-page .page-illustration-image {
        border-radius: 20px;
    }

    .services-page .page-section {
        padding: 65px 20px 25px;
    }

    .services-page .why-section,
    .services-page .automation-workflows-section,
    .services-page .services-platform-section,
    .services-page .benefits-section,
    .services-page .how-it-works-section,
    .services-page .seo-services-section,
    .services-page .faq-section {
        padding: 65px 0;
    }

    .services-page .feature-card,
    .services-page .automation-workflow-card,
    .services-page .service-card,
    .services-page .services-platform-card,
    .services-page .benefit-card {
        padding: 26px 22px;
        border-radius: 20px;
    }

    .services-page .seo-services-content,
    .services-page .services-preview-button,
    .services-page .automation-workflows-cta,
    .services-page .platform-selection-note {
        padding: 30px 22px;
        border-radius: 20px;
    }

    .services-page .services-pricing-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .services-page .services-pricing-cta .hero-button {
        width: 100%;
        min-width: 0;
    }

    .services-page .footer-column h4 {
        min-height: 0;
    }

}


/* TOUCH DEVICES */

@media (hover: none), (pointer: coarse) {

    .services-page .feature-card,
    .services-page .automation-workflow-card,
    .services-page .service-card,
    .services-page .services-platform-card,
    .services-page .benefit-card,
    .services-page .platform-selection-criteria li,
    .services-page .automation-workflows-cta,
    .services-page .platform-selection-note,
    .services-page .seo-services-content,
    .services-page .services-preview-button {
        translate: 0 0;
    }

}


/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {

    .services-page .feature-card,
    .services-page .automation-workflow-card,
    .services-page .service-card,
    .services-page .services-platform-card,
    .services-page .benefit-card,
    .services-page .platform-selection-criteria li,
    .services-page .automation-workflows-cta,
    .services-page .platform-selection-note,
    .services-page .seo-services-content,
    .services-page .services-preview-button,
    .services-page .feature-icon,
    .services-page .automation-workflow-icon,
    .services-page .service-icon,
    .services-page .services-platform-icon,
    .services-page .benefit-icon,
    .services-page .accordion-header {
        transition: none;
    }

}

/* ========================================
   LEAD SERVICE PAGE — COMPLETE POLISH
======================================== */

/* SECTION RHYTHM */

.lead-service-page main > .page-section {
    padding-top: 90px;
    padding-bottom: 90px;
}

.lead-service-page .lead-service-hero {
    padding-top: 105px;
}

.lead-service-page .services-grid-section {
    padding: 90px 0;
}

.lead-service-page .section-heading {
    max-width: 880px;
    margin-right: auto;
    margin-left: auto;
}


/* HERO BOUNDARY NOTE */

.lead-service-page .lead-service-boundary {
    max-width: 820px;
    margin: 28px auto 0;
    padding: 18px 22px;
    border: 1px solid rgba(0, 195, 255, 0.22);
    border-left: 4px solid var(--accent-blue);
    border-radius: 0 16px 16px 0;
    background: rgba(0, 195, 255, 0.055);
    color: var(--text-secondary);
    line-height: 1.75;
}


/* SHARED CARD FOUNDATION */

.lead-service-page .integration-card,
.lead-service-page .service-card,
.lead-service-page .lead-platform-card {
    height: 100%;
    border-color: var(--border-color);
    background-color: var(--card-color);
    translate: 0 0;
    transition:
        translate 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.lead-service-page .services-grid,
.lead-service-page .integrations-grid,
.lead-service-page .lead-platform-grid {
    align-items: stretch;
}

.lead-service-page .service-card {
    max-width: none;
}


/* INTEGRATION CARDS */

.lead-service-page .integration-card {
    cursor: default;
}

.lead-service-page .integration-card i {
    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* SERVICE CARD ICONS */

.lead-service-page .service-icon {
    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* PLATFORM DISCLOSURE — UNSTICK FROM CARDS */

.lead-service-page .lead-platform-disclosure {
    max-width: 800px;
    margin: 38px auto 0;
    padding: 20px 24px;
    border: 1px solid rgba(0, 195, 255, 0.2);
    border-left: 4px solid var(--accent-blue);
    border-radius: 0 16px 16px 0;
    background:
        linear-gradient(
            135deg,
            rgba(0, 195, 255, 0.075),
            rgba(124, 77, 255, 0.035)
        ),
        var(--card-color);
    color: var(--text-secondary);
    line-height: 1.75;
    text-align: center;
}


/* PRICING CTA */

.lead-service-page .service-cta {
    max-width: 860px;
    margin: 40px auto;
    padding: 52px 38px;
    border: 1px solid rgba(124, 77, 255, 0.25);
    border-left: 4px solid var(--accent-blue);
    border-radius: 26px;
    background:
        linear-gradient(
            135deg,
            rgba(124, 77, 255, 0.1),
            rgba(0, 195, 255, 0.045)
        ),
        var(--card-color);
    translate: 0 0;
    transition:
        translate 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.lead-service-page .service-cta .primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 235px;
    min-height: 54px;
    text-align: center;
}


/* FAQ POLISH */

.lead-service-page #lead-service-faq .faq-container {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}

.lead-service-page #lead-service-faq .faq-accordion {
    margin-bottom: 16px;
}

.lead-service-page #lead-service-faq .accordion-header {
    border-color: var(--border-color);
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            rgba(124, 77, 255, 0.075),
            rgba(0, 195, 255, 0.025)
        ),
        var(--card-color);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.lead-service-page
#lead-service-faq
.faq-accordion.active
.accordion-header {
    border-color: var(--accent-blue);
    box-shadow:
        0 0 20px rgba(0, 195, 255, 0.1);
}

.lead-service-page #lead-service-faq .accordion-content p {
    padding: 18px 22px 22px;
    line-height: 1.75;
}


/* RELATED CASE STUDY */

.lead-service-page
.related-case-study-service-section
.cta-box {
    border-color: rgba(124, 77, 255, 0.26);
    background:
        linear-gradient(
            135deg,
            rgba(124, 77, 255, 0.11),
            rgba(0, 195, 255, 0.045)
        ),
        var(--card-color);
    translate: 0 0;
    transition:
        translate 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.lead-service-page .case-study-scope-note {
    max-width: 780px;
    padding: 18px 20px;
    border-left: 4px solid var(--accent-blue);
    border-radius: 0 14px 14px 0;
    background: rgba(0, 195, 255, 0.055);
    font-size: 0.96rem;
}


/* FINAL CTA */

.lead-service-page .final-cta-section .newsletter-box {
    position: relative;
    overflow: hidden;
    border-color: rgba(124, 77, 255, 0.26);
    background:
        linear-gradient(
            135deg,
            rgba(124, 77, 255, 0.08),
            rgba(0, 195, 255, 0.035)
        ),
        var(--card-color);
    translate: 0 0;
    transition:
        translate 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.lead-service-page .final-cta-section .hero-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 215px;
    min-height: 54px;
    text-align: center;
}


/* KEYBOARD ACCESSIBILITY */

.lead-service-page .hero-buttons a:focus-visible,
.lead-service-page .service-cta a:focus-visible,
.lead-service-page
.related-case-study-service-section
a:focus-visible {
    outline: 3px solid var(--accent-blue);
    outline-offset: 4px;
}


/* DESKTOP HOVER */

@media (hover: hover) and (pointer: fine) {

    .lead-service-page .integration-card:hover,
    .lead-service-page .service-card:hover,
    .lead-service-page .lead-platform-card:hover {
        translate: 0 -6px;
        border-color: var(--accent-blue);
        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.24),
            0 0 25px var(--blue-glow);
    }

    .lead-service-page .integration-card:hover i,
    .lead-service-page .service-card:hover .service-icon {
        transform: scale(1.06);
        background-color: rgba(0, 195, 255, 0.1);
        box-shadow:
            0 0 20px rgba(0, 195, 255, 0.12);
    }

    .lead-service-page .service-cta:hover,
    .lead-service-page
    .related-case-study-service-section
    .cta-box:hover,
    .lead-service-page
    .final-cta-section
    .newsletter-box:hover {
        translate: 0 -5px;
        border-color: var(--accent-blue);
        box-shadow:
            0 24px 50px rgba(0, 0, 0, 0.24),
            0 0 28px var(--blue-glow);
    }

    .lead-service-page
    #lead-service-faq
    .accordion-header:hover {
        border-color: var(--accent-blue);
        box-shadow:
            0 10px 26px rgba(0, 0, 0, 0.16),
            0 0 18px var(--blue-glow);
    }

}


/* FOOTER HEADING ALIGNMENT */

.lead-service-page .footer-column h4 {
    min-height: 2.8em;
    line-height: 1.4;
    overflow-wrap: anywhere;
}


/* TABLET */

@media (max-width: 900px) {

    .lead-service-page main > .page-section,
    .lead-service-page .services-grid-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .lead-service-page .lead-service-hero {
        padding-top: 90px;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .lead-service-page main > .page-section,
    .lead-service-page .services-grid-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .lead-service-page .lead-service-hero {
        padding-top: 75px;
    }

    .lead-service-page .lead-service-boundary,
    .lead-service-page .lead-platform-disclosure {
        padding: 17px 18px;
        text-align: left;
    }

    .lead-service-page .lead-platform-disclosure {
        margin-top: 28px;
    }

    .lead-service-page .service-card,
    .lead-service-page .lead-platform-card {
        padding: 26px 22px;
        border-radius: 20px;
    }

    .lead-service-page .service-cta,
    .lead-service-page
    .related-case-study-service-section
    .cta-box,
    .lead-service-page
    .final-cta-section
    .newsletter-box {
        padding: 38px 22px;
        border-radius: 22px;
    }

    .lead-service-page .service-cta {
        width: calc(100% - 40px);
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .lead-service-page .final-cta-section .hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .lead-service-page .final-cta-section .hero-buttons a,
    .lead-service-page .service-cta .primary-btn {
        width: 100%;
        min-width: 0;
    }

    .lead-service-page .footer-column h4 {
        min-height: 0;
    }

}


/* TOUCH DEVICES */

@media (hover: none), (pointer: coarse) {

    .lead-service-page .integration-card,
    .lead-service-page .service-card,
    .lead-service-page .lead-platform-card,
    .lead-service-page .service-cta,
    .lead-service-page
    .related-case-study-service-section
    .cta-box,
    .lead-service-page
    .final-cta-section
    .newsletter-box {
        translate: 0 0;
    }

}


/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {

    .lead-service-page .integration-card,
    .lead-service-page .integration-card i,
    .lead-service-page .service-card,
    .lead-service-page .service-icon,
    .lead-service-page .lead-platform-card,
    .lead-service-page .service-cta,
    .lead-service-page
    .related-case-study-service-section
    .cta-box,
    .lead-service-page
    .final-cta-section
    .newsletter-box,
    .lead-service-page
    #lead-service-faq
    .accordion-header {
        transition: none;
    }

}

/* ========================================
   SUPPORT SERVICE PAGE — COMPLETE POLISH
======================================== */


/* SECTION RHYTHM */

.support-service-page main > .page-section,
.support-service-page main > .services-grid-section {
    padding-top: 90px;
    padding-bottom: 90px;
}

.support-service-page main > .page-section:first-child {
    padding-top: 105px;
}

.support-service-page .section-heading {
    max-width: 880px;
    margin-right: auto;
    margin-left: auto;
}


/* SHARED CARD FOUNDATION */

.support-service-page .integration-card,
.support-service-page .support-platform-card,
.support-service-page .service-card,
.support-service-page .workflow-card {
    height: 100%;
    border-color: var(--border-color);
    background-color: var(--card-color);
    translate: 0 0;
    transition:
        translate 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.support-service-page .integrations-grid,
.support-service-page .support-platform-grid,
.support-service-page .services-grid,
.support-service-page .workflow-grid {
    align-items: stretch;
}

.support-service-page .service-card {
    max-width: none;
}


/* PREVENT OLD TRANSFORM HOVER FROM COMBINING WITH TRANSLATE */

.support-service-page .integration-card:hover,
.support-service-page .service-card:hover {
    transform: none;
}


/* INTEGRATION CARDS */

.support-service-page .integration-card {
    cursor: default;
}

.support-service-page .integration-card i {
    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* SERVICE ICONS */

.support-service-page .service-icon {
    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* WORKFLOW CARDS */

.support-service-page .workflow-number {
    transition:
        color 0.3s ease,
        transform 0.3s ease,
        text-shadow 0.3s ease;
}


/* PLATFORM DISCLOSURE — SEPARATE FROM CARDS */

.support-service-page .support-platform-disclosure {
    max-width: 800px;
    margin: 38px auto 0;
    padding: 20px 24px;
    border: 1px solid rgba(0, 195, 255, 0.2);
    border-left: 4px solid var(--accent-blue);
    border-radius: 0 16px 16px 0;
    background:
        linear-gradient(
            135deg,
            rgba(0, 195, 255, 0.075),
            rgba(124, 77, 255, 0.035)
        ),
        var(--card-color);
    color: var(--text-secondary);
    line-height: 1.75;
    text-align: center;
}


/* PRICING CTA */

.support-service-page .service-cta {
    max-width: 860px;
    margin: 40px auto;
    padding: 52px 38px;
    border: 1px solid rgba(124, 77, 255, 0.25);
    border-left: 4px solid var(--accent-blue);
    border-radius: 26px;
    background:
        linear-gradient(
            135deg,
            rgba(124, 77, 255, 0.1),
            rgba(0, 195, 255, 0.045)
        ),
        var(--card-color);
    translate: 0 0;
    transition:
        translate 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.support-service-page .service-cta .primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 235px;
    min-height: 54px;
    text-align: center;
}


/* FAQ POLISH */

.support-service-page #support-service-faq .faq-container {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}

.support-service-page #support-service-faq .faq-accordion {
    margin-bottom: 16px;
}

.support-service-page #support-service-faq .accordion-header {
    border-color: var(--border-color);
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            rgba(124, 77, 255, 0.075),
            rgba(0, 195, 255, 0.025)
        ),
        var(--card-color);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.support-service-page
#support-service-faq
.faq-accordion.active
.accordion-header {
    border-color: var(--accent-blue);
    box-shadow:
        0 0 20px rgba(0, 195, 255, 0.1);
}

.support-service-page
#support-service-faq
.accordion-content p {
    padding: 18px 22px 22px;
    line-height: 1.75;
}


/* RELATED CASE STUDY */

.support-service-page
.related-case-study-service-section
.cta-box {
    border-color: rgba(124, 77, 255, 0.26);
    background:
        linear-gradient(
            135deg,
            rgba(124, 77, 255, 0.11),
            rgba(0, 195, 255, 0.045)
        ),
        var(--card-color);
    translate: 0 0;
    transition:
        translate 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.support-service-page .case-study-scope-note {
    max-width: 780px;
    margin: 24px auto 30px;
    padding: 18px 20px;
    border: 1px solid rgba(0, 195, 255, 0.18);
    border-left: 4px solid var(--accent-blue);
    border-radius: 0 14px 14px 0;
    background: rgba(0, 195, 255, 0.055);
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.75;
}


/* FINAL CTA */

.support-service-page
.final-cta-section
.newsletter-box {
    position: relative;
    overflow: hidden;
    border-color: rgba(124, 77, 255, 0.26);
    background:
        linear-gradient(
            135deg,
            rgba(124, 77, 255, 0.08),
            rgba(0, 195, 255, 0.035)
        ),
        var(--card-color);
    translate: 0 0;
    transition:
        translate 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.support-service-page
.final-cta-section
.hero-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 215px;
    min-height: 54px;
    text-align: center;
}


/* KEYBOARD ACCESSIBILITY */

.support-service-page .hero-buttons a:focus-visible,
.support-service-page .service-cta a:focus-visible,
.support-service-page
.related-case-study-service-section
a:focus-visible {
    outline: 3px solid var(--accent-blue);
    outline-offset: 4px;
}


/* DESKTOP HOVER */

@media (hover: hover) and (pointer: fine) {

    .support-service-page .integration-card:hover,
    .support-service-page .support-platform-card:hover,
    .support-service-page .service-card:hover,
    .support-service-page .workflow-card:hover {
        translate: 0 -6px;
        border-color: var(--accent-blue);
        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.24),
            0 0 25px var(--blue-glow);
    }

    .support-service-page .integration-card:hover i,
    .support-service-page
    .service-card:hover
    .service-icon {
        transform: scale(1.06);
        background-color: rgba(0, 195, 255, 0.1);
        box-shadow:
            0 0 20px rgba(0, 195, 255, 0.12);
    }

    .support-service-page
    .workflow-card:hover
    .workflow-number {
        color: rgba(0, 195, 255, 0.7);
        transform: scale(1.04);
        text-shadow:
            0 0 18px rgba(0, 195, 255, 0.18);
    }

    .support-service-page .service-cta:hover,
    .support-service-page
    .related-case-study-service-section
    .cta-box:hover,
    .support-service-page
    .final-cta-section
    .newsletter-box:hover {
        translate: 0 -5px;
        border-color: var(--accent-blue);
        box-shadow:
            0 24px 50px rgba(0, 0, 0, 0.24),
            0 0 28px var(--blue-glow);
    }

    .support-service-page
    #support-service-faq
    .accordion-header:hover {
        border-color: var(--accent-blue);
        box-shadow:
            0 10px 26px rgba(0, 0, 0, 0.16),
            0 0 18px var(--blue-glow);
    }

}


/* LIGHT MODE */

body.support-service-page.light-mode
    .support-platform-disclosure,
body.support-service-page.light-mode
    .service-cta,
body.support-service-page.light-mode
    .related-case-study-service-section
    .cta-box,
body.support-service-page.light-mode
    .final-cta-section
    .newsletter-box {
    box-shadow:
        0 14px 34px rgba(15, 23, 42, 0.06);
}


/* FOOTER HEADING ALIGNMENT */

.support-service-page .footer-column h4 {
    min-height: 2.8em;
    line-height: 1.4;
    overflow-wrap: anywhere;
}


/* TABLET */

@media (max-width: 900px) {

    .support-service-page main > .page-section,
    .support-service-page main > .services-grid-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .support-service-page
    main > .page-section:first-child {
        padding-top: 90px;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .support-service-page main > .page-section,
    .support-service-page main > .services-grid-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .support-service-page
    main > .page-section:first-child {
        padding-top: 75px;
    }

    .support-service-page .integration-card {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .support-service-page .support-platform-card,
    .support-service-page .service-card,
    .support-service-page .workflow-card {
        padding: 26px 22px;
        border-radius: 20px;
    }

    .support-service-page
    .support-platform-disclosure {
        margin-top: 28px;
        padding: 17px 18px;
        text-align: left;
    }

    .support-service-page .service-cta,
    .support-service-page
    .related-case-study-service-section
    .cta-box,
    .support-service-page
    .final-cta-section
    .newsletter-box {
        padding: 38px 22px;
        border-radius: 22px;
    }

    .support-service-page .service-cta {
        width: calc(100% - 40px);
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .support-service-page
    .case-study-scope-note {
        padding: 17px 18px;
        text-align: left;
    }

    .support-service-page
    .final-cta-section
    .hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .support-service-page
    .final-cta-section
    .hero-buttons a,
    .support-service-page
    .service-cta
    .primary-btn {
        width: 100%;
        min-width: 0;
    }

    .support-service-page .footer-column h4 {
        min-height: 0;
    }

}


/* TOUCH DEVICES */

@media (hover: none), (pointer: coarse) {

    .support-service-page .integration-card,
    .support-service-page .support-platform-card,
    .support-service-page .service-card,
    .support-service-page .workflow-card,
    .support-service-page .service-cta,
    .support-service-page
    .related-case-study-service-section
    .cta-box,
    .support-service-page
    .final-cta-section
    .newsletter-box {
        translate: 0 0;
    }

    .support-service-page .integration-card:hover,
    .support-service-page .service-card:hover {
        transform: none;
    }

}


/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {

    .support-service-page .integration-card,
    .support-service-page .integration-card i,
    .support-service-page .support-platform-card,
    .support-service-page .service-card,
    .support-service-page .service-icon,
    .support-service-page .workflow-card,
    .support-service-page .workflow-number,
    .support-service-page .service-cta,
    .support-service-page
    .related-case-study-service-section
    .cta-box,
    .support-service-page
    .final-cta-section
    .newsletter-box,
    .support-service-page
    #support-service-faq
    .accordion-header {
        transition: none;
    }

    .support-service-page .integration-card,
    .support-service-page .support-platform-card,
    .support-service-page .service-card,
    .support-service-page .workflow-card,
    .support-service-page .service-cta,
    .support-service-page
    .related-case-study-service-section
    .cta-box,
    .support-service-page
    .final-cta-section
    .newsletter-box {
        translate: 0 0;
    }

}

/* =========================
   WHATSAPP SERVICE PLATFORM STACK
========================= */

.whatsapp-platform-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 50px;
    align-items: stretch;
}

.whatsapp-platform-card {
    height: 100%;
    padding: 34px;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    background: var(--card-color);
    translate: 0 0;
    transition:
        translate 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.whatsapp-platform-card.validated-stack-card {
    border-color: rgba(124, 77, 255, 0.48);
}

.whatsapp-platform-status {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 7px 13px;
    border: 1px solid rgba(124, 77, 255, 0.5);
    border-radius: 999px;
    background: rgba(124, 77, 255, 0.1);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.35;
}

.whatsapp-platform-status.option-status {
    border-color: rgba(0, 195, 255, 0.45);
    background: rgba(0, 195, 255, 0.08);
}

.whatsapp-platform-card h3 {
    margin-bottom: 16px;
}

.whatsapp-platform-card p,
.whatsapp-platform-card li {
    color: var(--text-secondary);
    line-height: 1.7;
}

.whatsapp-platform-card ul {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
    padding-left: 20px;
}

.whatsapp-platform-disclosure {
    max-width: 800px;
    margin: 38px auto 0;
    padding: 20px 24px;
    border: 1px solid rgba(0, 195, 255, 0.2);
    border-left: 4px solid var(--accent-blue);
    border-radius: 0 16px 16px 0;
    background:
        linear-gradient(
            135deg,
            rgba(0, 195, 255, 0.075),
            rgba(124, 77, 255, 0.035)
        ),
        var(--card-color);
    color: var(--text-secondary);
    line-height: 1.75;
    text-align: center;
}

@media (hover: hover) and (pointer: fine) {

    .whatsapp-platform-card:hover {
        translate: 0 -5px;
        border-color: var(--accent-blue);
        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.24),
            0 0 25px var(--blue-glow);
    }

}

@media (max-width: 800px) {

    .whatsapp-platform-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .whatsapp-platform-card {
        padding: 26px 22px;
        border-radius: 20px;
    }

    .whatsapp-platform-disclosure {
        margin-top: 28px;
        padding: 17px 18px;
        text-align: left;
    }

}

@media (prefers-reduced-motion: reduce) {

    .whatsapp-platform-card {
        translate: 0 0;
        transition: none;
    }

}

/* ========================================
   WHATSAPP SERVICE PAGE — COMPLETE POLISH
======================================== */


/* SECTION RHYTHM */

.whatsapp-service-page main > .page-section,
.whatsapp-service-page main > .services-grid-section {
    padding-top: 90px;
    padding-bottom: 90px;
}

.whatsapp-service-page .section-heading {
    max-width: 880px;
    margin-right: auto;
    margin-left: auto;
}

.whatsapp-service-page .section-heading h1,
.whatsapp-service-page .section-heading h2 {
    text-wrap: balance;
}


/* HERO SECTION */

.whatsapp-service-page main > .page-section:first-child {
    position: relative;
    overflow: hidden;
    padding-top: 110px;
    padding-bottom: 100px;
    background:
        radial-gradient(
            circle at 18% 22%,
            rgba(0, 195, 255, 0.13),
            transparent 34%
        ),
        radial-gradient(
            circle at 82% 35%,
            rgba(124, 77, 255, 0.12),
            transparent 36%
        );
}

.whatsapp-service-page
main > .page-section:first-child::after {
    position: absolute;
    right: 8%;
    bottom: -115px;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(0, 195, 255, 0.14);
    border-radius: 50%;
    box-shadow:
        0 0 70px rgba(0, 195, 255, 0.08);
    content: "";
    pointer-events: none;
}

.whatsapp-service-page
main > .page-section:first-child
.section-heading {
    position: relative;
    z-index: 1;
    max-width: 900px;
}


/* SUBTLE SECTION BACKGROUNDS */

.whatsapp-service-page .integrations-section,
.whatsapp-service-page .whatsapp-platform-section,
.whatsapp-service-page #whatsapp-service-faq,
.whatsapp-service-page .final-cta-section {
    background:
        linear-gradient(
            135deg,
            rgba(0, 195, 255, 0.025),
            rgba(124, 77, 255, 0.025)
        );
}


/* SHARED REVEAL-SAFE CARD FOUNDATION */

.whatsapp-service-page .integration-card,
.whatsapp-service-page .whatsapp-platform-card,
.whatsapp-service-page .service-card,
.whatsapp-service-page .workflow-card {
    height: 100%;
    border-color: var(--border-color);
    background-color: var(--card-color);
    translate: 0 0;
    transition:
        translate 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.whatsapp-service-page .integrations-grid,
.whatsapp-service-page .whatsapp-platform-grid,
.whatsapp-service-page .services-grid,
.whatsapp-service-page .workflow-grid {
    align-items: stretch;
}

.whatsapp-service-page .service-card {
    max-width: none;
}


/* PREVENT OLD TRANSFORM HOVERS */

.whatsapp-service-page .integration-card:hover,
.whatsapp-service-page .service-card:hover {
    transform: none;
}


/* INTEGRATION CARDS */

.whatsapp-service-page .integration-card {
    cursor: default;
}

.whatsapp-service-page .integration-card i {
    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* FEATURE AND USE-CASE CARDS */

.whatsapp-service-page .service-icon {
    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.whatsapp-service-page
.services-grid-section
.service-card {
    border-top: 3px solid rgba(0, 195, 255, 0.48);
}

.whatsapp-service-page
.use-cases-grid
.service-card {
    border-top: 1px solid var(--border-color);
    border-left: 3px solid rgba(0, 195, 255, 0.4);
}


/* WORKFLOW CARDS */

.whatsapp-service-page .workflow-card {
    border-bottom: 3px solid rgba(124, 77, 255, 0.42);
}

.whatsapp-service-page .workflow-number {
    transition:
        color 0.3s ease,
        transform 0.3s ease,
        text-shadow 0.3s ease;
}


/* PRICING CTA */

.whatsapp-service-page .service-cta {
    max-width: 860px;
    margin: 40px auto;
    padding: 52px 38px;
    border: 1px solid rgba(124, 77, 255, 0.25);
    border-left: 4px solid var(--accent-blue);
    border-radius: 26px;
    background:
        linear-gradient(
            135deg,
            rgba(124, 77, 255, 0.1),
            rgba(0, 195, 255, 0.045)
        ),
        var(--card-color);
    translate: 0 0;
    transition:
        translate 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.whatsapp-service-page
.service-cta
.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 235px;
    min-height: 54px;
    text-align: center;
}


/* FAQ */

.whatsapp-service-page
#whatsapp-service-faq
.faq-container {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}

.whatsapp-service-page
#whatsapp-service-faq
.faq-accordion {
    margin-bottom: 16px;
}

.whatsapp-service-page
#whatsapp-service-faq
.accordion-header {
    border-color: var(--border-color);
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            rgba(124, 77, 255, 0.075),
            rgba(0, 195, 255, 0.025)
        ),
        var(--card-color);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.whatsapp-service-page
#whatsapp-service-faq
.faq-accordion.active
.accordion-header {
    border-color: var(--accent-blue);
    box-shadow:
        0 0 20px rgba(0, 195, 255, 0.1);
}

.whatsapp-service-page
#whatsapp-service-faq
.accordion-content p {
    padding: 18px 22px 22px;
    line-height: 1.75;
}


/* RELATED CASE STUDY */

.whatsapp-service-page
.related-case-study-service-section
.cta-box {
    border-color: rgba(124, 77, 255, 0.26);
    background:
        linear-gradient(
            135deg,
            rgba(124, 77, 255, 0.11),
            rgba(0, 195, 255, 0.045)
        ),
        var(--card-color);
    translate: 0 0;
    transition:
        translate 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.whatsapp-service-page .case-study-scope-note {
    max-width: 780px;
    margin: 24px auto 30px;
    padding: 18px 20px;
    border: 1px solid rgba(0, 195, 255, 0.18);
    border-left: 4px solid var(--accent-blue);
    border-radius: 0 14px 14px 0;
    background: rgba(0, 195, 255, 0.055);
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.75;
}


/* FINAL CTA */

.whatsapp-service-page
.final-cta-section
.newsletter-box {
    position: relative;
    overflow: hidden;
    border-color: rgba(124, 77, 255, 0.26);
    background:
        linear-gradient(
            135deg,
            rgba(124, 77, 255, 0.08),
            rgba(0, 195, 255, 0.035)
        ),
        var(--card-color);
    translate: 0 0;
    transition:
        translate 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.whatsapp-service-page
.final-cta-section
.hero-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 215px;
    min-height: 54px;
    text-align: center;
}


/* KEYBOARD ACCESSIBILITY */

.whatsapp-service-page .hero-buttons a:focus-visible,
.whatsapp-service-page .service-cta a:focus-visible,
.whatsapp-service-page
.related-case-study-service-section
a:focus-visible {
    outline: 3px solid var(--accent-blue);
    outline-offset: 4px;
}


/* DESKTOP HOVER EFFECTS */

@media (hover: hover) and (pointer: fine) {

    .whatsapp-service-page .integration-card:hover,
    .whatsapp-service-page .whatsapp-platform-card:hover,
    .whatsapp-service-page .service-card:hover,
    .whatsapp-service-page .workflow-card:hover {
        translate: 0 -6px;
        border-color: var(--accent-blue);
        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.24),
            0 0 25px var(--blue-glow);
    }

    .whatsapp-service-page
    .integration-card:hover i,
    .whatsapp-service-page
    .service-card:hover
    .service-icon {
        transform: scale(1.06);
        background-color: rgba(0, 195, 255, 0.1);
        box-shadow:
            0 0 20px rgba(0, 195, 255, 0.12);
    }

    .whatsapp-service-page
    .workflow-card:hover
    .workflow-number {
        color: rgba(0, 195, 255, 0.7);
        transform: scale(1.04);
        text-shadow:
            0 0 18px rgba(0, 195, 255, 0.18);
    }

    .whatsapp-service-page .service-cta:hover,
    .whatsapp-service-page
    .related-case-study-service-section
    .cta-box:hover,
    .whatsapp-service-page
    .final-cta-section
    .newsletter-box:hover {
        translate: 0 -5px;
        border-color: var(--accent-blue);
        box-shadow:
            0 24px 50px rgba(0, 0, 0, 0.24),
            0 0 28px var(--blue-glow);
    }

    .whatsapp-service-page
    #whatsapp-service-faq
    .accordion-header:hover {
        border-color: var(--accent-blue);
        box-shadow:
            0 10px 26px rgba(0, 0, 0, 0.16),
            0 0 18px var(--blue-glow);
    }

}


/* LIGHT MODE */

body.whatsapp-service-page.light-mode
.whatsapp-platform-disclosure,
body.whatsapp-service-page.light-mode
.service-cta,
body.whatsapp-service-page.light-mode
.related-case-study-service-section
.cta-box,
body.whatsapp-service-page.light-mode
.final-cta-section
.newsletter-box {
    box-shadow:
        0 14px 34px rgba(15, 23, 42, 0.06);
}


/* FOOTER HEADING ALIGNMENT */

.whatsapp-service-page .footer-column h4 {
    min-height: 2.8em;
    line-height: 1.4;
    overflow-wrap: anywhere;
}


/* TABLET */

@media (max-width: 900px) {

    .whatsapp-service-page main > .page-section,
    .whatsapp-service-page main > .services-grid-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .whatsapp-service-page
    main > .page-section:first-child {
        padding-top: 90px;
        padding-bottom: 85px;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .whatsapp-service-page main > .page-section,
    .whatsapp-service-page main > .services-grid-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .whatsapp-service-page
    main > .page-section:first-child {
        padding-top: 75px;
        padding-bottom: 70px;
    }

    .whatsapp-service-page .integration-card {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .whatsapp-service-page .whatsapp-platform-card,
    .whatsapp-service-page .service-card,
    .whatsapp-service-page .workflow-card {
        padding: 26px 22px;
        border-radius: 20px;
    }

    .whatsapp-service-page
    .whatsapp-platform-disclosure {
        margin-top: 28px;
        padding: 17px 18px;
        text-align: left;
    }

    .whatsapp-service-page .service-cta,
    .whatsapp-service-page
    .related-case-study-service-section
    .cta-box,
    .whatsapp-service-page
    .final-cta-section
    .newsletter-box {
        padding: 38px 22px;
        border-radius: 22px;
    }

    .whatsapp-service-page .service-cta {
        width: calc(100% - 40px);
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .whatsapp-service-page
    .case-study-scope-note {
        padding: 17px 18px;
        text-align: left;
    }

    .whatsapp-service-page
    .final-cta-section
    .hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .whatsapp-service-page
    .final-cta-section
    .hero-buttons a,
    .whatsapp-service-page
    .service-cta
    .primary-btn {
        width: 100%;
        min-width: 0;
    }

    .whatsapp-service-page .footer-column h4 {
        min-height: 0;
    }

}


/* TOUCH DEVICES */

@media (hover: none), (pointer: coarse) {

    .whatsapp-service-page .integration-card,
    .whatsapp-service-page .whatsapp-platform-card,
    .whatsapp-service-page .service-card,
    .whatsapp-service-page .workflow-card,
    .whatsapp-service-page .service-cta,
    .whatsapp-service-page
    .related-case-study-service-section
    .cta-box,
    .whatsapp-service-page
    .final-cta-section
    .newsletter-box {
        translate: 0 0;
    }

    .whatsapp-service-page .integration-card:hover,
    .whatsapp-service-page .service-card:hover {
        transform: none;
    }

}


/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {

    .whatsapp-service-page .integration-card,
    .whatsapp-service-page .integration-card i,
    .whatsapp-service-page .whatsapp-platform-card,
    .whatsapp-service-page .service-card,
    .whatsapp-service-page .service-icon,
    .whatsapp-service-page .workflow-card,
    .whatsapp-service-page .workflow-number,
    .whatsapp-service-page .service-cta,
    .whatsapp-service-page
    .related-case-study-service-section
    .cta-box,
    .whatsapp-service-page
    .final-cta-section
    .newsletter-box,
    .whatsapp-service-page
    #whatsapp-service-faq
    .accordion-header {
        transition: none;
    }

    .whatsapp-service-page .integration-card,
    .whatsapp-service-page .whatsapp-platform-card,
    .whatsapp-service-page .service-card,
    .whatsapp-service-page .workflow-card,
    .whatsapp-service-page .service-cta,
    .whatsapp-service-page
    .related-case-study-service-section
    .cta-box,
    .whatsapp-service-page
    .final-cta-section
    .newsletter-box {
        translate: 0 0;
    }

}

.whatsapp-service-page
#whatsapp-service-faq
.accordion-heading {
    display: block;
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.4;
}

/* ========================================
   CASE STUDIES — FINAL VISUAL POLISH
======================================== */

.case-studies-page .case-study-card,
.case-studies-page .validation-step,
.case-studies-page .transparency-card,
.case-studies-page .production-adaptation-card,
.case-studies-page .case-studies-cta .cta-box,
.case-study-detail-page .case-study-notice,
.case-study-detail-page .case-study-objective-card,
.case-study-detail-page .case-study-step-header,
.case-study-detail-page .result-boundary-note,
.case-study-detail-page .production-adaptation-card,
.case-study-detail-page .faq-accordion,
.case-study-detail-page .case-study-final-cta .cta-box {
    translate: 0 0;
    transition:
        translate 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

/* Replace older transform-based card movement */

.case-studies-page .case-study-card,
.case-studies-page .validation-step,
.case-studies-page .case-study-card:hover,
.case-studies-page .validation-step:hover {
    transform: none;
}

@media (hover: hover) and (pointer: fine) {

    .case-studies-page .case-study-card:hover,
    .case-studies-page .validation-step:hover,
    .case-studies-page .transparency-card:hover,
    .case-studies-page .production-adaptation-card:hover,
    .case-studies-page .case-studies-cta .cta-box:hover,
    .case-study-detail-page .case-study-notice:hover,
    .case-study-detail-page .case-study-objective-card:hover,
    .case-study-detail-page .case-study-step-header:hover,
    .case-study-detail-page .result-boundary-note:hover,
    .case-study-detail-page .production-adaptation-card:hover,
    .case-study-detail-page .faq-accordion:hover,
    .case-study-detail-page .case-study-final-cta .cta-box:hover {
        translate: 0 -5px;
        border-color: var(--accent-blue);
        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.24),
            0 0 25px var(--blue-glow);
    }

}

@media (hover: none), (pointer: coarse) {

    .case-studies-page .case-study-card,
    .case-studies-page .validation-step,
    .case-studies-page .transparency-card,
    .case-studies-page .production-adaptation-card,
    .case-studies-page .case-studies-cta .cta-box,
    .case-study-detail-page .case-study-notice,
    .case-study-detail-page .case-study-objective-card,
    .case-study-detail-page .case-study-step-header,
    .case-study-detail-page .result-boundary-note,
    .case-study-detail-page .production-adaptation-card,
    .case-study-detail-page .faq-accordion,
    .case-study-detail-page .case-study-final-cta .cta-box {
        translate: none;
    }

}

@media (prefers-reduced-motion: reduce) {

    .case-studies-page .case-study-card,
    .case-studies-page .validation-step,
    .case-studies-page .transparency-card,
    .case-studies-page .production-adaptation-card,
    .case-studies-page .case-studies-cta .cta-box,
    .case-study-detail-page .case-study-notice,
    .case-study-detail-page .case-study-objective-card,
    .case-study-detail-page .case-study-step-header,
    .case-study-detail-page .result-boundary-note,
    .case-study-detail-page .production-adaptation-card,
    .case-study-detail-page .faq-accordion,
    .case-study-detail-page .case-study-final-cta .cta-box {
        translate: none;
        transition: none;
    }

}

.form-disclaimer a,
.form-security-note a {
    color: #7c4dff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition:
        color 0.3s ease,
        text-decoration-thickness 0.3s ease;
}

.form-disclaimer a:hover,
.form-security-note a:hover {
    color: #9b6dff;
    text-decoration-thickness: 2px;
}

.request-setup-section .form-group input:focus-visible,
.request-setup-section .form-group select:focus-visible,
.request-setup-section .form-group textarea:focus-visible {
    outline: 3px solid rgba(124, 77, 255, 0.25);
    outline-offset: 2px;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color);
}

.request-setup-section .submit-btn {
    translate: 0 0;
    transition:
        translate 0.25s ease,
        box-shadow 0.25s ease,
        opacity 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
    .request-setup-section .submit-btn:hover:not(:disabled) {
        translate: 0 -2px;
        box-shadow: 0 12px 25px rgba(124, 77, 255, 0.22);
    }
}

.request-setup-section .submit-btn:focus-visible {
    outline: 3px solid rgba(124, 77, 255, 0.35);
    outline-offset: 3px;
}

.request-setup-section .submit-btn:disabled {
    cursor: wait;
    opacity: 0.7;
}

@media (prefers-reduced-motion: reduce) {
    .request-setup-section .submit-btn {
        translate: none;
        transition: none;
    }
}

/* =========================
   TOOLS — PLATFORM COMPARISON
========================= */

.platform-comparison-section {
    padding: 100px 0;
}

.platform-comparison-section .platform-comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.platform-comparison-section .platform-comparison-card {
    padding: 34px;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    background: var(--card-color);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);

    /*
    Independent translate preserves the existing
    transform-based reveal animation.
    */

    translate: 0 0;

    transition:
        translate 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.platform-comparison-section .platform-comparison-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: rgba(124, 77, 255, 0.12);
    color: var(--primary-color);

    font-size: 1.7rem;
}

.platform-comparison-section
.platform-comparison-card h3 {
    margin-bottom: 14px;
    font-size: 1.65rem;
}

.platform-comparison-section
.platform-validation-status {
    max-width: none;
    min-height: 56px;

    margin: 0 0 26px;
    padding: 9px 12px;

    display: flex;
    align-items: center;

    border: 1px solid var(--border-color);
    border-radius: 12px;

    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.45;
    text-align: left;
}

.platform-comparison-section
.platform-validation-status.validated {
    border-color: rgba(34, 197, 94, 0.35);
    background: rgba(34, 197, 94, 0.09);
    color: #86efac;
}

.platform-comparison-section
.platform-validation-status.scope-option {
    border-color: rgba(255, 179, 71, 0.32);
    background: rgba(255, 179, 71, 0.08);
    color: #fbc47d;
}

.platform-comparison-section
.platform-comparison-details {
    margin: 0;
}

.platform-comparison-section
.platform-comparison-details > div {
    padding: 17px 0;
    border-top: 1px solid var(--border-color);
}

.platform-comparison-section
.platform-comparison-details dt {
    margin-bottom: 7px;

    color: var(--text-color);

    font-size: 0.92rem;
    font-weight: 700;
}

.platform-comparison-section
.platform-comparison-details dd {
    margin: 0;

    color: var(--text-secondary);

    font-size: 0.91rem;
    line-height: 1.65;
}

.platform-comparison-section
.platform-selection-note {
    max-width: 980px;

    margin: 34px auto 0;
    padding: 24px 28px;

    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: flex-start;

    border: 1px solid rgba(124, 77, 255, 0.28);
    border-radius: 18px;

    background: rgba(124, 77, 255, 0.07);
}

.platform-comparison-section
.platform-selection-note i {
    margin-top: 4px;

    color: var(--primary-color);
    font-size: 1.1rem;
}

.platform-comparison-section
.platform-selection-note p {
    max-width: none;
    margin: 0;

    color: var(--text-secondary);

    font-size: 0.95rem;
    line-height: 1.7;
    text-align: left;
}


/* LIGHT MODE */

body.light-mode
.platform-comparison-section
.platform-comparison-card {
    box-shadow:
        0 14px 34px rgba(15, 23, 42, 0.06);
}

body.light-mode
.platform-comparison-section
.platform-validation-status.validated {
    color: #166534;
}

body.light-mode
.platform-comparison-section
.platform-validation-status.scope-option {
    color: #9a5b08;
}


/* DESKTOP HOVER */

@media (hover: hover) and (pointer: fine) {

    .platform-comparison-section
    .platform-comparison-card:hover {
        translate: 0 -5px;

        border-color: var(--accent-blue);

        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.25),
            0 0 25px var(--blue-glow);
    }

}


/* TABLET */

@media (max-width: 1024px) {

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

    .platform-comparison-section
    .platform-validation-status {
        min-height: 0;
    }

}


/* MOBILE */

@media (max-width: 768px) {

    .platform-comparison-section {
        padding: 80px 0;
    }

    .platform-comparison-section
    .platform-comparison-card {
        padding: 27px 23px;
    }

    .platform-comparison-section
    .platform-selection-note {
        grid-template-columns: 1fr;
        padding: 22px;
    }

}


/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {

    .platform-comparison-section
    .platform-comparison-card {
        translate: 0 0;
        transition: none;
    }

}

/* ========================================
   NAVBAR — COMPACT DESKTOP CORRECTION
======================================== */

.nav-links {
    flex-wrap: nowrap;
}

.nav-links > a {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (min-width: 769px) {

    .navbar {
        padding-left: 0;
        padding-right: 0;
    }

    .nav-container {
        width: calc(100% - 24px);
        max-width: 1600px;
        gap: 12px;
    }

    .logo {
        flex: 0 0 auto;
        margin-right: 0;
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 52px;
        height: 52px;
    }

    .nav-menu {
        flex: 1 1 auto;
        min-width: 0;
    }

    .nav-links {
        justify-content: flex-end;
        gap: 12px;
    }

    .nav-links > a {
        font-size: 0.88rem;
    }

    .nav-links > a.nav-cta {
        padding: 9px 12px;
    }

    .menu-controls {
        flex: 0 0 auto;
        gap: 7px;
    }

    #theme-toggle {
        padding: 8px 10px;
    }

    .language-selector {
        gap: 3px;
        font-size: 0.88rem;
    }
}

/* ========================================
   WIDE DESKTOP — NAV CONTROLS ALIGNMENT
======================================== */

@media (min-width: 1351px) {
    .nav-container {
        justify-content: center;
    }

    .nav-menu {
        flex: 0 1 auto;
    }

    .nav-links {
        justify-content: flex-start;
    }

    .menu-controls {
        margin-left: 24px;
    }
}

/* ========================================
   SITE-WIDE FAQ VISUAL POLISH
======================================== */

.faq-section .faq-container,
.case-study-faq-section .faq-container {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}

.faq-section .faq-accordion,
.case-study-faq-section .faq-accordion {
    margin-bottom: 16px;
}

.faq-section .accordion-header,
.case-study-faq-section .accordion-header {
    border-color: var(--border-color);
    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(124, 77, 255, 0.08),
            rgba(0, 195, 255, 0.025)
        ),
        var(--card-color);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.faq-section .faq-accordion.active .accordion-header,
.case-study-faq-section .faq-accordion.active .accordion-header {
    border-color: var(--accent-blue);

    box-shadow:
        0 0 20px rgba(0, 195, 255, 0.1);
}

@media (hover: hover) and (pointer: fine) {

    .faq-section .accordion-header:hover,
    .case-study-faq-section .accordion-header:hover {
        border-color: var(--accent-blue);

        box-shadow:
            0 10px 26px rgba(0, 0, 0, 0.16),
            0 0 18px var(--blue-glow);
    }

}

@media (prefers-reduced-motion: reduce) {

    .faq-section .accordion-header,
    .case-study-faq-section .accordion-header {
        transition: none;
    }

}

/* ========================================
   SERVICE DISCLOSURE SPACING
======================================== */

/* Separate the lead-service scope note from its CTA buttons */
.lead-service-page
.lead-service-boundary + .hero-buttons {
    margin-top: 28px;
}

/* Separate platform disclosures from architecture cards */
.lead-service-page
.lead-platform-grid + .lead-platform-disclosure,

.support-service-page
.support-platform-grid + .support-platform-disclosure,

.whatsapp-service-page
.whatsapp-platform-grid + .whatsapp-platform-disclosure {
    display: block;
    margin: 38px auto 0 !important;
}

@media (max-width: 600px) {

    .lead-service-page
    .lead-service-boundary + .hero-buttons {
        margin-top: 24px;
    }

    .lead-service-page
    .lead-platform-grid + .lead-platform-disclosure,

    .support-service-page
    .support-platform-grid + .support-platform-disclosure,

    .whatsapp-service-page
    .whatsapp-platform-grid + .whatsapp-platform-disclosure {
        margin-top: 28px !important;
    }

}

/* ========================================
   REVEAL + VISUAL-POLISH COMPATIBILITY
======================================== */

.delay-1  { --reveal-delay: 0.15s; }
.delay-2  { --reveal-delay: 0.35s; }
.delay-3  { --reveal-delay: 0.55s; }
.delay-4  { --reveal-delay: 0.75s; }
.delay-5  { --reveal-delay: 0.95s; }
.delay-6  { --reveal-delay: 1.15s; }
.delay-7  { --reveal-delay: 1.35s; }
.delay-8  { --reveal-delay: 1.55s; }
.delay-9  { --reveal-delay: 1.75s; }
.delay-10 { --reveal-delay: 1.95s; }

.js .reveal {
    transition:
        opacity 0.8s ease var(--reveal-delay, 0s),
        transform 0.8s ease var(--reveal-delay, 0s),
        translate 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {

    .js .reveal,
    .js .reveal.active {
        opacity: 1;
        transform: none;
        translate: none;
        transition: none;
    }

}

.newsletter-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* =========================
   FORM HONEYPOT
========================= */

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}