:root {
    /* Colors */
    --bg-main: #050507;
    --bg-card: #0b0b0f;
    --bg-hover: #121218;
    
    --cyan: #22d3ee;
    --cyan-dim: rgba(34, 211, 238, 0.1);
    --cyan-glow: rgba(34, 211, 238, 0.4);
    
    --purple: #9333ea;
    --purple-dim: rgba(147, 51, 234, 0.1);
    --purple-glow: rgba(147, 51, 234, 0.4);
    
    --text-white: #f8fafc;
    --text-gray: #94a3b8;
    --text-dark: #475569;
    
    --border: #1e1e24;
    --border-light: #2d2d35;
    
    --font-outfit: 'Outfit', sans-serif;
    --font-space: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

/* Reset and Core Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-gray);
    font-family: var(--font-outfit);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--cyan);
}

/* Text Selection */
::selection {
    background: var(--cyan-dim);
    color: var(--text-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-space);
    color: var(--text-white);
    line-height: 1.15;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Subtle Animated Background Grid */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: 50px 50px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    z-index: -2;
    pointer-events: none;
}

/* Glow Orbs with Floating Animation */
.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.25;
    pointer-events: none;
    transition: transform 0.2s ease-out;
}

.glow-orb.top {
    top: -150px;
    left: -150px;
    background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 60%);
    animation: float-slow 15s ease-in-out infinite alternate;
}

.glow-orb.bottom {
    bottom: -150px;
    right: -150px;
    background: radial-gradient(circle, var(--purple-glow) 0%, transparent 60%);
    animation: float-slow 20s ease-in-out infinite alternate-reverse;
}

@keyframes float-slow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, 40px) scale(1.15); }
}

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(30, 30, 36, 0.6);
    background: rgba(5, 5, 7, 0.7);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    font-family: var(--font-space);
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--text-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--cyan);
    animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 10px var(--cyan); }
    50% { transform: scale(1.3); opacity: 0.8; box-shadow: 0 0 15px var(--cyan); }
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--cyan);
    transition: width 0.3s ease;
}

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

/* Responsive Mobile Navigation Overlay */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 110;
    padding: 0.5rem;
}

.mobile-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-white);
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 7, 0.98);
    z-index: 105;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-overlay a {
    font-family: var(--font-space);
    font-size: 1.8rem;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease;
}

.mobile-nav-close:hover {
    color: var(--cyan);
}

.mobile-nav-overlay a:hover,
.mobile-nav-overlay a.active {
    color: var(--cyan);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--text-white);
    color: var(--bg-main);
}

.btn-primary:hover {
    background-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-glow {
    background-color: rgba(34, 211, 238, 0.05);
    color: var(--cyan);
    border-color: rgba(34, 211, 238, 0.25);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.05);
}

.btn-glow:hover {
    background-color: rgba(34, 211, 238, 0.15);
    border-color: var(--cyan);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.25);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 7rem 0;
    border-top: 1px solid var(--border);
    position: relative;
}

.section-header {
    margin-bottom: 4.5rem;
    max-width: 650px;
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* Hero Section */
.hero {
    padding: 9rem 0 7rem;
    max-width: 850px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(30, 30, 36, 0.4);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    backdrop-filter: blur(4px);
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: var(--cyan);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: -3px; left: -3px; right: -3px; bottom: -3px;
    border-radius: 50%;
    border: 1px solid var(--cyan);
    animation: pulse 2.2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3.2); opacity: 0; }
}

.hero h1 {
    font-size: 4.75rem;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.highlight {
    color: var(--cyan);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(34, 211, 238, 0.2);
    z-index: -1;
}

.hero p {
    font-size: 1.3rem;
    max-width: 650px;
    margin-bottom: 3.5rem;
    color: var(--text-gray);
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 1.5rem;
}

.bento-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

/* Interactive spotlight highlight overlay */
.bento-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(34, 211, 238, 0.08), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 2;
}

.bento-item:hover::after {
    opacity: 1;
}

.bento-item:hover {
    border-color: rgba(34, 211, 238, 0.3);
    background: var(--bg-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bento-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 3;
}

.bento-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
    position: relative;
    z-index: 3;
    font-weight: 300;
}

.item-icon {
    align-self: flex-start;
    padding: 12px;
    background: rgba(30, 30, 36, 0.8);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--cyan);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.span-2 { grid-column: span 2; }
.row-2 { grid-row: span 2; }

/* Pricing / Scoping Calculator */
.pricing-section {
    background: rgba(11, 11, 15, 0.5);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(147, 51, 234, 0.03), transparent 50%);
    pointer-events: none;
}

.pricing-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.calculator-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    position: relative;
}

.calculator-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.calc-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.calc-subtitle {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.calc-section {
    margin-bottom: 2.25rem;
}

.calc-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.calc-label span.val-display {
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: 1rem;
}

/* Toggle targets grid */
.target-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.target-btn {
    background: rgba(30, 30, 36, 0.3);
    border: 1px solid var(--border);
    padding: 1rem;
    border-radius: 8px;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.target-btn:hover {
    border-color: rgba(34, 211, 238, 0.4);
    color: var(--text-white);
}

.target-btn.active {
    background: rgba(34, 211, 238, 0.05);
    border-color: var(--cyan);
    color: var(--text-white);
}

.target-checkbox {
    width: 16px;
    height: 16px;
    border: 2px solid var(--text-dark);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.target-btn.active .target-checkbox {
    border-color: var(--cyan);
    background: var(--cyan);
}

.target-btn.active .target-checkbox::after {
    content: '✓';
    color: var(--bg-main);
    font-size: 10px;
    font-weight: bold;
}

/* Custom range slider */
.slider-container {
    position: relative;
    display: flex;
    align-items: center;
}

.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--border-light);
    outline: none;
    transition: background 0.3s;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--text-white);
    border: 2px solid var(--cyan);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
    transition: all 0.2s;
}

.range-slider::-webkit-slider-thumb:hover {
    background: var(--cyan);
    transform: scale(1.15);
}

/* Pricing Results Display */
.calc-results {
    background: rgba(5, 5, 7, 0.4);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    justify-content: center;
    position: relative;
}

.calc-results h3 {
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.calc-price {
    font-family: var(--font-space);
    font-size: 4rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1;
}

.calc-price span {
    font-size: 1rem;
    color: var(--text-dark);
    font-family: var(--font-outfit);
    font-weight: 400;
}

.calc-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 320px;
}

.calc-features {
    text-align: left;
    list-style: none;
    width: 100%;
    margin-bottom: 2.5rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.calc-features li {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.calc-features li::before {
    content: '→';
    color: var(--cyan);
    font-weight: bold;
}

/* Firm / Story Section */
.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 300;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.stat-box {
    border-left: 2px solid var(--border);
    padding-left: 1.75rem;
    transition: border-color 0.3s;
}

.stat-box:hover {
    border-color: var(--cyan);
}

.stat-box h4 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.stat-box p {
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* Testimonials Carousel Track */
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.testimonial-header h3 {
    font-size: 1.8rem;
}

.testimonial-nav {
    display: flex;
    gap: 0.75rem;
}

.t-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.t-nav-btn:hover {
    background: var(--cyan-dim);
    border-color: var(--cyan);
    color: var(--cyan);
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.t-card {
    min-width: 400px;
    flex-shrink: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 12px;
    transition: border-color 0.3s;
}

.t-card:hover {
    border-color: var(--border-light);
}

.t-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1.25rem;
}

.t-profile {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.t-avatar {
    width: 42px;
    height: 42px;
    background: var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-space);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
}

.t-info h5 {
    font-size: 0.95rem;
    color: var(--text-white);
}

.t-info span {
    font-size: 0.8rem;
    color: var(--text-dark);
}

.t-body {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 300;
    line-height: 1.6;
}

/* Blog Briefings Layout Styles */
.blog-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.blog-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.blog-header p {
    color: var(--text-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Search and Filters */
.filter-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.search-wrapper {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.1rem 1.5rem 1.1rem 3.2rem;
    border-radius: 8px;
    color: var(--text-white);
    font-family: var(--font-outfit);
    font-size: 1.05rem;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.1);
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dark);
    pointer-events: none;
    transition: color 0.3s;
}

.search-input:focus + .search-icon {
    color: var(--cyan);
}

.tag-filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-btn {
    background: rgba(30, 30, 36, 0.3);
    border: 1px solid var(--border);
    color: var(--text-gray);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-family: var(--font-mono);
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: var(--cyan-dim);
    color: var(--text-white);
}

.filter-btn.active {
    background: var(--cyan-dim);
    border-color: var(--cyan);
    color: var(--cyan);
}

/* Contact Form */
.contact-section {
    padding: 6rem 0;
}
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 880px;
    margin: 0 auto;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
}
.form-row { display: flex; flex-direction: column; }
.form-label { font-size: 0.85rem; color: var(--text-white); margin-bottom: 0.5rem; }
.input, .textarea, .select {
    background: rgba(30,30,36,0.6);
    border: 1px solid var(--border);
    color: var(--text-white);
    padding: 0.9rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
}
.textarea { min-height: 140px; resize: vertical; }
.form-actions { margin-top: 1rem; display: flex; gap: 1rem; align-items: center; }
.form-note { font-size: 0.9rem; color: var(--text-dark); }
.contact-card .btn-primary { padding: 0.75rem 1.25rem; }
.form-status { margin-top: 1rem; font-size: 0.95rem; color: var(--text-white); }

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

.briefings-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

article {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 3.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

article:hover {
    border-color: var(--border-light);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.article-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.75rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--cyan);
    text-transform: uppercase;
}

.article-meta span {
    padding: 4px 12px;
    background: var(--cyan-dim);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 4px;
    letter-spacing: 1px;
}

h2.article-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    font-weight: 300;
}

.resolution-box {
    background: rgba(147, 51, 234, 0.03);
    border-left: 3px solid var(--purple);
    padding: 2rem;
    margin-top: 2.5rem;
    border-radius: 0 10px 10px 0;
    border-top: 1px solid rgba(147, 51, 234, 0.05);
    border-right: 1px solid rgba(147, 51, 234, 0.05);
    border-bottom: 1px solid rgba(147, 51, 234, 0.05);
}

.resolution-box h4 {
    margin-bottom: 0.75rem;
    color: var(--purple);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.resolution-box p {
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 300;
}

/* Copy code snippets (optional preview buttons) */
.copy-btn {
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    transition: color 0.2s;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.copy-btn:hover {
    color: var(--cyan);
}

/* No results alert state */
.no-results {
    text-align: center;
    padding: 5rem 0;
    display: none;
}

.no-results h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.no-results p {
    color: var(--text-dark);
}

/* Footer styling */
footer {
    padding: 5rem 0;
    border-top: 1px solid var(--border);
    background: #000;
    position: relative;
    z-index: 10;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    margin-left: 2.5rem;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .pricing-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .story-section {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 900px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    
    .span-2 {
        grid-column: span 1;
    }
    
    .row-2 {
        grid-row: span 1;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    .calculator-card {
        padding: 2rem;
    }
    
    .target-grid {
        grid-template-columns: 1fr;
    }
    
    .t-card {
        min-width: 320px;
        padding: 1.75rem;
    }
    
    article {
        padding: 2rem;
    }
    
    h2.article-title {
        font-size: 1.75rem;
    }
    
    .blog-header h1 {
        font-size: 2.75rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .footer-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links a {
        margin-left: 0;
    }
}
