/*
Theme Name: SignalMatrix AI
Theme URI: https://signalmatrixai.com
Description: AI-powered healthcare marketing theme
Version: 1.0
Author: SignalMatrix AI
*/

/* ==========================================================================
   1. CSS Custom Properties
   ========================================================================== */

:root {
    --primary: #00ff88;
    --primary-dark: #00cc6a;
    --primary-glow: rgba(0, 255, 136, 0.3);
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-section: #0e0e16;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --border-color: rgba(255, 255, 255, 0.1);
    --gradient-start: #00ff88;
    --gradient-end: #00b4d8;
}

/* ==========================================================================
   2. Global Styles
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

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

::selection {
    background: var(--primary);
    color: var(--bg-dark);
}

/* ==========================================================================
   3. Utility Classes
   ========================================================================== */

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.15);
}

/* ==========================================================================
   4. Section Headers
   ========================================================================== */

.section-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   5. Announcement Bar
   ========================================================================== */

.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1060;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-dark));
    color: var(--bg-dark);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.announcement-bar a {
    color: var(--bg-dark);
    text-decoration: underline;
    font-weight: 700;
}

.announcement-bar .announcement-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--bg-dark);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    padding: 0;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.announcement-bar .announcement-close:hover {
    opacity: 1;
}

.announcement-bar.dismissed {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* ==========================================================================
   6. Navbar
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 1rem 0;
    background: transparent;
    transition: all 0.4s ease;
}

.has-announcement .navbar {
    top: 40px;
}

.navbar-scrolled {
    background: rgba(10, 10, 15, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.6rem 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary) !important;
    letter-spacing: -0.5px;
}

.navbar-brand span {
    color: var(--primary);
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--text-primary) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.6rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-cta {
    background: var(--primary);
    color: var(--bg-dark) !important;
    border: none;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--primary-glow);
    color: var(--bg-dark) !important;
}

/* ==========================================================================
   7. Hero Section
   ========================================================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: radial-gradient(ellipse at 20% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(0, 180, 216, 0.05) 0%, transparent 50%),
                var(--bg-dark);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, var(--bg-dark) 100%);
    z-index: 1;
    pointer-events: none;
}

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

.hero-section h1 {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-section .hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 2rem;
}

.hero-section .btn-hero {
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    border-radius: 50px;
    font-weight: 700;
    animation: pulse-glow 2s ease-in-out infinite;
}

.hero-section .btn-hero-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-section .btn-hero-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 255, 136, 0.05);
}

.hero-floating-cards {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 5%;
    right: 10%;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 35%;
    right: 0%;
    animation-delay: 1.5s;
}

.floating-card:nth-child(3) {
    top: 60%;
    right: 20%;
    animation-delay: 3s;
}

.floating-card .stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.floating-card .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.hero-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.hero-stat .stat-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ==========================================================================
   8. Credibility Bar
   ========================================================================== */

.credibility-bar {
    padding: 2rem 0;
    background: var(--bg-section);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.credibility-bar .ticker-wrap {
    overflow: hidden;
    width: 100%;
}

.credibility-bar .ticker {
    display: flex;
    gap: 3rem;
    animation: ticker-scroll 30s linear infinite;
    white-space: nowrap;
}

.credibility-bar .trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.credibility-bar .trust-item i {
    font-size: 1.25rem;
    color: var(--primary);
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   9. Problem Section
   ========================================================================== */

.problem-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff4444, #ff6b6b);
}

.problem-card .problem-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 68, 68, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ff4444;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.problem-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.problem-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

.problem-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.problem-list li::before {
    content: '\f62a';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: #ff4444;
    font-size: 0.8rem;
}

/* ==========================================================================
   10. Specialties Section (Offer Cards)
   ========================================================================== */

.offer-cards-section {
    background: var(--bg-section);
}

/* Offer Card */
.offer-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.15);
}

/* Green top bar */
.offer-card__top-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transition: height 0.3s ease;
}

.offer-card:hover .offer-card__top-bar {
    height: 6px;
}

/* "Most Popular" ribbon */
.offer-card__ribbon {
    position: absolute;
    top: 16px;
    right: -32px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 2.5rem;
    transform: rotate(45deg);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 255, 136, 0.3);
}

/* Background watermark number */
.offer-card__bg-number {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* Card body */
.offer-card__body {
    padding: 1.75rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Icon */
.offer-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(0, 255, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    transition: all 0.4s ease;
}

.offer-card:hover .offer-card__icon {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--primary-glow);
}

/* Title & description */
.offer-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.offer-card__desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Stat highlight */
.offer-card__stat {
    background: rgba(0, 255, 136, 0.06);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.offer-card__stat-number {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.offer-card__stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.15rem;
}

/* Features list */
.offer-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    flex: 1;
}

.offer-card__features li {
    font-size: 0.82rem;
    color: var(--text-secondary);
    padding: 0.3rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.offer-card__features li i {
    color: var(--primary);
    font-size: 0.75rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

/* Urgency bar */
.offer-card__urgency {
    font-size: 0.78rem;
    font-weight: 600;
    color: #ffb347;
    background: rgba(255, 179, 71, 0.08);
    border: 1px solid rgba(255, 179, 71, 0.2);
    border-radius: 8px;
    padding: 0.45rem 0.75rem;
    margin-bottom: 1rem;
    text-align: center;
}

.offer-card__urgency i {
    margin-right: 0.35rem;
}

/* CTA link */
.offer-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: auto;
    transition: gap 0.3s ease;
}

.offer-card:hover .offer-card__cta {
    gap: 0.75rem;
}

/* Trust bar below cards */
.offer-trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.offer-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.offer-trust-item i {
    color: var(--primary);
    font-size: 1rem;
}

/* ==========================================================================
   11. How It Works
   ========================================================================== */

.how-it-works {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.steps-container {
    position: relative;
    padding: 2rem 0;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--gradient-end), transparent);
    transform: translateX(-50%);
}

.step-item {
    position: relative;
    margin-bottom: 4rem;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    position: relative;
    z-index: 2;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px var(--primary-glow);
}

.step-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.step-content:hover {
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.step-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ==========================================================================
   12. Industry Data Section
   ========================================================================== */

.industry-data {
    padding: 6rem 0;
    background: var(--bg-section);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.stat-card .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tag-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tag-pill {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag-pill:hover {
    background: rgba(0, 255, 136, 0.15);
    border-color: var(--primary);
}

/* ==========================================================================
   13. Guarantee Section
   ========================================================================== */

.guarantee-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.guarantee-card {
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 24px;
    padding: 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.08);
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.guarantee-card .shield-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 40px var(--primary-glow);
}

.guarantee-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.guarantee-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   14. Pricing Section
   ========================================================================== */

.pricing-section {
    padding: 6rem 0;
    background: var(--bg-section);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.1);
    z-index: 2;
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 0 80px rgba(0, 255, 136, 0.15);
}

.pricing-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--primary);
    color: var(--bg-dark);
    padding: 0.25rem 3rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.pricing-card .pricing-tier {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.pricing-card .pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.pricing-card .pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-card .pricing-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-card .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-card .pricing-features li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-card .pricing-features li::before {
    content: '\f26a';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.85rem;
}

.pricing-card .btn-pricing {
    display: block;
    width: 100%;
    padding: 0.8rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
}

.pricing-card .btn-pricing:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 255, 136, 0.05);
}

.pricing-featured .btn-pricing {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.pricing-featured .btn-pricing:hover {
    background: var(--primary-dark);
    color: var(--bg-dark);
    box-shadow: 0 0 30px var(--primary-glow);
}

/* ==========================================================================
   15. Founding Partner Section
   ========================================================================== */

.founding-partner {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.founding-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.founding-card .founding-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founding-card .founding-visual {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 180, 216, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
}

.founding-card .founding-visual::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-glow), transparent);
    animation: pulse-glow 3s ease-in-out infinite;
}

.founding-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.founding-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.founding-perks {
    list-style: none;
    padding: 0;
    margin: 0;
}

.founding-perks li {
    padding: 0.4rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.founding-perks li::before {
    content: '\f26a';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ==========================================================================
   16. About Section
   ========================================================================== */

.about-section {
    padding: 6rem 0;
    background: var(--bg-section);
}

.about-section .features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.about-section .features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.about-section .features-list li:last-child {
    border-bottom: none;
}

.about-section .features-list li i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.about-section .features-list li span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.team-stat {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.team-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.team-stat .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   17. CTA Section
   ========================================================================== */

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08) 0%, rgba(0, 180, 216, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.05), transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-section .btn-cta-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    background: var(--primary);
    color: var(--bg-dark);
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px var(--primary-glow);
    animation: pulse-glow 2s ease-in-out infinite;
}

.cta-section .btn-cta-large:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 0 50px var(--primary-glow);
}

/* ==========================================================================
   18. Lead Magnet / Modal
   ========================================================================== */

.lead-magnet .modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
}

.lead-magnet .modal-header {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 180, 216, 0.1));
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
}

.lead-magnet .modal-header .modal-title {
    color: var(--text-primary);
    font-weight: 700;
}

.lead-magnet .modal-header .btn-close {
    filter: invert(1);
    opacity: 0.6;
}

.lead-magnet .modal-header .btn-close:hover {
    opacity: 1;
}

.lead-magnet .modal-body {
    padding: 2rem;
}

.lead-magnet .benefit-checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.lead-magnet .benefit-checklist li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.lead-magnet .benefit-checklist li::before {
    content: '\f26a';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.lead-magnet .modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
}

/* ==========================================================================
   19. FAQ Section
   ========================================================================== */

.faq-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.faq-section .accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section .accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-section .accordion-button {
    background: var(--bg-card);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    box-shadow: none;
    border: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--bg-card);
    color: var(--primary);
    box-shadow: none;
}

.faq-section .accordion-button::after {
    filter: invert(1);
    opacity: 0.5;
}

.faq-section .accordion-button:not(.collapsed)::after {
    filter: invert(62%) sepia(92%) saturate(800%) hue-rotate(110deg) brightness(100%);
    opacity: 1;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: var(--border-color);
}

.faq-section .accordion-body {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   20. Contact Section
   ========================================================================== */

.contact-section {
    padding: 6rem 0;
    background: var(--bg-section);
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
}

.contact-card .form-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.contact-card .form-control,
.contact-card .form-select {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-card .form-control:focus,
.contact-card .form-select:focus {
    background: var(--bg-dark);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
    color: var(--text-primary);
}

.contact-card .form-control::placeholder {
    color: var(--text-muted);
}

.contact-card .form-select option {
    background: var(--bg-dark);
    color: var(--text-primary);
}

.interest-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.interest-pill {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.interest-pill:hover,
.interest-pill.active {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.interest-pill input[type="checkbox"] {
    display: none;
}

.btn-submit-gradient {
    width: 100%;
    padding: 0.9rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-submit-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px var(--primary-glow);
}

/* ==========================================================================
   21. Sticky CTA Bar
   ========================================================================== */

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    padding: 0.75rem 0;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-cta .sticky-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.sticky-cta .sticky-text strong {
    color: var(--primary);
}

.sticky-cta .btn-cta {
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* ==========================================================================
   22. Footer
   ========================================================================== */

.site-footer {
    background: #050508;
    padding: 4rem 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand span {
    color: var(--primary);
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 300px;
    line-height: 1.6;
}

.footer-heading {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

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

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-bottom .copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 0.8rem;
}

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

/* ==========================================================================
   23. AI Receptionist Call Widget
   ========================================================================== */

.sm-call__bubble {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s;
    opacity: 0;
    transform: scale(0.8);
}

.sm-call__bubble--show {
    opacity: 1;
    transform: scale(1);
}

.sm-call__bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(102, 126, 234, 0.5);
}

.sm-call__bubble-icon {
    font-size: 1.5rem;
    color: #fff;
}

.sm-call__bubble-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.3);
    animation: sm-call-pulse 2s ease infinite;
}

.sm-call__bubble-label {
    position: absolute;
    right: 70px;
    background: var(--bg-card, #1e1e2e);
    color: var(--text-primary, #fff);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s;
    pointer-events: none;
}

.sm-call__bubble:hover .sm-call__bubble-label {
    opacity: 1;
    transform: translateX(0);
}

@keyframes sm-call-pulse {
    0% { transform: scale(1); opacity: 0.4; }
    70% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1.5); opacity: 0; }
}

.sm-call__panel {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10000;
    width: 360px;
    max-height: 480px;
    background: var(--bg-card, #1e1e2e);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: 1.25rem;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sm-call__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border-bottom: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
}

.sm-call__header-info {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.sm-call__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    position: relative;
    flex-shrink: 0;
}

.sm-call__status-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    border: 2px solid var(--bg-card, #1e1e2e);
}

.sm-call__name {
    display: block;
    color: var(--text-primary, #fff);
    font-size: 0.85rem;
}

.sm-call__status-text {
    font-size: 0.7rem;
    color: var(--text-secondary, rgba(255, 255, 255, 0.5));
}

.sm-call__close {
    background: none;
    border: none;
    color: var(--text-secondary, rgba(255, 255, 255, 0.5));
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
    transition: color 0.2s;
}

.sm-call__close:hover {
    color: var(--text-primary, #fff);
}

.sm-call__body {
    flex: 1;
    padding: 2rem 1.5rem;
    text-align: center;
    overflow-y: auto;
}

.sm-call__state h4 {
    color: var(--text-primary, #fff);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.sm-call__state p {
    color: var(--text-secondary, rgba(255, 255, 255, 0.5));
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.sm-call__icon-ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: var(--primary, #667eea);
}

.sm-call__icon-ring--active {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.2), rgba(39, 174, 96, 0.2));
    color: #2ecc71;
    animation: sm-call-active-pulse 1.5s ease infinite;
}

@keyframes sm-call-active-pulse {
    0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.3); }
    70% { box-shadow: 0 0 0 16px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.sm-call__start-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 3rem;
    border: none;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(46, 204, 113, 0.3);
}

.sm-call__start-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(46, 204, 113, 0.4);
}

.sm-call__end-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.75rem;
    border-radius: 3rem;
    border: none;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.sm-call__end-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(231, 76, 60, 0.4);
}

.sm-call__hint {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-secondary, rgba(255, 255, 255, 0.4));
}

.sm-call__footer {
    padding: 0.5rem 1rem;
    text-align: center;
    border-top: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    font-size: 0.7rem;
    color: var(--text-secondary, rgba(255, 255, 255, 0.3));
}

/* ==========================================================================
   24. Cookie Consent Banner
   ========================================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1080;
    background: rgba(18, 18, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    padding: 1.25rem 0;
}

.cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cookie-banner__text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.cookie-banner__text i {
    font-size: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
}

.cookie-banner__text p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

.cookie-banner__text p a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-banner__btn--accept {
    background: var(--primary);
    color: var(--bg-dark);
    border: none;
    font-weight: 700;
}

.cookie-banner__btn--accept:hover {
    background: var(--primary-dark);
}

.cookie-banner__btn--decline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.cookie-banner__btn--decline:hover {
    border-color: var(--text-muted);
    color: var(--text-secondary);
}

/* ==========================================================================
   25. Animations
   ========================================================================== */

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px var(--primary-glow);
    }
    50% {
        box-shadow: 0 0 40px var(--primary-glow), 0 0 60px rgba(0, 255, 136, 0.15);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 0.6s ease forwards;
}

.animate-slide-in-right {
    animation: slide-in-right 0.6s ease forwards;
}

.animate-scale-in {
    animation: scale-in 0.5s ease forwards;
}

/* Stagger delays for sequential animations */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ==========================================================================
   26. WordPress-Specific Overrides
   ========================================================================== */

.wp-block-image img {
    border-radius: 12px;
}

.wp-block-button .wp-block-button__link {
    background: var(--primary);
    color: var(--bg-dark);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.wp-block-button .wp-block-button__link:hover {
    background: var(--primary-dark);
}

.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Screen reader text (WordPress accessibility) */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: var(--bg-card);
    clip: auto !important;
    clip-path: none;
    color: var(--primary);
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* ==========================================================================
   27. Responsive Breakpoints
   ========================================================================== */

/* --- Large devices and below (tablets landscape, <=991px) --- */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 16px;
        padding: 1rem;
        margin-top: 0.75rem;
        border: 1px solid var(--border-color);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 8px;
    }

    .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .hero-section h1 {
        font-size: 2.75rem;
    }

    .hero-floating-cards {
        display: none;
    }

    .hero-stats {
        gap: 1.5rem;
    }

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

    .pricing-featured {
        transform: none;
    }

    .pricing-featured:hover {
        transform: translateY(-5px);
    }

    .founding-card {
        grid-template-columns: 1fr;
    }

    .founding-card .founding-visual {
        min-height: 200px;
    }

    .steps-container::before {
        left: 25px;
    }

    .section-title {
        font-size: 2rem;
    }

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

/* --- Medium devices (tablets portrait, <=767px) --- */
@media (max-width: 767px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.35rem; }

    .py-6 {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .hero-section {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 4rem;
    }

    .hero-section h1 {
        font-size: 2.25rem;
    }

    .hero-section .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stat {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .problem-card,
    .contact-card {
        padding: 2rem;
    }

    .guarantee-card {
        padding: 2.5rem 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 0.75rem;
    }

    .sm-call__panel {
        width: 300px;
    }
}

/* --- Small devices (phones, <=575px) --- */
@media (max-width: 575px) {
    body {
        font-size: 15px;
    }

    h1 { font-size: 1.85rem; }
    h2 { font-size: 1.5rem; }

    .hero-section h1 {
        font-size: 1.85rem;
    }

    .hero-section .btn-hero,
    .hero-section .btn-hero-outline {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        display: block;
        width: 100%;
        text-align: center;
    }

    .hero-stat .stat-number {
        font-size: 1.5rem;
    }

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

    .team-stats {
        grid-template-columns: 1fr;
    }

    .section-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .offer-card__body {
        padding: 1.25rem 1rem;
    }

    .offer-card__icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .offer-card__features li {
        font-size: 0.78rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-card .pricing-price {
        font-size: 2.5rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .guarantee-card {
        padding: 2rem 1.25rem;
    }

    .guarantee-card .shield-icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }

    .announcement-bar {
        font-size: 0.75rem;
        padding: 0.4rem 2.5rem 0.4rem 1rem;
    }

    .sm-call__bubble {
        bottom: 16px;
        right: 16px;
    }

    .sm-call__panel {
        width: calc(100vw - 24px);
        right: 12px;
        bottom: 12px;
    }

    .sticky-cta .sticky-text {
        font-size: 0.8rem;
    }

    .footer-bottom-links {
        gap: 1rem;
        flex-wrap: wrap;
    }
}

/* --- Print styles --- */
@media print {
    .announcement-bar,
    .sticky-cta,
    #smCallWidget,
    .cookie-banner {
        display: none !important;
    }

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

    .navbar {
        position: static;
        background: #fff;
    }
}
