/* ════════════════════════════════════════════════════
   SecureWP — Global Stylesheet
   ════════════════════════════════════════════════════ */

:root {
    --teal-dark: #1a8a8a;
    --teal: #2bb5b2;
    --teal-light: #3fd4d0;
    --teal-pale: #e8f8f7;
    --navy: #0c1f2c;
    --navy-light: #132d3f;
    --slate: #3a5468;
    --gray-warm: #6b7d8a;
    --gray-light: #f4f7f9;
    --white: #ffffff;
    --danger-soft: #e84545;
    --success-soft: #27ae60;
    --orange: #f0913a;
    --shadow-sm: 0 2px 8px rgba(12,31,44,0.06);
    --shadow-md: 0 8px 30px rgba(12,31,44,0.10);
    --shadow-lg: 0 16px 50px rgba(12,31,44,0.12);
    --radius: 12px;
    --radius-lg: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

img { max-width: 100%; }

/* ─── NAVBAR ─── */
.navbar-main {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(43,181,178,0.08);
    transition: box-shadow 0.3s ease;
    padding: 0.6rem 0;
    z-index: 1040;
}
.navbar-main.scrolled { box-shadow: var(--shadow-md); }
.navbar-main .navbar-brand img { height: 44px; }
.navbar-main .nav-link {
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--navy);
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
    letter-spacing: 0.01em;
}
.navbar-main .nav-link:hover,
.navbar-main .nav-link.active { color: var(--teal); }
.btn-nav-cta {
    background: var(--teal);
    color: var(--white) !important;
    border: none;
    padding: 0.55rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(43,181,178,0.3);
}
.btn-nav-cta:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(43,181,178,0.4);
}

/* ─── BUTTONS ─── */
.btn-primary-teal {
    background: var(--teal);
    color: var(--white);
    border: none;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(43,181,178,0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary-teal:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(43,181,178,0.4);
    color: var(--white);
}
.btn-outline-teal {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-outline-teal:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white);
    color: var(--teal-dark);
    border: none;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    color: var(--teal-dark);
}
.btn-hero-secondary {
    background: transparent;
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-hero-secondary:hover {
    border-color: var(--teal-light);
    color: var(--teal-light);
    background: rgba(43,181,178,0.08);
}

/* ─── SECTION COMMONS ─── */
.section-padding { padding: 100px 0; }
.section-sm-padding { padding: 70px 0; }
.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal);
    margin-bottom: 0.8rem;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-warm);
    max-width: 600px;
    line-height: 1.8;
}
.bg-gray { background: var(--gray-light); }
.bg-navy { background: var(--navy); color: var(--white); }

/* ─── GRID BG ─── */
.grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(43,181,178,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(43,181,178,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* ─── PAGE HERO (internal pages) ─── */
.page-hero {
    position: relative;
    background: linear-gradient(165deg, var(--navy) 0%, var(--navy-light) 55%, #0f3347 100%);
    padding: 160px 0 100px;
    overflow: hidden;
}
.page-hero .grid-bg { opacity: 0.6; }
.page-hero .breadcrumb {
    margin-bottom: 1rem;
}
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
}
.page-hero .breadcrumb-item a:hover { color: var(--teal-light); }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    color: rgba(255,255,255,0.3);
}
.page-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--white);
    margin-bottom: 1rem;
}
.page-hero h1 .accent { color: var(--teal-light); }
.page-hero .lead {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.6);
    max-width: 620px;
    line-height: 1.8;
}

/* ─── HOME HERO ─── */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(165deg, var(--navy) 0%, var(--navy-light) 55%, #0f3347 100%);
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 120px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(43,181,178,0.12);
    border: 1px solid rgba(43,181,178,0.25);
    color: var(--teal-light);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.pulse-dot {
    width: 8px; height: 8px;
    background: var(--danger-soft);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--white);
    margin-bottom: 1.2rem;
}
.hero-title .accent { color: var(--teal-light); }
.hero-text {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.65);
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--teal-light);
    display: block;
}
.hero-stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Shield visual */
.shield-container { position: relative; width: 100%; max-width: 420px; margin: 0 auto; }
.shield-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(43,181,178,0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}
.shield-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(43,181,178,0.15);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
}
.shield-card img {
    width: 140px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 10px 30px rgba(43,181,178,0.3));
}
.shield-card-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}
.shield-card-text strong { color: var(--teal-light); font-weight: 600; }
.floating-tag {
    position: absolute;
    background: var(--white);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 4s ease-in-out infinite;
    z-index: 3;
}
.floating-tag.tag-1 { top: 15%; right: -10%; animation-delay: 0s; }
.floating-tag.tag-2 { bottom: 20%; left: -8%; animation-delay: 1.5s; }
.tag-icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
}
.tag-icon.green { background: #e6f9ee; color: var(--success-soft); }
.tag-icon.red { background: #fde8e8; color: var(--danger-soft); }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ─── PROBLEM CARDS ─── */
.problem-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.problem-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--danger-soft);
    opacity: 0;
    transition: opacity 0.3s;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.problem-card:hover::before { opacity: 1; }
.problem-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: #fde8e8;
    color: var(--danger-soft);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}
.problem-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}
.problem-card p {
    font-size: 0.9rem;
    color: var(--gray-warm);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ─── SERVICE CARDS ─── */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
    transform: scaleX(0);
    transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    background: var(--teal-pale);
    color: var(--teal);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.service-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}
.service-card p {
    font-size: 0.92rem;
    color: var(--gray-warm);
    line-height: 1.75;
}
.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}
.service-features li {
    font-size: 0.88rem;
    color: var(--slate);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.service-features li i { color: var(--teal); font-size: 0.75rem; }

/* ─── PROCESS STEPS ─── */
.process-section { position: relative; overflow: hidden; }
.process-step { text-align: center; position: relative; z-index: 1; }
.step-number {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 auto 1.2rem;
    box-shadow: 0 6px 25px rgba(43,181,178,0.35);
}
.process-step h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}
.process-step p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    max-width: 240px;
    margin: 0 auto;
}
.process-connector {
    position: absolute;
    top: 32px;
    left: calc(50% + 42px);
    width: calc(100% - 84px);
    height: 2px;
    background: rgba(43,181,178,0.2);
}
.process-connector::after {
    content: '';
    position: absolute;
    right: -4px; top: -3px;
    width: 8px; height: 8px;
    border-right: 2px solid rgba(43,181,178,0.4);
    border-top: 2px solid rgba(43,181,178,0.4);
    transform: rotate(45deg);
}

/* ─── WHY CARDS ─── */
.why-card {
    display: flex;
    gap: 1.2rem;
    padding: 1.5rem 0;
}
.why-icon {
    width: 48px; height: 48px; min-width: 48px;
    border-radius: 12px;
    background: var(--teal-pale);
    color: var(--teal);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.why-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}
.why-card p {
    font-size: 0.9rem;
    color: var(--gray-warm);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ─── CTA BANNER ─── */
.cta-banner {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    text-align: center;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
    border-radius: 50%;
}
.cta-banner h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 1rem;
    position: relative;
}
.cta-banner p {
    font-size: 1.05rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
}

/* ─── CTA INLINE BLOCK ─── */
.cta-inline {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.cta-inline::before {
    content: '';
    position: absolute;
    top: -40%; right: -20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(43,181,178,0.12), transparent 70%);
    border-radius: 50%;
}
.cta-inline h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}
.cta-inline p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    position: relative;
}

/* ─── PRICING CARDS ─── */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 2px solid rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
    border-color: var(--teal);
    box-shadow: var(--shadow-lg);
}
.pricing-card.featured::before {
    content: 'Più richiesto';
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 20px;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.pricing-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal);
    margin-bottom: 0.5rem;
}
.pricing-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.pricing-card .price {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.2rem;
}
.pricing-card .price-note {
    font-size: 0.82rem;
    color: var(--gray-warm);
    margin-bottom: 1.5rem;
}
.pricing-card .price small {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-warm);
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex-grow: 1;
}
.pricing-features li {
    font-size: 0.9rem;
    color: var(--slate);
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--teal); margin-top: 3px; font-size: 0.8rem; }
.pricing-features li i.bi-x-lg { color: #c5ced5; }
.pricing-card .btn-primary-teal,
.pricing-card .btn-outline-teal { width: 100%; justify-content: center; }

/* ─── CONTENT BLOCKS (internal pages) ─── */
.content-block { padding: 80px 0; }
.content-block h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}
.content-block p {
    color: var(--slate);
    line-height: 1.85;
    font-size: 1rem;
}
.content-block .lead-text {
    font-size: 1.15rem;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.8;
}
.icon-box {
    width: 70px; height: 70px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}
.icon-box.teal { background: var(--teal-pale); color: var(--teal); }
.icon-box.navy { background: #e3eaf0; color: var(--navy); }
.icon-box.red { background: #fde8e8; color: var(--danger-soft); }
.icon-box.orange { background: #fef3e7; color: var(--orange); }

/* Stat boxes */
.stat-box {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
}
.stat-box .number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--teal);
}
.stat-box .label {
    font-size: 0.88rem;
    color: var(--gray-warm);
    margin-top: 0.3rem;
}

/* Info list */
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--slate);
}
.info-list li:last-child { border-bottom: none; }
.info-list li i { color: var(--teal); margin-top: 4px; }

/* Timeline */
.timeline-item {
    position: relative;
    padding-left: 80px;
    padding-bottom: 3rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: 28px; top: 60px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--teal-pale), transparent);
}
.timeline-item:last-child::before { display: none; }
.timeline-number {
    position: absolute;
    left: 0; top: 0;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(43,181,178,0.3);
}
.timeline-item h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.timeline-item p {
    font-size: 0.92rem;
    color: var(--gray-warm);
    line-height: 1.75;
    margin-bottom: 0;
}

/* ─── CONTACT FORM ─── */
.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.06);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}
.form-control, .form-select {
    border: 1.5px solid #e0e6eb;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}
.form-control:focus, .form-select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(43,181,178,0.12);
}
.form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}
.btn-submit {
    background: var(--teal);
    color: var(--white);
    border: none;
    padding: 0.85rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(43,181,178,0.3);
    width: 100%;
}
.btn-submit:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(43,181,178,0.4);
    color: var(--white);
}
.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.contact-info-icon {
    width: 44px; height: 44px; min-width: 44px;
    border-radius: 10px;
    background: var(--teal-pale);
    color: var(--teal);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.contact-info-item h5 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.contact-info-item p {
    font-size: 0.88rem;
    color: var(--gray-warm);
    margin-bottom: 0;
}
.trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e8edf1;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--slate);
    font-weight: 500;
}
.trust-badge i { color: var(--teal); }

/* ─── FAQ ACCORDION ─── */
.accordion-item {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05) !important;
    border-radius: var(--radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.accordion-button {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
    padding: 1.2rem 1.5rem;
    background: var(--white);
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    color: var(--teal-dark);
    background: var(--white);
}
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232bb5b2'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body {
    font-size: 0.92rem;
    color: var(--gray-warm);
    line-height: 1.8;
    padding: 0 1.5rem 1.2rem;
}

/* ─── STICKY CTA ─── */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1050;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--danger-soft), #d63031);
    color: var(--white);
    border: none;
    padding: 16px 28px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 8px 35px rgba(232,69,69,0.45);
    transition: all 0.3s ease;
    animation: stickyPulse 2.5s ease-in-out infinite;
    text-decoration: none;
}
.sticky-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 45px rgba(232,69,69,0.55);
    color: var(--white);
}
.sticky-cta .cta-icon {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.sticky-cta .cta-label { line-height: 1.2; }
.sticky-cta .cta-label small {
    display: block;
    font-weight: 400;
    font-size: 0.72rem;
    opacity: 0.85;
}
@keyframes stickyPulse {
    0%, 100% { box-shadow: 0 8px 35px rgba(232,69,69,0.45); }
    50% { box-shadow: 0 8px 35px rgba(232,69,69,0.45), 0 0 0 10px rgba(232,69,69,0.12); }
}

/* ─── MODAL ─── */
.modal-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.modal-header {
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 1.5rem 2rem;
}
.modal-header .btn-close { filter: invert(1); opacity: 0.7; }
.modal-header .btn-close:hover { opacity: 1; }
.modal-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
}
.modal-title i { color: var(--teal-light); }
.modal-body { padding: 2rem; }
.modal-urgency-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fde8e8;
    color: var(--danger-soft);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.modal-urgency-badge i { font-size: 1.1rem; }

/* ─── FOOTER ─── */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.5);
    padding: 50px 0 30px;
}
.footer-brand img {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(10);
}
.footer-brand p { font-size: 0.88rem; max-width: 300px; line-height: 1.7; }
.footer h6 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.5rem;
    margin-top: 2.5rem;
    font-size: 0.82rem;
}

/* ─── ANIMATIONS ─── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ═══════════════════════════════════════════
   UTILITY CLASSES (replaces inline styles)
   ═══════════════════════════════════════════ */

/* ─── Text colors ─── */
.text-teal          { color: var(--teal); }
.text-teal-light    { color: var(--teal-light); }
.text-slate         { color: var(--slate); }
.text-muted-warm    { color: var(--gray-warm); }
.text-danger-soft   { color: var(--danger-soft); }

/* ─── Typographic helpers ─── */
.heading-dm         { font-family: 'DM Sans', sans-serif; font-weight: 700; }
.heading-sm         { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1rem; }
.heading-md         { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1.05rem; }
.text-sm            { font-size: 0.92rem; }
.text-xs            { font-size: 0.88rem; }
.text-xxs           { font-size: 0.82rem; }

/* ─── Callout / Signal boxes ─── */
.callout-danger {
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border-left: 4px solid var(--danger-soft);
}
.callout-heading {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--danger-soft);
    margin-bottom: 1rem;
}
.signal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.92rem;
    color: var(--slate);
}
.signal-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e8e8e0;
}
.signal-list li:last-child {
    border-bottom: none;
}

/* ─── Card interactivity ─── */
.clickable-card       { cursor: pointer; transition: transform 0.2s; }
.clickable-card:hover { transform: translateY(-3px); }

/* ─── Border accents ─── */
.border-left-danger   { border-left: 3px solid var(--danger-soft); }
.border-left-teal     { border-left: 3px solid var(--teal); }

/* ─── Icon overrides ─── */
.icon-box-danger      { background: #fde8e8; color: var(--danger-soft); }

/* ─── Modal success state ─── */
.success-icon-lg {
    font-size: 3rem;
    color: var(--success-soft);
    margin-bottom: 1rem;
}

/* ─── Mega dropdown ─── */
.dropdown-menu-lg     { min-width: 440px; }
.dropdown-type-label  { font-size: .7rem; letter-spacing: .05em; }
.dropdown-col-half    { width: 50%; }

/* ─── Z-index helpers ─── */
.z-above              { position: relative; z-index: 2; }

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
    .hero-stats { gap: 1.5rem; }
    .hero-visual { margin-top: 3rem; }
    .floating-tag { display: none; }
    .process-connector { display: none; }
    .sticky-cta .cta-label span { display: none; }
    .sticky-cta { padding: 14px 20px; }
}
@media (max-width: 767px) {
    .hero-stats { flex-direction: column; gap: 1rem; }
    .section-padding { padding: 70px 0; }
    .content-block { padding: 60px 0; }
    .contact-card { padding: 2rem; }
    .sticky-cta .cta-label small { display: none; }
}
