/* ============================================================
   AMANIX DIGITAL - UNIFIED STYLESHEET
   Compiled from: index.html, services.html, about.html, contact.html
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
    --dark-blue: #1B2A4A;
    --dark-blue-light: #243760;
    --orange: #FF6B35;
    --orange-dark: #E55A24;
    --white: #FFFFFF;
    --grey: #F5F5F5;
    --dark-grey: #333333;
    --medium-grey: #666666;
    --light-border: #E0E0E0;
    --emerald: #00C896;
    --green: #00C896;
    --section-padding: 80px 0;
    --container-width: 1200px;

    /* Premium tokens */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-glow: radial-gradient(circle at center, rgba(255, 107, 53, 0.18) 0%, transparent 65%);
    --premium-shadow: 0 25px 60px rgba(10, 17, 31, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    --orange-glow: 0 0 30px rgba(255, 107, 53, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--dark-grey);
    line-height: 1.6;
    overflow-x: hidden;
    background: #FAFAFA;
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
}

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

/* ---------- UTILITY CLASSES ---------- */
.text-center {
    text-align: center;
}

.text-orange {
    color: var(--orange);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- BUTTONS ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-blue);
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--orange);
    color: var(--white);
    padding: 18px 32px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.btn-hero-primary .btn-arrow {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 18px 32px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--orange);
    transform: translateY(-3px);
}

/* ---------- SECTION COMPONENTS ---------- */
.section-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    color: var(--dark-blue);
    margin-bottom: 16px;
    font-weight: 800;
}

.section-subtitle {
    font-size: 18px;
    color: var(--medium-grey);
    max-width: 650px;
    margin: 0 auto 50px;
}

/* ---------- TOP BAR ---------- */
.top-bar {
    background: var(--dark-blue);
    padding: 10px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 55s linear infinite;
    will-change: transform;
}

.marquee-content {
    color: var(--white);
    font-size: 14px;
    white-space: nowrap;
    padding: 0 40px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ---------- NAVBAR ---------- */
.navbar {
    background: var(--white);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 80px;
    width: auto;
    display: block;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    margin-bottom: 16px;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: var(--dark-grey);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--orange);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 15px;
}

.nav-phone i {
    color: var(--orange);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-blue);
    border-radius: 2px;
}

/* ---------- HERO (Homepage) ---------- */
.hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #243760 50%, #1B2A4A 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-glow {
    position: absolute;
    top: 30%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: var(--orange);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.hero h1 {
    font-size: clamp(36px, 5vw, 60px);
    color: var(--white);
    margin-bottom: 28px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--orange);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-avatars {
    display: flex;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border: 3px solid var(--dark-blue);
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
}

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

.trust-text .stars {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
}

.trust-text .stars i {
    color: #FFC107;
    font-size: 14px;
}

.trust-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 0;
}

/* Hero Visual / Audit Card */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 480px;
    position: relative;
    z-index: 2;
}

.hero-audit-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 36px;
    width: 100%;
    max-width: 440px;
    min-height: 440px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.4s ease;
}

.audit-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: var(--emerald);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 200, 150, 0.2);
    animation: pulse-dot-green 2s infinite;
}

.badge-dot.scanning {
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
    animation: pulse-dot-orange 2s infinite;
}

.badge-dot.warning {
    background: #FFC107;
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.2);
    animation: pulse-dot-yellow 2s infinite;
}

.audit-card-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-audit-card h3 {
    color: var(--white);
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 12px;
    font-weight: 800;
}

.audit-card-intro {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    margin-bottom: 28px;
}

.audit-input-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.audit-input-group {
    position: relative;
    width: 100%;
}

.audit-input-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
}

.audit-input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 16px 16px 48px;
    color: var(--white);
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.audit-input-group input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
}

.btn-scan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--orange);
    color: var(--white);
    padding: 16px;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
}

.btn-scan:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.btn-scan:active {
    transform: translateY(0);
}

.audit-card-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

/* STATE 2: SCANNING STATE Styles */
.scan-progress-box {
    position: relative;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.15);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
}

.scan-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    box-shadow: 0 0 12px var(--orange);
    animation: scanSweep 2s ease-in-out infinite;
    z-index: 1;
}

.scan-target {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 8px;
}

.scan-step {
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.scan-step.active {
    opacity: 1;
}

.step-status {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-status i {
    font-size: 16px;
}

.step-status i.fa-spinner {
    color: var(--orange);
}

.step-status i.fa-check-circle {
    color: var(--emerald);
}

.step-status i.fa-exclamation-triangle {
    color: #FFC107;
}

.step-status i.text-muted {
    color: rgba(255, 255, 255, 0.2);
}

.step-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
}

.step-text strong {
    color: var(--orange);
    font-weight: 700;
}

.step-text .status-tag {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 6px;
}

.step-text .status-tag.danger {
    background: rgba(239, 68, 68, 0.15);
    color: #EF4444;
}

.step-text .status-tag.warning {
    background: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
}

.step-text .status-tag.success {
    background: rgba(0, 200, 150, 0.15);
    color: #00C896;
}

/* STATE 3: RESULTS STATE Styles */
.results-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.score-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.circular-chart {
    display: block;
    width: 90px;
    height: 90px;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 2.8;
}

.circle {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    animation: progress 1.2s ease-out forwards;
}

.circular-chart.orange .circle {
    stroke: var(--orange);
}

.percentage {
    fill: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 10px;
    text-anchor: middle;
}

.score-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.results-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.result-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
}

.result-badge.danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #EF4444;
}

.result-badge.warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: #F59E0B;
}

.result-badge.success {
    background: rgba(0, 200, 150, 0.1);
    border: 1px solid rgba(0, 200, 150, 0.2);
    color: #00C896;
}

.hero-audit-card p {
    color: rgba(255, 255, 255, 0.75);
}

.hero-audit-card p strong {
    color: var(--orange);
}

.btn-full {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 20px;
}

/* ---------- KEYFRAMES ---------- */
@keyframes scanSweep {
    0% {
        top: 0%;
    }

    50% {
        top: 100%;
    }

    100% {
        top: 0%;
    }
}

@keyframes pulse-dot-green {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 200, 150, 0.4);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(0, 200, 150, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 200, 150, 0);
    }
}

@keyframes pulse-dot-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(255, 107, 53, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

@keyframes pulse-dot-yellow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(255, 193, 7, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
    background: var(--orange);
    padding: 30px 0;
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.trust-item h3 {
    font-size: 36px;
    color: var(--white);
    font-weight: 900;
}

.trust-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
}

/* ---------- PROBLEMS SECTION ---------- */
.problems {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.problems::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.problem-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 32px;
    border: 1px solid var(--light-border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--orange);
    transition: width 0.4s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(27, 42, 74, 0.12);
    border-color: var(--orange);
}

.problem-card:hover::before {
    width: 100%;
}

.problem-icon-box {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.problem-card:hover .problem-icon-box {
    background: var(--orange);
    border-color: var(--orange);
    transform: rotate(-5deg) scale(1.05);
}

.problem-icon-box i {
    font-size: 28px;
    color: var(--orange);
    transition: color 0.4s ease;
}

.problem-card:hover .problem-icon-box i {
    color: var(--white);
}

.problem-number {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding: 4px 10px;
    background: rgba(255, 107, 53, 0.08);
    border-radius: 4px;
}

.problem-card h3 {
    font-size: 20px;
    color: var(--dark-blue);
    margin-bottom: 14px;
    font-weight: 800;
    line-height: 1.3;
}

.problem-card p {
    color: var(--medium-grey);
    font-size: 15px;
    line-height: 1.7;
}

/* ---------- SOLUTION SECTION ---------- */
.solution {
    padding: var(--section-padding);
    background: var(--dark-blue);
}

.solution .section-title {
    color: var(--white);
}

.solution .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 36px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.solution-card:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--orange);
    transform: translateY(-6px);
}

.solution-card i {
    font-size: 44px;
    color: var(--orange);
    margin-bottom: 20px;
}

.solution-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 14px;
}

.solution-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
}

/* ---------- SERVICES SECTION (Homepage) ---------- */
.services {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--grey) 0%, #FAFAFA 100%);
    position: relative;
}

.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.premium-service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--light-border);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.premium-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(27, 42, 74, 0.15);
    border-color: var(--orange);
}

.ps-card-visual {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #152039 100%);
    padding: 30px;
    height: 220px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-card-content {
    padding: 28px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ps-number {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.ps-card-content h3 {
    font-size: 22px;
    color: var(--dark-blue);
    margin-bottom: 12px;
    font-weight: 800;
}

.ps-card-content>p {
    color: var(--medium-grey);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
    flex: 1;
}

.ps-features {
    list-style: none;
    margin-bottom: 20px;
}

.ps-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: var(--dark-grey);
    font-size: 13px;
    font-weight: 600;
}

.ps-features li i {
    color: var(--emerald);
    font-size: 12px;
    width: 18px;
    height: 18px;
    background: rgba(0, 200, 150, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ps-actions {
    padding-top: 16px;
    border-top: 1px solid var(--light-border);
}

.ps-learn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- INDUSTRIES SECTION ---------- */
.industries {
    padding: var(--section-padding);
    background: var(--white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 50px;
}

.industry-card {
    background: var(--grey);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.industry-card:hover {
    background: var(--white);
    border-color: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(27, 42, 74, 0.1);
}

.industry-card i {
    font-size: 36px;
    color: var(--orange);
    margin-bottom: 12px;
}

.industry-card h4 {
    font-size: 14px;
    color: var(--dark-blue);
    font-weight: 700;
}

/* ---------- PROCESS SECTION ---------- */
.process {
    padding: var(--section-padding);
    background: var(--grey);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: var(--orange);
    opacity: 0.3;
}

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

.step-number {
    width: 80px;
    height: 80px;
    background: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 3px solid var(--orange);
    position: relative;
    z-index: 1;
}

.step-number span {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--orange);
}

.process-step h3 {
    font-size: 18px;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.process-step p {
    color: var(--medium-grey);
    font-size: 14px;
    line-height: 1.7;
}

.process-time {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 12px;
}

/* ---------- WHY US SECTION ---------- */
.why-us {
    padding: var(--section-padding);
    background: var(--dark-blue);
}

.why-us .section-title {
    color: var(--white);
}

.why-us .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

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

.why-card {
    padding: 30px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.why-card:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--orange);
}

.why-card i {
    font-size: 36px;
    color: var(--orange);
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 10px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.7;
}

/* ---------- FAQ SECTION ---------- */
.faq {
    padding: var(--section-padding);
    background: var(--grey);
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 22px 24px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark-blue);
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.05);
}

.faq-question i {
    color: var(--orange);
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    padding-bottom: 22px;
    color: var(--medium-grey);
    font-size: 15px;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ---------- SPANISH SECTION ---------- */
.spanish-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1B2A4A 0%, #243760 100%);
}

.spanish-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.spanish-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

.spanish-content h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--white);
    margin-bottom: 20px;
}

.spanish-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.spanish-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.spanish-icon-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
}

.spanish-icon-box i {
    font-size: 64px;
    color: var(--orange);
    margin-bottom: 20px;
}

.spanish-icon-box h3 {
    font-size: 26px;
    color: var(--white);
    margin-bottom: 10px;
}

.spanish-icon-box p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

/* ---------- PAGE HERO (Services, About, Contact) ---------- */
.page-hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #243760 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.12) 0%, transparent 60%);
}

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

.page-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--orange);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.page-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--white);
    margin-bottom: 20px;
}

.page-hero h1 span {
    color: var(--orange);
}

.page-hero p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 750px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 24px;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb a {
    color: var(--orange);
    font-weight: 600;
}

.breadcrumb i {
    font-size: 10px;
}

/* ---------- SERVICES PAGE ---------- */
.services-list {
    padding: var(--section-padding);
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse>* {
    direction: ltr;
}

.service-content {
    padding: 10px 0;
}

.service-number {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.service-content h2 {
    font-size: clamp(28px, 3.5vw, 38px);
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 800;
}

.service-content>p {
    font-size: 16px;
    color: var(--medium-grey);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark-grey);
    font-size: 15px;
    font-weight: 600;
}

.service-features li i {
    color: var(--emerald);
    font-size: 16px;
    background: rgba(0, 200, 150, 0.1);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--light-border);
    box-shadow: 0 10px 30px rgba(27, 42, 74, 0.03);
    margin-bottom: 35px;
}

.service-stat {
    text-align: center;
}

.service-stat strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 6px;
}

.service-stat span {
    color: var(--medium-grey);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.db-visual-wrapper {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #152039 100%);
    border-radius: 24px;
    padding: 30px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    box-shadow: 0 30px 60px rgba(27, 42, 74, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---------- CSS SERVICE MOCKUPS ---------- */
.mockup-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* --- SEO Mockup: Google Search Result --- */
.seo-mockup {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    width: 320px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    animation: slideUpMockup 0.8s ease forwards;
}

.seo-mockup .mockup-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--medium-grey);
    margin-bottom: 12px;
}

.seo-search-bar {
    background: #f1f3f4;
    border-radius: 24px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.seo-search-bar i {
    color: #9aa0a6;
    font-size: 14px;
}

.seo-search-bar span {
    font-size: 13px;
    color: var(--dark-grey);
}

.seo-result {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
    border-left: 4px solid var(--emerald);
    margin-bottom: 10px;
}

.seo-result-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--emerald);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.seo-result h4 {
    font-size: 15px;
    color: var(--dark-blue);
    margin-bottom: 6px;
}

.seo-result-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--medium-grey);
}

.seo-result-meta .stars {
    color: #FFC107;
}

.seo-result-2 {
    opacity: 0.4;
    border-left-color: var(--light-border);
}

/* --- Website Mockup: Browser Window --- */
.web-mockup {
    background: var(--white);
    border-radius: 16px;
    width: 320px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    animation: slideUpMockup 0.8s ease 0.1s forwards;
    opacity: 0;
}

.web-browser-bar {
    background: #e8eaed;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.web-browser-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

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

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

.web-browser-bar span:nth-child(3) {
    background: #28ca42;
}

.web-browser-url {
    flex: 1;
    background: var(--white);
    border-radius: 4px;
    padding: 4px 12px;
    font-size: 11px;
    color: var(--medium-grey);
    margin-left: 8px;
}

.web-page {
    padding: 20px;
}

.web-hero-mini {
    background: linear-gradient(135deg, var(--dark-blue), var(--dark-blue-light));
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 12px;
}

.web-hero-mini h5 {
    color: var(--white);
    font-size: 13px;
    margin-bottom: 8px;
}

.web-hero-mini .web-cta {
    background: var(--orange);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    display: inline-block;
}

.web-features-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.web-feature-box {
    background: var(--grey);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}

.web-feature-box i {
    color: var(--orange);
    font-size: 16px;
    margin-bottom: 6px;
}

.web-feature-box span {
    font-size: 9px;
    color: var(--dark-grey);
    font-weight: 600;
}

/* --- Google Ads Mockup: Dashboard --- */
.ads-mockup {
    background: var(--white);
    border-radius: 16px;
    width: 320px;
    padding: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    animation: slideUpMockup 0.8s ease 0.1s forwards;
    opacity: 0;
}

.ads-mockup-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.ads-mockup-header i {
    color: #4285f4;
    font-size: 24px;
}

.ads-mockup-header h5 {
    font-size: 14px;
    color: var(--dark-blue);
}

.ads-metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.ads-metric {
    background: var(--grey);
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
}

.ads-metric strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: var(--dark-blue);
    margin-bottom: 4px;
}

.ads-metric span {
    font-size: 10px;
    color: var(--medium-grey);
    font-weight: 600;
}

.ads-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    padding-top: 10px;
}

.ads-bar {
    flex: 1;
    background: linear-gradient(to top, var(--orange), #FFB347);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    animation: growBar 1.2s ease forwards;
    transform-origin: bottom;
    transform: scaleY(0);
}

.ads-bar:nth-child(1) {
    height: 45%;
    animation-delay: 0.2s;
}

.ads-bar:nth-child(2) {
    height: 70%;
    animation-delay: 0.35s;
}

.ads-bar:nth-child(3) {
    height: 55%;
    animation-delay: 0.5s;
}

.ads-bar:nth-child(4) {
    height: 85%;
    animation-delay: 0.65s;
}

.ads-bar:nth-child(5) {
    height: 100%;
    animation-delay: 0.8s;
}

.ads-bar:nth-child(6) {
    height: 75%;
    animation-delay: 0.95s;
}

/* --- Lead Gen Mockup: Funnel --- */
.leads-mockup {
    width: 320px;
    animation: slideUpMockup 0.8s ease 0.1s forwards;
    opacity: 0;
}

.funnel-stage {
    background: var(--white);
    border-radius: 12px;
    padding: 18px 24px;
    margin-bottom: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    transition: transform 0.3s ease;
}

.funnel-stage:hover {
    transform: translateX(8px);
}

.funnel-stage::after {
    content: '\f063';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--orange);
    font-size: 14px;
    opacity: 0.6;
}

.funnel-stage:last-child::after {
    display: none;
}

.funnel-stage:nth-child(1) {
    width: 100%;
}

.funnel-stage:nth-child(2) {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.funnel-stage:nth-child(3) {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.funnel-stage-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.funnel-stage-info i {
    font-size: 20px;
    color: var(--orange);
}

.funnel-stage-info span {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-blue);
}

.funnel-stage-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--orange);
}

/* --- Reputation Mockup: Reviews --- */
.rep-mockup {
    background: var(--white);
    border-radius: 16px;
    width: 320px;
    padding: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    animation: slideUpMockup 0.8s ease 0.1s forwards;
    opacity: 0;
}

.rep-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.rep-header i {
    font-size: 22px;
    color: #4285f4;
}

.rep-header h5 {
    font-size: 14px;
    color: var(--dark-blue);
}

.rep-big-rating {
    text-align: center;
    margin-bottom: 20px;
}

.rep-big-rating strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    color: var(--dark-blue);
    line-height: 1;
}

.rep-big-rating .stars {
    color: #FFC107;
    font-size: 18px;
    margin: 6px 0;
}

.rep-big-rating span {
    font-size: 12px;
    color: var(--medium-grey);
}

.rep-review-card {
    background: var(--grey);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 10px;
}

.rep-review-card .stars {
    color: #FFC107;
    font-size: 11px;
    margin-bottom: 6px;
}

.rep-review-card p {
    font-size: 12px;
    color: var(--dark-grey);
    line-height: 1.5;
    margin: 0;
}

.rep-review-card .reviewer {
    font-size: 11px;
    color: var(--medium-grey);
    margin-top: 6px;
    font-weight: 600;
}

/* --- Social Media Mockup: Network --- */
.social-mockup {
    width: 320px;
    height: 320px;
    animation: slideUpMockup 0.8s ease 0.1s forwards;
    opacity: 0;
}

.social-network {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 10px;
}

/* Orbit rings */
.social-network::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    height: 75%;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    z-index: 0;
    animation: orbitSpin 20s linear infinite;
}

.social-network::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55%;
    height: 55%;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 0;
    animation: orbitSpin 15s linear infinite reverse;
}

@keyframes orbitSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.social-node {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: networkFloat 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-node:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

/* Brand colors */
.node-google {
    background: #fff;
    color: #4285F4;
    animation-delay: 0s;
}

.node-fb {
    background: #1877F2;
    animation-delay: 0.3s;
}

.node-ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    animation-delay: 0.6s;
}

.node-linkedin {
    background: #0A66C2;
    animation-delay: 0.9s;
}

.node-pin {
    background: #BD081C;
    animation-delay: 1.2s;
}

.node-yt {
    background: #FF0000;
    animation-delay: 1.5s;
}

.node-tiktok {
    background: #000;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation-delay: 1.8s;
}

.node-x {
    background: #fff;
    color: #000;
    border: 2px solid rgba(0, 0, 0, 0.1);
    animation-delay: 2.1s;
}

/* Center hub */
.network-center {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 50%;
    color: white;
    font-size: 28px;
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.4);
    position: relative;
    z-index: 3;
    animation: pulseHub 2s ease-in-out infinite;
}

@keyframes pulseHub {

    0%,
    100% {
        box-shadow: 0 0 40px rgba(255, 107, 53, 0.4);
    }

    50% {
        box-shadow: 0 0 60px rgba(255, 107, 53, 0.6);
    }
}

/* Connecting dots */
.network-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    z-index: 1;
    animation: dotPulse 2s ease-in-out infinite;
}

.dot-1 {
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.dot-2 {
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

.dot-3 {
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.dot-4 {
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

@keyframes dotPulse {

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

    50% {
        opacity: 0.8;
        transform: scale(1.5);
    }
}

@keyframes networkFloat {

    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: -6px;
    }
}

/* Mockup animations */
@keyframes slideUpMockup {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes growBar {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

/* Service block entrance animation */
.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.service-block.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-block.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-block.reverse.fade-in {
    transform: translateY(40px);
}

.service-block.reverse.fade-in.visible {
    transform: translateY(0);
}

/* ---------- ABOUT PAGE ---------- */
.story-section {
    padding: var(--section-padding);
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.story-content h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.story-content h2 span {
    color: var(--orange);
}

.story-content p {
    font-size: 16px;
    color: var(--medium-grey);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--grey);
    border-radius: 12px;
    border: 1px solid var(--light-border);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: translateX(6px);
}

.highlight-item:hover p {
    color: var(--white);
}

.highlight-item i {
    color: var(--orange);
    font-size: 18px;
}

.highlight-item p {
    font-size: 14px;
    color: var(--dark-grey);
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
}

.about-visual {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a2744 0%, var(--dark-blue) 100%);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.15);
}

.visual-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 107, 53, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 65%);
    border-radius: 50%;
}

.visual-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(27, 42, 74, 0.1);
    border: 1px solid var(--light-border);
    position: relative;
    z-index: 2;
}

.vcard-main {
    width: 260px;
    padding: 28px;
}

.vcard-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.vcard-dot {
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.vcard-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-grey);
    letter-spacing: 0.3px;
}

.vcard-metric {
    margin-bottom: 16px;
}

.vcard-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--dark-blue);
    line-height: 1;
    margin-bottom: 6px;
}

.vcard-trend {
    font-size: 13px;
    color: var(--green);
    font-weight: 600;
}

.vcard-trend i {
    margin-right: 4px;
}

.vcard-bar {
    height: 8px;
    background: var(--grey);
    border-radius: 4px;
    overflow: hidden;
}

.vcard-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--orange-dark));
    border-radius: 4px;
    animation: growBarWidth 2s ease-out forwards;
}

@keyframes growBarWidth {
    from {
        width: 0 !important;
    }
}

.vcard-float {
    position: absolute;
    z-index: 3;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: floatY 4s ease-in-out infinite;
}

.vcard-float i {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 18px;
    flex-shrink: 0;
}

.vfl-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1;
}

.vfl-label {
    font-size: 12px;
    color: var(--dark-grey);
    font-weight: 500;
}

.vcard-float-1 {
    top: 30px;
    right: 10px;
    animation-delay: 0s;
}

.vcard-float-2 {
    bottom: 60px;
    left: 0;
    animation-delay: 1.5s;
}

.visual-pin {
    position: absolute;
    bottom: 20px;
    right: 30px;
    z-index: 3;
    background: var(--dark-blue);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(27, 42, 74, 0.2);
}

.visual-pin i {
    color: var(--orange);
    font-size: 14px;
}

.visual-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    border: 1px dashed rgba(255, 107, 53, 0.15);
    border-radius: 50%;
    z-index: 1;
    animation: spinSlow 30s linear infinite;
}

@keyframes spinSlow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes floatY {

    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: -8px;
    }
}

/* Mission Section */
.mission-section {
    padding: var(--section-padding);
    background: var(--grey);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.mission-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--light-border);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(27, 42, 74, 0.12);
    border-color: var(--orange);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.mission-icon i {
    color: var(--white);
    font-size: 36px;
}

.mission-card h3 {
    color: var(--dark-blue);
    font-size: 24px;
    margin-bottom: 14px;
}

.mission-card p {
    color: var(--medium-grey);
    font-size: 15px;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-6px);
}

.stat-icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon-circle i {
    color: var(--white);
    font-size: 32px;
}

.stat-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    color: var(--white);
    font-weight: 900;
    line-height: 1;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-weight: 600;
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
        max-width: 700px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Values Section */
.values-section {
    padding: var(--section-padding);
    background: var(--white);
}

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

.value-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid var(--light-border);
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(27, 42, 74, 0.12);
    border-color: var(--orange);
}

.value-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.value-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: rgba(255, 107, 53, 0.2);
    line-height: 1;
}

.value-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon-box i {
    color: var(--orange);
    font-size: 22px;
}

.value-card h3 {
    font-size: 22px;
    color: var(--dark-blue);
    margin-bottom: 14px;
}

.value-card p {
    color: var(--medium-grey);
    font-size: 15px;
    line-height: 1.7;
}

/* Process Section */
.process-section {
    padding: var(--section-padding);
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: stretch;
    margin-top: 50px;
}

.process-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid var(--light-border);
    text-align: center;
    transition: all 0.4s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(27, 42, 74, 0.1);
    border-color: var(--orange);
}

.process-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.process-card:hover .process-num {
    opacity: 1;
}

.process-card h3 {
    font-size: 20px;
    color: var(--dark-blue);
    margin-bottom: 14px;
}

.process-card p {
    font-size: 14px;
    color: var(--medium-grey);
    line-height: 1.7;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 22px;
    opacity: 0.5;
}

/* ---------- CONTACT PAGE ---------- */
.contact-section {
    padding: var(--section-padding);
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form-box {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(27, 42, 74, 0.08);
    border: 1px solid var(--light-border);
    position: relative;
    overflow: hidden;
}

.contact-form-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-dark));
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 200, 150, 0.1);
    color: var(--emerald);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.contact-form-box h2 {
    font-size: 30px;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.contact-form-box>p {
    font-size: 15px;
    color: var(--medium-grey);
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--orange);
    font-size: 13px;
}

.form-group label span {
    color: var(--orange);
}

.form-control {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid var(--light-border);
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: var(--dark-grey);
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    font-family: 'Manrope', sans-serif;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 10px;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* Contact Info Side */
.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--light-border);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateX(8px);
    border-color: var(--orange);
    box-shadow: 0 15px 40px rgba(27, 42, 74, 0.08);
}

.info-card-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card-icon i {
    color: var(--white);
    font-size: 22px;
}

.info-card-text h4 {
    font-size: 16px;
    color: var(--dark-blue);
    margin-bottom: 6px;
}

.info-card-text a,
.info-card-text p {
    font-size: 16px;
    color: var(--dark-grey);
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
}

.info-card-text a:hover {
    color: var(--orange);
}

.info-meta {
    font-size: 13px !important;
    color: var(--medium-grey) !important;
    font-weight: 400 !important;
}

.hours-box {
    background: linear-gradient(135deg, var(--dark-blue), #243760);
    border-radius: 16px;
    padding: 28px;
}

.hours-box h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-box h4 i {
    color: var(--orange);
}

.hours-item {
    display: flex;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hours-item:last-of-type {
    border-bottom: none;
}

.hours-item span:first-child {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    width: 150px;
    flex-shrink: 0;
}

.hours-item span:last-child {
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(28px, 4vw, 46px);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--orange);
    padding: 20px 40px;
    font-size: 17px;
}

.cta-section .btn-primary:hover {
    background: var(--dark-blue);
    color: var(--white);
}

/* ---------- FOOTER ---------- */
footer {
    background: #1B2A4A;
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.8;
    margin: 20px 0;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--orange);
}

.footer-heading {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item i {
    color: var(--orange);
    font-size: 16px;
    margin-top: 2px;
}

.footer-contact-item p,
.footer-contact-item a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
}

/* ---------- MOBILE CALL BUTTON ---------- */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--orange);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.5);
    animation: pulseBtn 2s infinite;
}

.mobile-call-btn i {
    color: var(--white);
    font-size: 24px;
}

/* ---------- CHATBOT STYLES ---------- */
#amanixChatbot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    font-family: 'Manrope', sans-serif;
}

.chatbot-trigger {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF6B35, #E55A24);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.chatbot-trigger:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.7);
}

.chatbot-icon-wrapper {
    position: relative;
    z-index: 2;
}

.chatbot-icon {
    color: white;
    font-size: 28px;
}

.chatbot-notification {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #00C896;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid white;
    animation: bounce 1s infinite;
}

.chatbot-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #FF6B35;
    opacity: 0.6;
    animation: pulse-ring 2s infinite;
}

#amanixChatbot.active .chatbot-trigger {
    display: none;
}

.chatbot-window {
    display: none;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 380px;
    height: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    flex-direction: column;
    animation: slideUp 0.3s ease;
}

#amanixChatbot.active .chatbot-window {
    display: flex;
}

.chatbot-header {
    background: linear-gradient(135deg, #1B2A4A, #243760);
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #FF6B35, #E55A24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.chatbot-header-info h4 {
    color: white;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.chatbot-status {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.status-dot-bot {
    width: 8px;
    height: 8px;
    background: #00C896;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(0, 200, 150, 0.3);
    animation: pulse-dot-bot 2s infinite;
}

.chatbot-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #F8FAFC;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

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

.chat-message {
    display: flex;
    gap: 10px;
    animation: messageSlide 0.3s ease;
}

.message-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #FF6B35, #E55A24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}

.message-content {
    background: white;
    padding: 14px 16px;
    border-radius: 12px;
    border-top-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    max-width: 80%;
}

.message-content p {
    margin: 0 0 8px 0;
    color: #1B2A4A;
    font-size: 14px;
    line-height: 1.5;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-avatar {
    background: linear-gradient(135deg, #243760, #1B2A4A);
}

.user-message .message-content {
    background: #1B2A4A;
    color: white;
    border-top-left-radius: 12px;
    border-top-right-radius: 4px;
}

.user-message .message-content p {
    color: white;
}

.quick-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.lang-btn,
.quick-btn {
    background: white;
    border: 2px solid #FF6B35;
    color: #FF6B35;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
}

.lang-btn:hover,
.quick-btn:hover {
    background: #FF6B35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.service-btn {
    background: #1B2A4A;
    color: white;
    border-color: #1B2A4A;
}

.service-btn:hover {
    background: #FF6B35;
    border-color: #FF6B35;
}

.chatbot-form {
    padding: 20px;
    background: white;
    border-top: 1px solid #E2E8F0;
}

.chatbot-form h4 {
    color: #1B2A4A;
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 800;
}

.chatbot-form p {
    color: #666;
    font-size: 13px;
    margin-bottom: 16px;
}

.chatbot-form input,
.chatbot-form select,
.chatbot-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    margin-bottom: 10px;
    outline: none;
    transition: border-color 0.3s;
}

.chatbot-form input:focus,
.chatbot-form select:focus,
.chatbot-form textarea:focus {
    border-color: #FF6B35;
}

.form-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #FF6B35, #E55A24);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.chatbot-footer {
    padding: 12px 20px;
    background: white;
    border-top: 1px solid #E2E8F0;
    text-align: center;
}

.chatbot-footer p {
    color: #999;
    font-size: 11px;
    margin: 0;
}

.chatbot-footer strong {
    color: #FF6B35;
}

/* ---------- CHATBOT BUTTON FIXES ---------- */
.service-btn,
button.service-btn,
.quick-buttons .service-btn {
    background: white !important;
    color: #FF6B35 !important;
    border: 2px solid #FF6B35 !important;
    border-radius: 25px !important;
    padding: 10px 16px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: 'Manrope', sans-serif !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    white-space: nowrap !important;
}

.service-btn:hover,
button.service-btn:hover,
.quick-buttons .service-btn:hover {
    background: #FF6B35 !important;
    color: white !important;
    border-color: #FF6B35 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3) !important;
}

.user-message .message-content {
    background: linear-gradient(135deg, #FF6B35, #E55A24) !important;
    color: white !important;
    border-radius: 25px !important;
    padding: 12px 20px !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
}

.user-message .message-content p {
    color: white !important;
}

.user-message .message-avatar {
    background: linear-gradient(135deg, #FF6B35, #E55A24) !important;
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 107, 53, 0);
    }
}

@keyframes fillBar {
    from {
        width: 0% !important;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulseBtn {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 53, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes pulse-dot-bot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 200, 150, 0.6);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(0, 200, 150, 0);
    }
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* ============================================================
   MEDIA QUERIES
   ============================================================ */

@media (max-width: 1024px) {

    /* Homepage */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        height: 450px;
    }

    .spanish-content {
        grid-template-columns: 1fr;
    }

    .hero-buttons,
    .spanish-buttons {
        justify-content: center;
    }

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

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

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

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

    .process-arrow {
        transform: rotate(90deg);
        padding: 6px 0;
    }

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

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

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

    /* Services Page */
    .service-block,
    .service-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 40px;
    }

    .db-visual-wrapper {
        height: 400px;
    }

    /* About Page */
    .story-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 380px;
        margin-top: 20px;
    }

    .vcard-main {
        width: 220px;
        padding: 22px;
    }

    .vcard-num {
        font-size: 34px;
    }

    .vcard-float {
        padding: 12px 16px;
    }

    .vcard-float-1 {
        top: 20px;
        right: 0;
    }

    .vcard-float-2 {
        bottom: 40px;
        left: -10px;
    }

    .visual-pin {
        bottom: 10px;
        right: 10px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-arrow {
        transform: rotate(90deg);
        padding: 10px 0;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        gap: 30px;
    }

    .stat-item h3 {
        font-size: 42px;
    }

    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    /* Navbar */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .nav-phone {
        display: none;
    }

    .logo-img {
        height: 55px;
    }

    .footer-logo-img {
        height: 60px;
    }

    /* Homepage */
    .hero-main-card {
        width: 90%;
        padding: 24px;
    }

    .stat-1,
    .stat-2 {
        display: none;
    }

    .hero-visual {
        height: 380px;
    }

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

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .problems-grid,
    .solution-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

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

    .ps-card-visual {
        height: 200px;
    }

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

    .process-grid {
        grid-template-columns: 1fr;
    }

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

    .mobile-call-btn {
        display: none !important;
    }

    /* Services Page */
    .service-stats {
        grid-template-columns: 1fr;
    }

    /* About Page */
    .mission-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .story-highlights {
        grid-template-columns: 1fr;
    }

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

    .vcard-main {
        width: 200px;
        padding: 18px;
    }

    .vcard-num {
        font-size: 28px;
    }

    .vcard-float {
        padding: 10px 14px;
        gap: 10px;
    }

    .vcard-float i {
        width: 32px;
        height: 32px;
        font-size: 14px;
        border-radius: 8px;
    }

    .vfl-num {
        font-size: 18px;
    }

    .visual-pin {
        font-size: 12px;
        padding: 8px 14px;
    }

    .stats-grid {
        gap: 20px;
    }

    .stat-item h3 {
        font-size: 36px;
    }

    .stat-icon-circle {
        width: 64px;
        height: 64px;
    }

    .stat-icon-circle i {
        font-size: 26px;
    }

    /* Contact Page */
    .contact-form-box {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Chatbot */
    #amanixChatbot {
        bottom: 20px;
        right: 20px;
    }

    .chatbot-trigger {
        width: 60px;
        height: 60px;
    }

    .chatbot-icon {
        font-size: 24px;
    }

    .chatbot-window {
        position: fixed;
        width: calc(100vw - 30px);
        height: calc(100vh - 30px);
        right: 15px;
        bottom: 15px;
        max-width: 380px;
        max-height: 600px;
    }
}

/* ---------- CURSOR POINTER & FOCUS STATES ---------- */
.problem-card,
.solution-card,
.industry-card,
.value-card,
.mission-card,
.premium-service-card,
.faq-question,
.info-card,
.highlight-item,
.stat-item,
.step-number,
.footer-links a,
.social-links a {
    cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
    border-radius: 4px;
}

.nav-menu a:focus-visible,
.footer-links a:focus-visible {
    outline-offset: 4px;
    border-radius: 2px;
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .marquee-track {
        animation: none !important;
    }
}

/* ---------- FAQ SECTION ---------- */
.faq-section {
    padding: var(--section-padding);
    background: var(--grey);
}

.faq-grid {
    max-width: 900px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    padding: 28px 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3 i {
    color: var(--orange);
    font-size: 20px;
}

.faq-item p {
    color: var(--medium-grey);
    line-height: 1.7;
    font-size: 15px;
}

/* ---------- TEAM SECTION ---------- */
.team-section {
    padding: var(--section-padding);
    background: var(--white);
}

.team-grid {
    max-width: 700px;
    margin: 50px auto 0;
}

.team-card {
    background: var(--grey);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.team-avatar i {
    font-size: 40px;
    color: var(--white);
}

.team-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 4px;
}

.team-role {
    color: var(--orange);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.team-card>p:last-of-type {
    color: var(--medium-grey);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 24px;
}

.team-credentials {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.team-credentials span {
    font-size: 14px;
    color: var(--medium-grey);
    display: flex;
    align-items: center;
    gap: 6px;
}

.team-credentials i {
    color: var(--orange);
}

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

.team-values h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 24px;
}

.team-values p {
    color: var(--medium-grey);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 16px;
}

/* ---------- FORM CONSENT ---------- */
.form-consent {
    background: var(--grey);
    border-radius: 8px;
    padding: 16px 20px;
    margin: 8px 0 4px;
}

.form-consent p {
    font-size: 13px;
    color: var(--medium-grey);
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

.form-consent i {
    color: var(--emerald);
    margin-right: 6px;
    font-style: normal;
}

.form-consent a {
    color: var(--orange);
    text-decoration: underline;
}

.form-consent a:hover {
    color: var(--orange-dark);
}

.form-consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 0;
    margin-bottom: 12px;
    cursor: pointer;
}

.form-consent-checkbox input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--orange);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.form-consent-checkbox span {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: var(--medium-grey);
    line-height: 1.5;
    font-style: italic;
    text-align: justify;
}

.form-consent-checkbox span strong {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
}

.form-privacy-note {
    font-size: 13px;
    color: var(--medium-grey);
    line-height: 1.5;
    margin: 12px 0 20px;
    font-style: italic;
    text-align: center;
}

.form-privacy-note i {
    color: var(--emerald);
    margin-right: 6px;
    font-style: normal;
}

.form-privacy-note a {
    color: var(--orange);
    text-decoration: underline;
}

.form-privacy-note a:hover {
    color: var(--orange-dark);
}

/* ============================================================
   PREMIUM PLAYCARD, BENTO & ACCORDION CUSTOM RULES
   ============================================================ */

/* Ambient float animations for page hero background glows */
.page-hero-glow-1 {
    position: absolute;
    top: -20%;
    left: 10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: ambientFloatHero 10s ease-in-out infinite alternate;
    z-index: 1;
}

.page-hero-glow-2 {
    position: absolute;
    bottom: -10%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 200, 150, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: ambientFloatHero 14s ease-in-out infinite alternate-reverse;
    z-index: 1;
}

@keyframes ambientFloatHero {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
    }

    100% {
        transform: translateY(30px) scale(1.08) rotate(15deg);
    }
}

/* Bento grid properties for Core Values */
.values-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.value-card-bento {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 32px;
    border: 1px solid var(--light-border);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.value-card-bento::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--orange), var(--orange-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card-bento:hover::before {
    opacity: 1;
}

.value-card-bento:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 65px rgba(27, 42, 74, 0.1);
    border-color: rgba(255, 107, 53, 0.25);
}

.value-card-bento.bento-large {
    grid-column: span 2;
    background: linear-gradient(135deg, #1b2a4a 0%, #15223e 100%);
    border-color: rgba(255, 255, 255, 0.08);
}

.value-card-bento.bento-large h3 {
    color: var(--white);
}

.value-card-bento.bento-large p {
    color: rgba(255, 255, 255, 0.7);
}

.value-card-bento.bento-accent {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a24 100%);
    border-color: transparent;
}

.value-card-bento.bento-accent h3 {
    color: var(--white);
}

.value-card-bento.bento-accent p {
    color: rgba(255, 255, 255, 0.95);
}

.value-card-bento.bento-accent .value-icon-box {
    background: rgba(255, 255, 255, 0.15);
}

.value-card-bento.bento-accent .value-icon-box i {
    color: var(--white);
}

.value-card-bento.bento-accent .value-number {
    color: rgba(255, 255, 255, 0.25);
}

.value-card-bento.bento-full {
    grid-column: span 3;
    background: linear-gradient(135deg, #1b2a4a 0%, #15223e 100%);
    border-color: rgba(255, 255, 255, 0.08);
}

.value-card-bento.bento-full h3 {
    color: var(--white);
}

.value-card-bento.bento-full p {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991px) {
    .values-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-card-bento.bento-large {
        grid-column: span 2;
    }

    .value-card-bento.bento-full {
        grid-column: span 2;
    }
}

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

    .value-card-bento.bento-large {
        grid-column: span 1;
    }

    .value-card-bento.bento-full {
        grid-column: span 1;
    }
}

.about-visual,
.db-visual-wrapper {
    position: relative;
    background: linear-gradient(135deg, #0f182c 0%, #17243c 100%);
    overflow: hidden;
}

/* SEO simulation typing */
.seo-mockup .seo-search-bar span {
    display: inline-block;
    overflow: hidden;
    border-right: 2px solid var(--orange);
    white-space: nowrap;
    width: 0;
}

.animate-playcard .seo-mockup .seo-search-bar span {
    animation: typingSearch 3.5s steps(25) forwards, blinkCursor 0.75s step-end infinite;
}

@keyframes typingSearch {
    0% {
        width: 0;
    }

    30% {
        width: 0;
    }

    80% {
        width: 100%;
    }

    100% {
        width: 100%;
        border-color: transparent;
    }
}

@keyframes blinkCursor {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--orange);
    }
}

.seo-result-our-business {
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-playcard .seo-result-our-business {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 2.8s;
    box-shadow: 0 0 25px rgba(0, 200, 150, 0.25);
    border-color: var(--emerald);
}

/* Browser page auto scroll */
.web-mockup .web-page {
    height: 180px;
    overflow-y: hidden;
    position: relative;
}

.web-mockup .web-page-scrollable {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    padding: 0px;
}

.animate-playcard .web-mockup .web-page-scrollable {
    animation: pageScroll 10s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}

@keyframes pageScroll {

    0%,
    20% {
        transform: translateY(0);
    }

    80%,
    100% {
        transform: translateY(-40%);
    }
}

/* Google Ads pulsing dot & dynamic bar growing */
.animate-playcard .ads-bar {
    transform: scaleY(1);
}

.ads-metric {
    position: relative;
    overflow: hidden;
}

.ads-metric::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-20deg);
}

.animate-playcard .ads-metric::after {
    animation: shineMetric 3s infinite;
}

@keyframes shineMetric {
    0% {
        left: -100%;
    }

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

/* Lead flow particles */
.leads-mockup {
    position: relative;
}

.leads-mockup .flow-particle {
    position: absolute;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--orange);
    transform: translateX(-50%);
    opacity: 0;
}

.animate-playcard .leads-mockup .flow-particle {
    animation: leadFlowParticles 3s linear infinite;
}

.animate-playcard .leads-mockup .flow-particle:nth-child(2) {
    animation-delay: 1.5s;
}

@keyframes leadFlowParticles {
    0% {
        top: 10%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 90%;
        opacity: 0;
    }
}

/* Reviews star glowing sequential delays */
.rep-mockup .stars i {
    color: rgba(255, 255, 255, 0.15);
    transition: color 0.4s ease;
}

.animate-playcard .rep-mockup .stars i {
    color: #FFC107;
}

.animate-playcard .rep-mockup .stars i:nth-child(1) {
    transition-delay: 0.1s;
}

.animate-playcard .rep-mockup .stars i:nth-child(2) {
    transition-delay: 0.25s;
}

.animate-playcard .rep-mockup .stars i:nth-child(3) {
    transition-delay: 0.4s;
}

.animate-playcard .rep-mockup .stars i:nth-child(4) {
    transition-delay: 0.55s;
}

.animate-playcard .rep-mockup .stars i:nth-child(5) {
    transition-delay: 0.7s;
}

.rep-review-card {
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-playcard .rep-review-card {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 1.0s;
}

/* About Dashboard bar slide in on view */
.animate-playcard .vcard-bar-fill {
    width: 78% !important;
}

/* Glassmorphism Panel styles for playcards */
.glass-mockup-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.glass-mockup-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.15);
}

/* Accordion FAQ component styles */
.accordion-faq-container {
    max-width: 850px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-faq-item {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--light-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-faq-item:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 25px rgba(27, 42, 74, 0.06);
}

.accordion-faq-item.active {
    border-color: var(--orange);
    box-shadow: 0 15px 35px rgba(27, 42, 74, 0.08);
}

.accordion-faq-header {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    background: transparent;
    transition: background 0.3s;
}

.accordion-faq-header h3 {
    font-size: 17px;
    color: var(--dark-blue);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.accordion-faq-header h3 i {
    color: var(--orange);
    font-size: 18px;
}

.accordion-faq-icon {
    width: 32px;
    height: 32px;
    background: var(--grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.accordion-faq-item.active .accordion-faq-icon {
    background: var(--orange);
    color: var(--white);
    transform: rotate(180deg);
}

.accordion-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    opacity: 0;
}

.accordion-faq-item.active .accordion-faq-content {
    opacity: 1;
}

.accordion-faq-content-inner {
    padding: 0 30px 24px 62px;
}

.accordion-faq-content p {
    color: var(--medium-grey);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Glassmorphism text contrast and layout tuning overrides */
.glass-mockup-card .vcard-label {
    color: rgba(255, 255, 255, 0.75) !important;
}

.glass-mockup-card .vcard-num {
    background: linear-gradient(135deg, #ffffff 40%, rgba(255, 255, 255, 0.7) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: 0 0 25px rgba(255, 107, 53, 0.2);
}

.glass-mockup-card .vcard-trend {
    color: rgba(255, 255, 255, 0.6) !important;
}

.glass-mockup-card .vfl-num {
    background: linear-gradient(135deg, #ffffff 60%, rgba(255, 255, 255, 0.8) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.glass-mockup-card .vfl-label {
    color: rgba(255, 255, 255, 0.65) !important;
}

.glass-mockup-card i.fas.fa-phone-volume,
.glass-mockup-card i.fas.fa-star {
    color: var(--orange) !important;
}

.visual-pin span {
    color: var(--white) !important;
}

/* Services page glassmorphism panel inner-elements contrast overrides */
.glass-mockup-card.funnel-stage .funnel-stage-info span {
    color: var(--white) !important;
}

.glass-mockup-card.ads-mockup {
    color: var(--white) !important;
}

.glass-mockup-card.ads-mockup h5 {
    color: var(--white) !important;
}

.glass-mockup-card.ads-mockup .ads-metric {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.glass-mockup-card.ads-mockup .ads-metric strong {
    color: var(--white) !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}

.glass-mockup-card.ads-mockup .ads-metric span {
    color: rgba(255, 255, 255, 0.6) !important;
}

.glass-mockup-card.rep-mockup h5 {
    color: var(--white) !important;
}

.glass-mockup-card.rep-mockup .rep-big-rating strong {
    color: var(--white) !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}

.glass-mockup-card.rep-mockup .rep-big-rating span {
    color: rgba(255, 255, 255, 0.6) !important;
}

.glass-mockup-card.rep-mockup .rep-review-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.glass-mockup-card.rep-mockup .rep-review-card p {
    color: var(--white) !important;
}

.glass-mockup-card.rep-mockup .rep-review-card .reviewer {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Glassmorphism detailing overrides */
.glass-mockup-card .vcard-bar {
    background: rgba(255, 255, 255, 0.08) !important;
}

.glass-mockup-card .vcard-bar-fill {
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c5a 100%) !important;
    box-shadow: 0 0 12px rgba(255, 107, 53, 0.6) !important;
}

.glass-mockup-card .vcard-trend {
    color: var(--green) !important;
    text-shadow: 0 0 10px rgba(0, 200, 150, 0.3) !important;
}

.about-visual .visual-pin {
    background: rgba(27, 42, 74, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
}