@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   DESIGN SYSTEM & CSS VARIABLES (BrightonSEO San Diego 2025 Palette)
   ========================================================================== */
:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Theme Palette */
    --bg-main: #0b0f19;         /* Deepest midnight navy */
    --bg-card: #141c2f;         /* Slate navy card bg */
    --bg-card-hover: #1e2942;   /* Brighter navy for hover hover state */
    --color-salmon: #FC7D75;    /* BrightonSEO Signature Salmon Pink */
    --color-blue: #317AF5;      /* BrightonSEO Signature Electric Blue */
    --color-purple: #8b5cf6;    /* Secondary branding transition color */
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-silver: #a3b3cc;     /* Premium muted text color */
    --text-dark: #0f172a;

    /* Borders and Details */
    --border-glass: rgba(255, 255, 255, 0.06);
    --border-glass-hover: rgba(255, 255, 255, 0.15);
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.4);
    --shadow-glow-blue: 0 0 20px rgba(49, 122, 245, 0.35);
    --shadow-glow-salmon: 0 0 20px rgba(252, 125, 117, 0.35);
    
    /* Transition Speed */
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   RESET & BASICS
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-silver);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.25;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--color-salmon);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-blue);
}

/* ==========================================================================
   GRID & LAYOUT UTILITIES
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section-padding {
    padding: 7rem 0;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
}

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

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

/* ==========================================================================
   GLASSMORPHISM & PREMIUM EFFECTS
   ========================================================================== */
.glass-panel {
    background: rgba(20, 28, 47, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: var(--shadow-premium);
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-salmon) 0%, var(--color-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-alt {
    background: linear-gradient(135deg, #ffffff 30%, var(--color-salmon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Background Ambient Glows */
.glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.glow-orb-1 {
    top: 10%;
    left: -100px;
    background: var(--color-salmon);
}

.glow-orb-2 {
    top: 50%;
    right: -100px;
    background: var(--color-blue);
}

.glow-orb-3 {
    bottom: 5%;
    left: 20%;
    background: var(--color-purple);
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white);
}

.logo span {
    color: var(--color-salmon);
}

.logo-dot {
    color: var(--color-blue) !important;
}

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

.nav-link {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-silver);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-salmon), var(--color-blue));
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-white);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-salmon);
}

.nav-link.active::after {
    width: 100%;
    background: var(--color-salmon);
}

/* Hamburger mobile menu */
.nav-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.8rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-salmon) 0%, var(--color-blue) 100%);
    color: var(--text-white);
    box-shadow: var(--shadow-glow-blue);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-salmon) 100%);
    transition: var(--transition);
    opacity: 0;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-salmon);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-salmon);
    transform: translateY(-2px);
}

.btn-icon {
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 10rem 0 7rem;
    position: relative;
    overflow: hidden;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(252, 125, 117, 0.1);
    border: 1px solid rgba(252, 125, 117, 0.25);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    color: var(--color-salmon);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-tag-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--color-salmon);
    border-radius: 50%;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(252, 125, 117, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(252, 125, 117, 0); }
    100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(252, 125, 117, 0); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--text-silver);
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
}

.hero-badge-container {
    margin-top: 3.5rem;
    border-top: 1px solid var(--border-glass);
    padding-top: 2rem;
}

.hero-badge-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-silver);
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
}

.hero-badges {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    opacity: 0.65;
}

.hero-badges svg {
    height: 32px;
    fill: var(--text-white);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Clean abstract representation of SEO/Marketing graphs */
.hero-graph-mockup {
    width: 100%;
    max-width: 480px;
    height: 380px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.graph-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.graph-title {
    font-size: 1.1rem;
    color: var(--text-white);
}

.graph-stats {
    display: flex;
    gap: 1.5rem;
}

.graph-stat-num {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-salmon);
}

.graph-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 180px;
    margin-top: 1rem;
}

.graph-bar {
    width: 12%;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(to top, rgba(49, 122, 245, 0.1), var(--color-blue));
    height: 30%;
    transition: var(--transition);
    position: relative;
}

.graph-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--text-white);
    opacity: 0;
    transition: var(--transition);
}

.graph-bar:hover {
    height: 85% !important;
    background: linear-gradient(to top, var(--color-salmon), rgba(252, 125, 117, 0.8));
    box-shadow: var(--shadow-glow-salmon);
}

.graph-bar:hover::after {
    opacity: 1;
}

/* Floating Metrics widget */
.metric-widget {
    position: absolute;
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 5;
    animation: float 6s ease-in-out infinite;
}

.metric-widget-1 {
    top: 10%;
    right: -20px;
    background: rgba(49, 122, 245, 0.15);
    border: 1px solid rgba(49, 122, 245, 0.3);
    backdrop-filter: blur(8px);
}

.metric-widget-2 {
    bottom: 10%;
    left: -20px;
    background: rgba(252, 125, 117, 0.15);
    border: 1px solid rgba(252, 125, 117, 0.3);
    backdrop-filter: blur(8px);
    animation-delay: 3s;
}

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

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-section {
    position: relative;
    z-index: 10;
    margin-top: -3rem;
}

.stats-grid {
    padding: 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 2rem;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 15%;
    width: 1px;
    height: 70%;
    background-color: var(--border-glass);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, #ffffff 40%, var(--color-salmon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-silver);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ==========================================================================
   SERVICES GRID (HOME / SERVICES PAGE)
   ========================================================================== */
.section-header {
    max-width: 600px;
    margin: 0 auto 5rem;
}

.section-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-salmon);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.service-card {
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-salmon), var(--color-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--color-salmon);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--color-salmon);
    color: var(--bg-main);
    box-shadow: var(--shadow-glow-salmon);
}

.service-card-alt:hover .service-icon {
    background: var(--color-blue);
    color: var(--bg-main);
    box-shadow: var(--shadow-glow-blue);
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    gap: 0.5rem;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* ==========================================================================
   AI HIGHLIGHT SECTION
   ========================================================================== */
.ai-highlight-section {
    background: radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    position: relative;
}

.highlight-check-list {
    list-style: none;
    margin: 2rem 0;
}

.highlight-check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--text-white);
}

.highlight-check-list svg {
    color: var(--color-blue);
    flex-shrink: 0;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonial-card {
    padding: 3rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
    color: #eab308;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-salmon), var(--color-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-white);
    font-size: 1.2rem;
    border: 2px solid rgba(255,255,255,0.1);
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-silver);
}

/* ==========================================================================
   CALL TO ACTION
   ========================================================================== */
.cta-section {
    padding: 6rem 0;
    position: relative;
}

.cta-box {
    padding: 4.5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box .glow-orb {
    opacity: 0.2;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* ==========================================================================
   ABOUT PAGE ELEMENTS
   ========================================================================== */
.about-hero {
    padding: 10rem 0 5rem;
}

.about-features {
    padding: 5rem 0;
}

.feature-box {
    text-align: center;
    padding: 2rem;
}

.feature-box-icon {
    width: 60px;
    height: 60px;
    background: rgba(252, 125, 117, 0.1);
    color: var(--color-salmon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--border-glass);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 1rem 3rem;
    position: relative;
    width: 50%;
    margin-bottom: 2rem;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-salmon);
    border: 3px solid var(--bg-main);
    top: 25px;
    right: -8px;
    z-index: 1;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(even)::after {
    left: -8px;
}

.timeline-content {
    padding: 2rem;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-salmon);
    margin-bottom: 0.5rem;
}

.team-card {
    padding: 1.5rem;
    text-align: center;
}

.team-avatar-frame {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-salmon), var(--color-blue));
    padding: 4px;
    margin: 0 auto 1.5rem;
}

.team-avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--text-white);
}

.team-socials {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* ==========================================================================
   SERVICES & AI AUTOMATION SPECIFICS
   ========================================================================== */
.service-focus-section {
    padding: 5rem 0;
}

.service-focus-detail {
    margin-bottom: 5rem;
}

.service-visual-box {
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CSS Mockup Dashboard */
.dashboard-mockup {
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dash-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 0.8rem;
}

.dash-progress-container {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.dash-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-salmon), var(--color-blue));
}

/* Custom Interactive ROI Calculator Widget */
.roi-calculator-box {
    padding: 3rem;
    max-width: 600px;
    margin: 3rem auto;
}

.calc-title {
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-white);
}

.form-slider {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    outline: none;
    border-radius: 10px;
    -webkit-appearance: none;
}

.form-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-salmon);
    cursor: pointer;
    box-shadow: var(--shadow-glow-salmon);
    transition: transform 0.1s;
}

.form-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-result-box {
    background: rgba(255,255,255,0.02);
    border: 1px dashed var(--border-glass);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 2rem;
}

.calc-result-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-blue);
    text-shadow: var(--shadow-glow-blue);
}

/* ==========================================================================
   CONTACT PAGE & FORMS & FAQ
   ========================================================================== */
.contact-section {
    padding: 10rem 0 6rem;
}

.contact-info-list {
    list-style: none;
    margin-top: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(49, 122, 245, 0.1);
    color: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-input-field {
    width: 100%;
    background: rgba(11, 15, 25, 0.6);
    border: 1px solid var(--border-glass);
    padding: 1rem 1.2rem;
    color: var(--text-white);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-input-field:focus {
    border-color: var(--color-salmon);
    outline: none;
    box-shadow: 0 0 10px rgba(252, 125, 117, 0.15);
}

.contact-select-field {
    cursor: pointer;
}

.contact-select-field option {
    background-color: var(--bg-main);
    color: var(--text-white);
}

/* Map Mockup */
.map-mockup {
    width: 100%;
    height: 250px;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-pin {
    width: 18px;
    height: 18px;
    background-color: var(--color-salmon);
    border-radius: 50%;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-glow-salmon);
}

.map-pin::before {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    border: 2px solid var(--color-salmon);
    border-radius: 50%;
    top: -9px;
    left: -9px;
    animation: pulse-ring 2s infinite ease-out;
}

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

/* Pure CSS Accordion using Details/Summary */
.faq-accordion {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    margin-bottom: 1.2rem;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 1rem;
}

.faq-summary {
    list-style: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    padding: 1rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-salmon);
    transition: transform 0.3s ease;
}

details[open] .faq-summary::after {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0.5rem 0 1rem;
    line-height: 1.6;
    color: var(--text-silver);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Alerts Success/Error notifications */
.alert-box {
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #060912;
    border-top: 1px solid var(--border-glass);
    padding: 5rem 0 2rem;
    font-size: 0.95rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.footer-desc {
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-silver);
}

.footer-social-link:hover {
    background: var(--color-salmon);
    color: var(--bg-main);
    border-color: var(--color-salmon);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

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

.footer-links a {
    color: var(--text-silver);
}

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

.footer-newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.footer-newsletter-input {
    flex: 1;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    color: var(--text-white);
}

.footer-newsletter-input:focus {
    outline: none;
    border-color: var(--color-blue);
}

.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(148, 163, 184, 0.6);
    font-size: 0.85rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-item:nth-child(2)::after {
        display: none;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-main);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3rem;
        transition: 0.4s ease;
        border-top: 1px solid var(--border-glass);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .timeline::after {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 5rem;
        padding-right: 1.5rem;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item::after {
        left: 22px !important;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-newsletter-form {
        flex-direction: column;
    }
}
