/* BeyondRxAid - Mont-Fort Inspired Premium Design */
/* Complete Stylesheet with All Features */

:root {
  --brand: #2ecc71;
  --brand-dark: #27ae60;
  --brand-light: #58d68d;
  --dark: #0a0a0a;
  --dark-lighter: #111111;
  --dark-card: #161616;
  --light: #ffffff;
  --light-muted: rgba(255,255,255,0.7);
  --light-subtle: rgba(255,255,255,0.4);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.15);
  --red: #e74c3c;
  --red-bg: rgba(231, 76, 60, 0.1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: var(--dark); color: var(--light); line-height: 1.6; overflow-x: hidden; }

/* ===== CONTAINER ===== */
.container { max-width: 1400px; margin: 0 auto; padding: 0 60px; }
.container.center { text-align: center; }
.container.center .section-title-large, .container.center .section-title, .container.center .section-text-large, .container.center .section-desc { margin-left: auto; margin-right: auto; }

@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ===== NAVIGATION ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 24px 60px; transition: all 0.4s var(--ease-out); }
.nav::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.8) 50%, transparent 100%); pointer-events: none; }
.nav-inner { position: relative; display: -webkit-flex; display: flex; -webkit-justify-content: space-between; justify-content: space-between; -webkit-align-items: center; align-items: center; max-width: 1400px; margin: 0 auto; }
.nav-logo { display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; gap: 12px; color: var(--light); text-decoration: none; font-weight: 600; font-size: 18px; transition: all 0.3s var(--ease-out); }
.nav-logo svg { color: var(--brand); transition: transform 0.3s var(--ease-out); }
.nav-logo:hover { color: var(--brand); }
.nav-logo:hover svg { -webkit-transform: scale(1.1); transform: scale(1.1); }
.nav-links { display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; gap: 40px; }
.nav-links button, .nav-links a:not(.nav-cta) { -webkit-appearance: none; appearance: none; background: none; border: none; color: var(--light-muted); font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.3s var(--ease-out); text-decoration: none; position: relative; }
.nav-links button::after, .nav-links a:not(.nav-cta)::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--brand); transition: width 0.3s var(--ease-out); }
.nav-links button:hover, .nav-links a:not(.nav-cta):hover { color: var(--light); }
.nav-links button:hover::after, .nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { background: var(--brand); color: var(--dark) !important; padding: 10px 24px; border-radius: 6px; font-weight: 600; font-size: 14px; transition: all 0.3s var(--ease-out); display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; gap: 8px; text-decoration: none; }
.nav-cta svg { width: 16px; height: 16px; }
.nav-cta:hover { background: var(--brand-light); -webkit-transform: translateY(-2px); transform: translateY(-2px); }
.nav-cta::after { display: none !important; }
.nav-phone { display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; gap: 8px; color: var(--light-muted) !important; font-weight: 500; }
.nav-phone svg { width: 16px; height: 16px; color: var(--light-muted); }
.nav-phone:hover { color: var(--light) !important; }
.nav-phone:hover svg { color: var(--brand); }
.nav-phone::after { display: none !important; }
.nav-toggle { display: none; -webkit-appearance: none; appearance: none; background: none; border: none; color: var(--light); cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 1024px) {
  .nav { padding: 20px 24px; }
  .nav-inner { position: relative; z-index: 10001; }
  .nav-links { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: var(--dark); display: -webkit-flex; display: flex; -webkit-flex-direction: column; flex-direction: column; -webkit-justify-content: center; justify-content: center; -webkit-align-items: center; align-items: center; gap: 24px; opacity: 0; visibility: hidden; pointer-events: none; transition: all 0.4s var(--ease-out); z-index: 10000; }
  .nav-links.open { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-links button, .nav-links a:not(.nav-cta):not(.nav-phone) { font-size: 22px; color: var(--light); background: none; border: none; cursor: pointer; -webkit-appearance: none; appearance: none; }
  .nav-links button::after, .nav-links a:not(.nav-cta):not(.nav-phone)::after { display: none; }
  .nav-phone { display: -webkit-flex !important; display: flex !important; visibility: visible !important; opacity: 1 !important; -webkit-align-items: center; align-items: center; gap: 10px; font-size: 18px; margin-top: 20px; padding: 12px 24px; background: rgba(46,204,113,0.1); border: 1px solid rgba(46,204,113,0.3); border-radius: 50px; }
  .nav-phone svg { width: 20px; height: 20px; color: var(--brand) !important; }
  .nav-phone span { color: var(--light) !important; font-weight: 500; }
  .nav-cta { margin-top: 12px; padding: 16px 40px; font-size: 18px; }
  .nav-cta svg { width: 20px; height: 20px; }
  .nav-toggle { display: block; position: relative; z-index: 10002; }
}

/* ===== TRUST BAR ===== */
.trust-bar { padding: 60px 0; background: var(--dark-lighter); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-bar-label { text-align: center; font-size: 14px; color: var(--light-muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 32px; }
.trust-bar-logos { display: flex; justify-content: center; align-items: center; gap: 60px; flex-wrap: wrap; }
.trust-bar-logo { height: 48px; width: auto; max-width: 160px; object-fit: contain; opacity: 0.85; transition: all 0.3s var(--ease-out); }
.trust-bar-logo:hover { opacity: 1; transform: scale(1.05); }
@media (max-width: 768px) {
  .trust-bar { padding: 40px 0; }
  .trust-bar-logos { gap: 30px; }
  .trust-bar-logo { height: 40px; max-width: 120px; }
}

/* ===== SECTION NAV DOTS ===== */
.section-nav { position: fixed; right: 40px; top: 50%; transform: translateY(-50%); z-index: 100; display: flex; flex-direction: column; gap: 16px; }
.section-nav button { width: 10px; height: 10px; border-radius: 50%; border: 1px solid var(--light-subtle); background: transparent; cursor: pointer; transition: all 0.3s var(--ease-out); position: relative; }
.section-nav button::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid transparent; transition: all 0.3s var(--ease-out); }
.section-nav button.active { background: var(--brand); border-color: var(--brand); transform: scale(1.2); }
.section-nav button:hover { border-color: var(--brand); }

@media (max-width: 1024px) { .section-nav { display: none; } }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 140px 60px 140px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-gradient { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(46,204,113,0.12) 0%, transparent 60%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%); }
.hero-content { position: relative; text-align: center; max-width: 1000px; }
.hero-title { font-size: clamp(56px, 12vw, 140px); font-weight: 700; line-height: 0.95; margin-bottom: 32px; letter-spacing: -0.04em; }
.hero-line { display: block; }
.hero-line.highlight { color: var(--brand); }
.word-cycle { display: inline-block; opacity: 0; transform: translateY(20px); transition: all 0.4s var(--ease-out); }
.word-cycle.visible { opacity: 1; transform: translateY(0); }
.hero-subtitle { font-size: clamp(16px, 2vw, 20px); color: var(--light-muted); max-width: 680px; margin: 0 auto 32px; line-height: 1.7; }
.hero-certs { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-certs span { font-size: 11px; color: var(--light-subtle); text-transform: uppercase; letter-spacing: 0.12em; padding: 8px 16px; border: 1px solid var(--border); border-radius: 100px; transition: all 0.3s var(--ease-out); }
.hero-certs span:hover { border-color: var(--brand); color: var(--brand); }
.hero-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; background: none; border: none; color: var(--light-subtle); cursor: pointer; transition: all 0.3s var(--ease-out); margin-top: 80px; }
.hero-scroll span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; }
.hero-scroll:hover { color: var(--brand); }
.hero-scroll svg { animation: bounce 2s infinite; }

@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(10px); } 60% { transform: translateY(5px); } }

@media (max-width: 768px) { .hero { padding: 120px 24px 140px; } .hero-certs { gap: 10px; } .hero-certs span { font-size: 9px; padding: 6px 12px; } .hero-scroll { position: relative; bottom: auto; left: auto; transform: none; margin-top: 60px; } }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 28px; font-size: 14px; font-weight: 600; border-radius: 8px; cursor: pointer; transition: all 0.4s var(--ease-out); text-decoration: none; border: none; position: relative; overflow: hidden; }
.btn svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--brand); color: var(--dark); }
.btn-primary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent); opacity: 0; transition: opacity 0.3s; }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(46,204,113,0.3); }
.btn-ghost { background: transparent; color: var(--light); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); background: rgba(46,204,113,0.05); }
.btn-outline { background: transparent; color: var(--light); border: 1px solid var(--border); }
.btn-outline:hover { background: rgba(255,255,255,0.05); border-color: var(--light-subtle); }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-xl { padding: 20px 44px; font-size: 17px; }
.btn-full { width: 100%; }

/* ===== SECTIONS ===== */
.section { padding: 140px 60px; position: relative; }
.section-dark { background: var(--dark-lighter); }
.section-light { background: linear-gradient(180deg, #1a1a1f 0%, #141418 100%); }
.section-cta { text-align: center; padding: 180px 60px; }
.section-label { font-size: 12px; font-weight: 600; color: var(--brand); text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 24px; }
.section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 600; line-height: 1.2; max-width: 800px; margin-bottom: 24px; letter-spacing: -0.02em; }
.section-title-large { font-size: clamp(32px, 5vw, 56px); font-weight: 600; line-height: 1.15; max-width: 900px; margin-bottom: 32px; letter-spacing: -0.03em; }
.section-title-large.dark, .section-text-large.dark { color: var(--light); }
.section-desc { font-size: 17px; color: var(--light-muted); max-width: 600px; line-height: 1.7; margin-bottom: 48px; }
.section-text-large { font-size: clamp(17px, 2vw, 20px); color: var(--light-muted); max-width: 700px; line-height: 1.8; margin-bottom: 32px; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; color: var(--brand); font-weight: 500; font-size: 15px; text-decoration: none; transition: all 0.3s var(--ease-out); }
.link-arrow svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease-out); }
.link-arrow:hover { gap: 14px; }
.link-arrow:hover svg { transform: translateX(4px); }

@media (max-width: 768px) { .section { padding: 80px 24px; } .section-cta { padding: 100px 24px; } }

/* ===== ANIMATIONS ===== */
.animate { opacity: 0; transition: all 0.8s var(--ease-out); }
.animate-up { transform: translateY(60px); }
.animate-down { transform: translateY(-60px); }
.animate-left { transform: translateX(-60px); }
.animate-right { transform: translateX(60px); }
.animate.visible { opacity: 1; transform: translate(0, 0); }

/* ===== STATS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; margin-top: 100px; padding-top: 100px; border-top: 1px solid var(--border); }
.stat { text-align: center; }
.stat-value { display: block; font-size: clamp(40px, 6vw, 64px); font-weight: 700; color: var(--brand); line-height: 1; margin-bottom: 12px; letter-spacing: -0.02em; }
.stat-label { font-size: 14px; color: var(--light-subtle); text-transform: uppercase; letter-spacing: 0.08em; }

@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 60px; }
.service-card { background: var(--dark-card); border: 1px solid var(--border); border-radius: 16px; padding: 48px; transition: all 0.5s var(--ease-out); position: relative; overflow: hidden; text-align: left; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease-out); }
.service-card:hover { border-color: var(--brand); transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-num { font-size: 13px; font-weight: 600; color: var(--brand); margin-bottom: 24px; display: block; }
.service-icon { color: var(--brand); margin-bottom: 24px; opacity: 0.8; }
.service-icon svg { width: 32px; height: 32px; }
.service-title { font-size: 24px; font-weight: 600; margin-bottom: 16px; color: var(--light); }
.service-desc { font-size: 15px; color: var(--light-muted); line-height: 1.7; margin-bottom: 28px; }
.service-link { display: inline-flex; align-items: center; gap: 8px; background: none; border: none; color: var(--brand); font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.3s var(--ease-out); text-decoration: none; }
.service-link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-out); }
.service-link:hover { gap: 12px; }
.service-link:hover svg { transform: translateX(4px); }

@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } .service-card { padding: 32px; } }

/* ===== PORTFOLIO ===== */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.portfolio-card { background: var(--dark-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; cursor: pointer; transition: all 0.5s var(--ease-out); text-align: left; }
.portfolio-card:hover { border-color: var(--brand); transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.3); }
.portfolio-image { height: 200px; background-size: cover; background-position: center top; background-color: var(--dark-lighter); position: relative; transition: transform 0.5s var(--ease-out); }
.portfolio-card:hover .portfolio-image { transform: scale(1.05); }
.portfolio-featured, .portfolio-nda { position: absolute; top: 16px; padding: 5px 12px; border-radius: 4px; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.portfolio-featured { right: 16px; background: var(--brand); color: var(--dark); }
.portfolio-nda { left: 16px; background: rgba(0,0,0,0.7); color: var(--light); }
.portfolio-content { padding: 28px; }
.portfolio-type { font-size: 11px; font-weight: 600; color: var(--brand); text-transform: uppercase; letter-spacing: 0.1em; }
.portfolio-client { font-size: 22px; font-weight: 600; color: var(--light); margin: 8px 0 4px; }
.portfolio-location { font-size: 13px; color: var(--light-subtle); margin-bottom: 16px; }
.portfolio-brief { font-size: 14px; color: var(--light-muted); line-height: 1.6; margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.portfolio-tech { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.portfolio-tech span { font-size: 11px; color: var(--light-subtle); background: rgba(255,255,255,0.05); padding: 4px 10px; border-radius: 4px; }
.portfolio-view { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--brand); font-weight: 500; transition: gap 0.3s var(--ease-out); }
.portfolio-card:hover .portfolio-view { gap: 12px; }

@media (max-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .portfolio-grid { grid-template-columns: 1fr; } }

/* ===== DEMO ===== */
.demo-container { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; margin-top: 60px; align-items: start; }
.demo-video-wrapper { position: relative; }
.demo-video { position: relative; border-radius: 16px; overflow: hidden; background: var(--dark-card); border: 1px solid var(--border); }
.demo-video-player { display: block; width: 100%; height: auto; }
.demo-buttons { display: flex; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.demo-buttons .btn { flex: 1; min-width: 200px; justify-content: center; }
.demo-modules { background: var(--dark-card); border: 1px solid var(--border); border-radius: 16px; padding: 36px; text-align: left; }
.demo-modules-title { font-size: 20px; font-weight: 600; margin-bottom: 28px; color: var(--light); }
.demo-modules-grid { display: flex; flex-direction: column; gap: 20px; }
.demo-module { display: flex; gap: 16px; align-items: flex-start; }
.demo-module-check { color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.demo-module h4 { font-size: 15px; font-weight: 600; color: var(--light); margin-bottom: 4px; }
.demo-module p { font-size: 13px; color: var(--light-muted); }

@media (max-width: 900px) { .demo-container { grid-template-columns: 1fr; } .demo-buttons { flex-direction: column; } .demo-buttons .btn { min-width: 100%; } }

/* ===== COMPARISON ===== */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1000px; margin: 60px auto 0; }
.compare-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 40px; position: relative; text-align: left; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.compare-beyond { border: 2px solid var(--brand); background: rgba(46,204,113,0.05); }
.compare-badge { position: absolute; top: -14px; right: 24px; background: var(--brand); color: var(--dark); font-size: 12px; font-weight: 600; padding: 6px 16px; border-radius: 100px; }
.compare-label { display: inline-block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; padding: 6px 12px; border-radius: 4px; margin-bottom: 16px; }
.compare-label.diy { background: var(--red-bg); color: var(--red); }
.compare-label.beyond { background: rgba(46, 204, 113, 0.1); color: var(--brand); }
.compare-title { font-size: 24px; font-weight: 700; color: var(--light); margin-bottom: 24px; }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.compare-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--light-muted); }
.compare-icon { flex-shrink: 0; }
.compare-icon.bad { color: var(--red); }
.compare-icon.good { color: var(--brand); }

@media (max-width: 768px) { .compare-grid { grid-template-columns: 1fr; } .compare-card { padding: 28px; } }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 60px auto 0; text-align: left; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 24px 0; background: none; border: none; text-align: left; cursor: pointer; font-size: 17px; font-weight: 500; color: var(--light); transition: color 0.3s; }
.faq-question:hover { color: var(--brand); }
.faq-icon { color: var(--light-subtle); transition: transform 0.3s var(--ease-out); }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out); }
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 24px; }
.faq-answer p { font-size: 15px; color: var(--light-muted); line-height: 1.7; }

/* ===== RESOURCES ===== */
.resources-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
.resource-card { background: var(--dark-card); border: 1px solid var(--border); border-radius: 12px; padding: 32px; text-decoration: none; transition: all 0.4s var(--ease-out); display: block; position: relative; overflow: hidden; cursor: pointer; text-align: left; width: 100%; }
.resource-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(46,204,113,0.1), transparent); opacity: 0; transition: opacity 0.3s; }
.resource-card:hover { border-color: var(--brand); transform: translateY(-6px); }
.resource-card:hover::before { opacity: 1; }
.resource-icon { color: var(--brand); margin-bottom: 20px; }
.resource-card h3 { font-size: 17px; font-weight: 600; color: var(--light); margin-bottom: 8px; position: relative; }
.resource-card p { font-size: 13px; color: var(--light-muted); margin-bottom: 20px; line-height: 1.6; position: relative; }
.resource-download { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--brand); font-weight: 500; position: relative; }
.resource-download svg { width: 14px; height: 14px; }

@media (max-width: 1024px) { .resources-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .resources-grid { grid-template-columns: 1fr; } }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.blog-card { background: var(--dark-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; cursor: pointer; transition: all 0.4s var(--ease-out); display: flex; flex-direction: column; text-align: left; }
.blog-card:hover { border-color: var(--brand); transform: translateY(-6px); }
.blog-card-image { height: 160px; background-size: cover; background-position: center; background-color: var(--dark-lighter); }
.blog-card-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.blog-category { font-size: 11px; font-weight: 600; color: var(--brand); text-transform: uppercase; letter-spacing: 0.08em; }
.blog-read-time { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--light-subtle); }
.blog-read-time svg { width: 14px; height: 14px; }
.blog-card-title { font-size: 18px; font-weight: 600; color: var(--light); margin-bottom: 12px; line-height: 1.3; }
.blog-card-excerpt { font-size: 14px; color: var(--light-muted); line-height: 1.6; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex-grow: 1; }
.blog-card-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--brand); font-weight: 500; }

@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* ===== CONTACT ===== */
.contact-actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* ===== MODALS ===== */
.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.85); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); z-index: 2000; display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; padding: 40px; overflow-y: auto; -webkit-animation: fadeIn 0.3s var(--ease-out); animation: fadeIn 0.3s var(--ease-out); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-content { background: var(--dark-lighter); border: 1px solid var(--border); border-radius: 20px; width: 100%; max-width: 700px; max-height: 90vh; overflow-y: auto; padding: 48px; position: relative; animation: slideUp 0.4s var(--ease-out); }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.modal-large { max-width: 800px; }
.modal-lead { max-width: 440px; text-align: center; }
.modal-email { max-width: 400px; text-align: center; }
.modal-close { position: absolute; top: 20px; right: 20px; background: var(--dark-card); border: 1px solid var(--border); border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--light-muted); transition: all 0.3s var(--ease-out); z-index: 10; }
.modal-close:hover { background: var(--brand); border-color: var(--brand); color: var(--dark); }

/* Lead Capture Modal */
.lead-icon { color: var(--brand); margin-bottom: 20px; }
.lead-icon svg { width: 48px; height: 48px; }
.lead-title { font-size: 24px; font-weight: 700; color: var(--light); margin-bottom: 8px; }
.lead-desc { font-size: 15px; color: var(--light-muted); margin-bottom: 24px; }
.lead-form { display: flex; flex-direction: column; gap: 16px; }
.lead-form input[type="text"], .lead-form input[type="email"] { width: 100%; background: var(--dark-card); border: 1px solid var(--border); border-radius: 8px; padding: 14px 16px; font-size: 14px; color: var(--light); outline: none; transition: border-color 0.3s; }
.lead-form input:focus { border-color: var(--brand); }
.lead-form input::placeholder { color: var(--light-subtle); }
.captcha-row { display: flex; gap: 12px; align-items: center; background: var(--dark-card); border: 1px solid var(--border); border-radius: 8px; padding: 12px 16px; }
.captcha-row.captcha-center { justify-content: center; }
.captcha-question { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--light-muted); white-space: nowrap; }
.captcha-question svg { width: 16px; height: 16px; color: var(--brand); }
.captcha-input { width: 80px; background: var(--dark); border: 1px solid var(--border); border-radius: 6px; padding: 8px 12px; font-size: 14px; color: var(--light); text-align: center; outline: none; }
.captcha-input:focus { border-color: var(--brand); }
.lead-error { color: var(--red); font-size: 13px; margin: 0; }
.lead-privacy { font-size: 12px; color: var(--light-subtle); margin-top: 16px; }
.email-revealed { display: block; font-size: 20px; font-weight: 600; color: var(--brand); margin: 16px 0; text-decoration: none; }
.email-revealed:hover { text-decoration: underline; }

/* Case Study Modal */
.cs-modal-image { height: 240px; background-size: cover; background-position: center top; background-color: var(--dark-card); margin: -48px -48px 32px -48px; border-radius: 20px 20px 0 0; }

/* Case Study Image with Enlarge */
.cs-modal-image-wrapper { position: relative; margin: -48px -48px 32px -48px; }
.cs-modal-image-wrapper .cs-modal-image { margin: 0; }
.cs-modal-enlarge { position: absolute; bottom: 16px; right: 16px; display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; gap: 8px; padding: 10px 16px; background: rgba(0,0,0,0.7); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; color: #fff; font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.3s var(--ease-out); -webkit-appearance: none; appearance: none; }
.cs-modal-enlarge svg { width: 16px; height: 16px; }
.cs-modal-enlarge:hover { background: rgba(46,204,113,0.9); border-color: var(--brand); color: #000; }

/* Image Lightbox */
.image-lightbox { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.95); z-index: 3000; display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; padding: 40px; -webkit-animation: fadeIn 0.3s var(--ease-out); animation: fadeIn 0.3s var(--ease-out); cursor: zoom-out; }
.lightbox-close { position: absolute; top: 20px; right: 20px; width: 48px; height: 48px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; color: #fff; font-size: 24px; cursor: pointer; display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; transition: all 0.3s var(--ease-out); z-index: 10; -webkit-appearance: none; appearance: none; }
.lightbox-close:hover { background: var(--brand); border-color: var(--brand); color: #000; }
.lightbox-close svg { width: 24px; height: 24px; }
.lightbox-image { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); -webkit-animation: slideUp 0.4s var(--ease-out); animation: slideUp 0.4s var(--ease-out); }
.cs-modal-header { margin-bottom: 24px; text-align: left; }
.cs-modal-type { font-size: 11px; font-weight: 600; color: var(--brand); text-transform: uppercase; letter-spacing: 0.1em; }
.cs-modal-client { font-size: 32px; font-weight: 700; color: var(--light); margin: 8px 0 4px; }
.cs-modal-location { font-size: 14px; color: var(--light-subtle); }
.cs-modal-headline { font-size: 20px; font-weight: 600; color: var(--light); margin-bottom: 20px; line-height: 1.4; text-align: left; }
.cs-modal-desc { font-size: 15px; color: var(--light-muted); line-height: 1.7; margin-bottom: 32px; white-space: pre-line; text-align: left; }
.cs-modal-section { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border); text-align: left; }
.cs-modal-section h4 { font-size: 16px; font-weight: 600; color: var(--brand); margin-bottom: 16px; }
.cs-modal-section ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.cs-modal-section li { font-size: 14px; color: var(--light-muted); padding-left: 20px; position: relative; }
.cs-modal-section li::before { content: '→'; position: absolute; left: 0; color: var(--brand); }
.cs-modal-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 16px; }
.cs-modal-metric { text-align: center; }
.metric-value { display: block; font-size: 24px; font-weight: 700; color: var(--brand); }
.metric-label { font-size: 11px; color: var(--light-subtle); text-transform: uppercase; }
.cs-modal-tech { margin-bottom: 24px; text-align: left; }
.cs-modal-tech h4 { font-size: 14px; font-weight: 600; color: var(--light); margin-bottom: 12px; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-tags span { font-size: 12px; color: var(--light-muted); background: rgba(255,255,255,0.05); padding: 6px 14px; border-radius: 100px; }
.cs-modal-links { display: flex; gap: 12px; flex-wrap: wrap; }

/* Blog Modal */
.blog-modal-image { height: 200px; background-size: cover; background-position: center; background-color: var(--dark-card); margin: -48px -48px 32px -48px; border-radius: 20px 20px 0 0; }
.blog-modal-header { display: flex; gap: 16px; margin-bottom: 16px; }
.blog-modal-title { font-size: 28px; font-weight: 700; color: var(--light); margin-bottom: 24px; line-height: 1.3; text-align: left; }
.blog-modal-content { margin-bottom: 32px; text-align: left; }
.blog-modal-content h3 { font-size: 18px; font-weight: 600; color: var(--light); margin: 24px 0 12px; }
.blog-modal-content p { font-size: 15px; color: var(--light-muted); line-height: 1.8; margin-bottom: 16px; }
.blog-modal-content ul { margin: 16px 0; padding-left: 20px; }
.blog-modal-content li { font-size: 14px; color: var(--light-muted); margin-bottom: 8px; }
.blog-modal-cta { text-align: center; padding-top: 24px; border-top: 1px solid var(--border); }
.blog-modal-cta p { margin-bottom: 16px; color: var(--light-muted); }

@media (max-width: 600px) { .modal-overlay { padding: 20px; } .modal-content { padding: 32px 24px; } .cs-modal-client { font-size: 24px; } .cs-modal-metrics { grid-template-columns: repeat(2, 1fr); } .cs-modal-image, .blog-modal-image { margin: -32px -24px 24px -24px; height: 180px; } .cs-modal-image-wrapper { margin: -32px -24px 24px -24px; } .cs-modal-image-wrapper .cs-modal-image { margin: 0; height: 180px; } .cs-modal-enlarge { bottom: 12px; right: 12px; padding: 8px 12px; font-size: 12px; } .lightbox-image { max-width: 95vw; max-height: 80vh; } }

/* ===== CHAT WIDGET ===== */
.chat-toggle { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--brand-dark)); border: none; color: var(--dark); cursor: pointer; z-index: 1000; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 32px rgba(46,204,113,0.3); transition: all 0.3s var(--ease-out); }
.chat-toggle:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(46,204,113,0.4); }
.chat-toggle svg { width: 26px; height: 26px; }
.chat-widget { position: fixed; bottom: 100px; right: 24px; width: 380px; height: 520px; background: var(--dark-lighter); border: 1px solid var(--border); border-radius: 20px; z-index: 1001; display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.5); animation: slideUp 0.4s var(--ease-out); }
.chat-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid var(--border); background: var(--dark-card); }
.chat-header-info { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--light); }
.chat-status { width: 10px; height: 10px; background: var(--brand); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.7; transform: scale(0.9); } }
.chat-close { background: none; border: none; color: var(--light-muted); cursor: pointer; padding: 4px; transition: color 0.3s; }
.chat-close:hover { color: var(--light); }
.chat-messages { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.chat-message { display: flex; }
.chat-message.user { justify-content: flex-end; }
.chat-bubble { max-width: 85%; padding: 12px 16px; border-radius: 16px; font-size: 14px; line-height: 1.5; }
.chat-bubble.user { background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: var(--dark); border-bottom-right-radius: 4px; }
.chat-bubble.assistant { background: var(--dark-card); color: var(--light); border: 1px solid var(--border); border-bottom-left-radius: 4px; }
.chat-loading { display: flex; gap: 6px; padding: 12px 16px; }
.chat-loading .dot { width: 8px; height: 8px; background: var(--light-subtle); border-radius: 50%; animation: chatPulse 1.2s infinite; }
.chat-loading .dot:nth-child(2) { animation-delay: 0.2s; }
.chat-loading .dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes chatPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }
.quick-replies { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 20px 16px; }
.quick-reply { background: var(--dark-card); border: 1px solid var(--border); border-radius: 100px; padding: 8px 14px; font-size: 12px; color: var(--light-muted); cursor: pointer; transition: all 0.3s var(--ease-out); }
.quick-reply:hover { border-color: var(--brand); color: var(--brand); }
.chat-input-area { padding: 16px 20px; border-top: 1px solid var(--border); background: var(--dark-card); }
.chat-input-row { display: flex; gap: 10px; }
.chat-input { flex: 1; background: var(--dark); border: 1px solid var(--border); border-radius: 100px; padding: 12px 20px; font-size: 14px; color: var(--light); outline: none; transition: border-color 0.3s; }
.chat-input::placeholder { color: var(--light-subtle); }
.chat-input:focus { border-color: var(--brand); }
.chat-send { width: 44px; height: 44px; border-radius: 50%; background: var(--brand); border: none; color: var(--dark); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s var(--ease-out); }
.chat-send:hover { background: var(--brand-light); transform: scale(1.05); }
.chat-send:disabled { opacity: 0.5; cursor: not-allowed; }

@media (max-width: 480px) { .chat-widget { width: calc(100vw - 48px); right: 24px; height: 460px; } .chat-toggle { bottom: 20px; right: 20px; width: 56px; height: 56px; } }

/* ===== FLOATING CHAT (Landing Pages) ===== */
.floating-chat { position: fixed; bottom: 24px; right: 24px; z-index: 9999; }
.chat-toggle-btn { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--brand-dark)); border: none; color: var(--dark); cursor: pointer; display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; box-shadow: 0 8px 32px rgba(46,204,113,0.3); transition: all 0.3s var(--ease-out); -webkit-appearance: none; appearance: none; }
.chat-toggle-btn:hover { -webkit-transform: scale(1.1); transform: scale(1.1); box-shadow: 0 12px 40px rgba(46,204,113,0.4); }
.chat-toggle-btn svg { width: 26px; height: 26px; }
.chat-panel { position: absolute; bottom: 76px; right: 0; width: 280px; background: var(--dark-lighter); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.5); opacity: 0; visibility: hidden; -webkit-transform: translateY(20px); transform: translateY(20px); transition: all 0.3s var(--ease-out); }
.chat-panel.open { opacity: 1; visibility: visible; -webkit-transform: translateY(0); transform: translateY(0); }
.chat-header { padding: 20px; background: var(--dark-card); border-bottom: 1px solid var(--border); }
.chat-header h4 { font-size: 16px; font-weight: 600; color: var(--light); margin: 0 0 4px 0; }
.chat-header p { font-size: 13px; color: var(--light-muted); margin: 0; }
.chat-options { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.chat-option { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--dark-card); border: 1px solid var(--border); border-radius: 10px; color: var(--light); text-decoration: none; font-size: 14px; transition: all 0.3s var(--ease-out); }
.chat-option:hover { border-color: var(--brand); background: rgba(46,204,113,0.05); }
.chat-option svg { color: var(--brand); flex-shrink: 0; }
@media (max-width: 480px) { .chat-panel { width: calc(100vw - 48px); right: -12px; } .chat-toggle-btn { width: 56px; height: 56px; } }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 48px; max-width: 900px; margin-left: auto; margin-right: auto; }
.testimonial-card { background: var(--dark-card); border: 1px solid var(--border); border-radius: 16px; padding: 32px; text-align: left; }
.testimonial-rating { color: #f1c40f; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 16px; color: var(--light-muted); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--brand); color: var(--dark); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 16px; }
.testimonial-info { display: flex; flex-direction: column; }
.testimonial-info strong { color: var(--light); font-size: 15px; }
.testimonial-info span { color: var(--light-subtle); font-size: 13px; }

@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } .testimonial-card { padding: 24px; } }

/* ===== SECTION DIVIDER ===== */
.section-divider { padding: 0 24px; background: var(--dark-lighter); }
.divider-line { max-width: 1200px; margin: 0 auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(46,204,113,0.3) 20%, rgba(46,204,113,0.5) 50%, rgba(46,204,113,0.3) 80%, transparent); position: relative; }
.divider-line::before { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 12px; height: 12px; background: var(--brand); border-radius: 50%; box-shadow: 0 0 20px rgba(46,204,113,0.5); }

/* ===== PRICING CALCULATOR (Award-Winning Design) ===== */
.calc-header { text-align: center; margin-bottom: 48px; }
.calc-header .section-desc { max-width: 600px; margin-left: auto; margin-right: auto; }

.calc-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 32px; }
.calc-tab { display: flex; align-items: center; gap: 8px; padding: 14px 28px; background: var(--dark-card); border: 1px solid var(--border); border-radius: 100px; color: var(--light-muted); font-size: 15px; font-weight: 500; cursor: pointer; transition: all 0.3s var(--ease-out); }
.calc-tab svg { width: 18px; height: 18px; }
.calc-tab:hover { border-color: var(--brand); color: var(--light); }
.calc-tab.active { background: var(--brand); border-color: var(--brand); color: var(--dark); }
.calc-tab.active svg { color: var(--dark); }

.calc-container { max-width: 1100px; margin: 0 auto; }
.calc-panel { display: none; }
.calc-panel.active { display: block; animation: fadeIn 0.4s var(--ease-out); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

.calc-inputs { display: flex; flex-direction: column; gap: 32px; }
.calc-section h3 { font-size: 14px; font-weight: 600; color: var(--light-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }

.calc-options { display: flex; flex-direction: column; gap: 12px; }
.calc-option { display: grid; grid-template-columns: auto 1fr auto; gap: 8px 16px; align-items: center; padding: 20px 24px; background: var(--dark-card); border: 2px solid var(--border); border-radius: 12px; cursor: pointer; transition: all 0.3s var(--ease-out); text-align: left; }
.calc-option:hover { border-color: var(--border-hover); }
.calc-option.selected { border-color: var(--brand); background: rgba(46, 204, 113, 0.05); }
.calc-option-label { font-size: 18px; font-weight: 600; color: var(--light); grid-column: 1; }
.calc-option-desc { font-size: 14px; color: var(--light-muted); grid-column: 2; }
.calc-option-price { font-size: 16px; font-weight: 600; color: var(--brand); grid-column: 3; }
.calc-option.selected .calc-option-label { color: var(--brand); }

.calc-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.calc-feature { display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: var(--dark-card); border: 1px solid var(--border); border-radius: 10px; cursor: pointer; transition: all 0.3s var(--ease-out); }
.calc-feature:hover { border-color: var(--border-hover); }
.calc-feature.selected { border-color: var(--brand); background: rgba(46, 204, 113, 0.05); }
.calc-feature input { display: none; }
.calc-feature-check { width: 22px; height: 22px; border: 2px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; flex-shrink: 0; }
.calc-feature-check svg { width: 14px; height: 14px; color: transparent; }
.calc-feature.selected .calc-feature-check { background: var(--brand); border-color: var(--brand); }
.calc-feature.selected .calc-feature-check svg { color: var(--dark); }
.calc-feature-name { flex: 1; font-size: 14px; color: var(--light); }
.calc-feature-price { font-size: 13px; color: var(--brand); font-weight: 500; }

.calc-timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.calc-timeline-opt { padding: 20px 16px; background: var(--dark-card); border: 2px solid var(--border); border-radius: 12px; cursor: pointer; transition: all 0.3s var(--ease-out); text-align: center; }
.calc-timeline-opt:hover { border-color: var(--border-hover); }
.calc-timeline-opt.selected { border-color: var(--brand); background: rgba(46, 204, 113, 0.05); }
.calc-timeline-label { display: block; font-size: 16px; font-weight: 600; color: var(--light); margin-bottom: 4px; }
.calc-timeline-time { display: block; font-size: 13px; color: var(--light-muted); margin-bottom: 8px; }
.calc-timeline-mod { display: inline-block; padding: 4px 10px; background: rgba(46, 204, 113, 0.1); border-radius: 20px; font-size: 12px; font-weight: 500; color: var(--brand); }
.calc-timeline-opt.selected .calc-timeline-label { color: var(--brand); }

.calc-results-card { background: linear-gradient(135deg, var(--dark-card) 0%, rgba(46, 204, 113, 0.03) 100%); border: 1px solid var(--border); border-radius: 24px; padding: 40px; position: sticky; top: 120px; }
.calc-results-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.calc-results-icon { color: var(--brand); }
.calc-results-icon svg { width: 28px; height: 28px; }
.calc-results-header h4 { font-size: 18px; font-weight: 600; color: var(--light); margin: 0; }

.calc-price-display { display: flex; align-items: baseline; justify-content: center; margin-bottom: 8px; }
.calc-price-currency { font-size: 32px; font-weight: 600; color: var(--brand); }
.calc-price-amount { font-size: 72px; font-weight: 700; color: var(--brand); line-height: 1; letter-spacing: -0.03em; }
.calc-price-suffix { font-size: 32px; font-weight: 600; color: var(--brand); }

.calc-timeline-display { text-align: center; font-size: 16px; color: var(--light-muted); margin-bottom: 32px; }

.calc-breakdown { border-top: 1px solid var(--border); padding-top: 24px; margin-bottom: 24px; }
.calc-breakdown-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.calc-breakdown-row span:first-child { color: var(--light-muted); }
.calc-breakdown-row span:last-child { color: var(--light); font-weight: 500; }

.calc-includes { margin-bottom: 32px; }
.calc-includes h5 { font-size: 12px; font-weight: 600; color: var(--light-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.calc-includes ul { list-style: none; padding: 0; margin: 0; }
.calc-includes li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--light); }
.calc-includes li svg { width: 18px; height: 18px; color: var(--brand); flex-shrink: 0; }

.calc-cta { width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; }
.calc-note { text-align: center; font-size: 13px; color: var(--light-subtle); margin-top: 12px; }

.calc-slider-group { margin-bottom: 24px; }
.calc-slider-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.calc-slider-header label { font-size: 15px; color: var(--light); }
.calc-slider-value { font-size: 18px; font-weight: 600; color: var(--brand); }
.calc-slider { width: 100%; height: 8px; border-radius: 4px; background: var(--border); appearance: none; cursor: pointer; }
.calc-slider::-webkit-slider-thumb { appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--brand); cursor: pointer; box-shadow: 0 2px 8px rgba(46, 204, 113, 0.3); }
.calc-slider::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: var(--brand); cursor: pointer; border: none; }
.calc-slider-labels { display: flex; justify-content: space-between; margin-top: 8px; font-size: 12px; color: var(--light-subtle); }

.calc-assumptions { display: flex; flex-direction: column; gap: 12px; padding: 20px; background: var(--dark-card); border: 1px solid var(--border); border-radius: 12px; }
.calc-assumption { display: flex; justify-content: space-between; font-size: 14px; }
.calc-assumption-label { color: var(--light-muted); }
.calc-assumption-value { color: var(--light); font-weight: 500; }

.calc-results-card.roi { padding: 32px; }
.calc-roi-comparison { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: center; margin-bottom: 32px; }
.calc-roi-option { padding: 24px 20px; border-radius: 16px; text-align: center; }
.calc-roi-option.diy { background: rgba(231, 76, 60, 0.1); border: 1px solid rgba(231, 76, 60, 0.3); }
.calc-roi-option.brx { background: rgba(46, 204, 113, 0.1); border: 2px solid var(--brand); }
.calc-roi-label { display: block; font-size: 12px; font-weight: 600; color: var(--light-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.calc-roi-price { display: block; font-size: 28px; font-weight: 700; margin-bottom: 4px; }
.calc-roi-option.diy .calc-roi-price { color: var(--red); }
.calc-roi-option.brx .calc-roi-price { color: var(--brand); }
.calc-roi-time { font-size: 14px; color: var(--light-muted); }
.calc-roi-vs { font-size: 14px; font-weight: 600; color: var(--light-subtle); }

.calc-roi-savings { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.calc-roi-stat { text-align: center; padding: 20px 16px; background: var(--dark-card); border: 1px solid var(--border); border-radius: 12px; }
.calc-roi-stat.highlight { background: rgba(46, 204, 113, 0.1); border-color: var(--brand); }
.calc-roi-stat-value { display: block; font-size: 24px; font-weight: 700; color: var(--brand); margin-bottom: 4px; }
.calc-roi-stat.highlight .calc-roi-stat-value { font-size: 28px; }
.calc-roi-stat-label { font-size: 12px; color: var(--light-muted); text-transform: uppercase; letter-spacing: 0.05em; }

.calc-roi-benefits { margin-bottom: 28px; }
.calc-roi-benefits h5 { font-size: 12px; font-weight: 600; color: var(--light-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.calc-roi-benefits ul { list-style: none; padding: 0; margin: 0; }
.calc-roi-benefits li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--light-muted); }
.calc-roi-benefits li svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }

@media (max-width: 1024px) {
  .calc-grid { grid-template-columns: 1fr; }
  .calc-results-card { position: static; margin-top: 32px; }
}

@media (max-width: 768px) {
  .calc-tabs { flex-direction: column; }
  .calc-tab { justify-content: center; }
  .calc-features { grid-template-columns: 1fr; }
  .calc-timeline { grid-template-columns: 1fr; }
  .calc-option { grid-template-columns: 1fr; gap: 4px; }
  .calc-option-price { grid-column: 1; }
  .calc-price-amount { font-size: 56px; }
  .calc-roi-comparison { grid-template-columns: 1fr; }
  .calc-roi-vs { display: none; }
  .calc-roi-savings { grid-template-columns: 1fr; }
}

/* ===== ENTERPRISE LEAD CAPTURE ===== */
.enterprise-lead-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.enterprise-lead-content { }
.enterprise-lead-content .section-title-large { max-width: 500px; }
.enterprise-lead-content .section-desc { max-width: 460px; }

.enterprise-value-props { display: flex; flex-direction: column; gap: 24px; margin-top: 48px; }
.enterprise-value-item { display: flex; gap: 16px; align-items: flex-start; }
.enterprise-value-icon { width: 48px; height: 48px; background: rgba(46, 204, 113, 0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--brand); }
.enterprise-value-icon svg { width: 24px; height: 24px; }
.enterprise-value-text h4 { font-size: 16px; font-weight: 600; color: var(--light); margin: 0 0 4px 0; }
.enterprise-value-text p { font-size: 14px; color: var(--light-muted); margin: 0; }

.enterprise-trust { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.enterprise-trust p { font-size: 13px; color: var(--light-subtle); margin-bottom: 16px; }
.enterprise-trust-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.enterprise-trust-badges span { padding: 6px 14px; background: rgba(46, 204, 113, 0.1); border: 1px solid rgba(46, 204, 113, 0.2); border-radius: 20px; font-size: 12px; font-weight: 500; color: var(--brand); }

.enterprise-lead-form-wrapper { background: linear-gradient(135deg, var(--dark-card) 0%, rgba(46, 204, 113, 0.02) 100%); border: 1px solid var(--border); border-radius: 24px; padding: 40px; }
.enterprise-lead-form h3 { font-size: 22px; font-weight: 600; color: var(--light); margin: 0 0 8px 0; }
.enterprise-lead-form > p { font-size: 14px; color: var(--light-muted); margin: 0 0 32px 0; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--light-muted); }
.form-group input, .form-group select, .form-group textarea { background: var(--dark); border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; font-size: 15px; color: var(--light); outline: none; transition: all 0.3s var(--ease-out); font-family: inherit; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--light-subtle); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--brand); }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-group textarea { resize: vertical; min-height: 80px; }

.form-captcha { display: flex; flex-direction: column; gap: 8px; margin: 20px 0 24px; padding: 16px; background: rgba(46, 204, 113, 0.05); border: 1px solid rgba(46, 204, 113, 0.1); border-radius: 10px; }
.form-captcha label { font-size: 14px; font-weight: 500; color: var(--light); }
.form-captcha input { background: var(--dark); border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; font-size: 15px; color: var(--light); outline: none; width: 120px; }

.form-status { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: 14px; }
.form-status.success { background: rgba(46, 204, 113, 0.1); border: 1px solid rgba(46, 204, 113, 0.3); color: var(--brand); }
.form-status.error { background: rgba(231, 76, 60, 0.1); border: 1px solid rgba(231, 76, 60, 0.3); color: var(--red); }
.form-status svg { width: 20px; height: 20px; flex-shrink: 0; }

.form-submit { width: 100%; justify-content: center; padding: 16px 32px; font-size: 16px; }
.form-note { text-align: center; font-size: 13px; color: var(--light-subtle); margin-top: 16px; }
.form-note a { color: var(--brand); text-decoration: none; }
.form-note a:hover { text-decoration: underline; }

@media (max-width: 1024px) {
  .enterprise-lead-wrapper { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .enterprise-lead-form-wrapper { padding: 28px 24px; }
}

/* ===== COMPARE LINKS ===== */
.compare-links { margin-top: 40px; font-size: 14px; color: var(--light-subtle); }
.compare-links a { color: var(--brand); text-decoration: none; transition: all 0.3s var(--ease-out); }
.compare-links a:hover { text-decoration: underline; }
.section-light .compare-links { color: var(--light-subtle); }
.section-light .compare-links a { color: var(--brand); }

/* ===== HOW IT WORKS DIAGRAM ===== */
.hiw-diagram { background: var(--dark); border: 1px solid var(--border); border-radius: 24px; padding: 48px; margin-top: 48px; max-width: 900px; margin-left: auto; margin-right: auto; display: block; }
.hiw-top-row { display: -webkit-box; display: -ms-flexbox; display: flex; flex-wrap: wrap; gap: 32px; justify-content: center; }
.hiw-top-row > * { flex: 1 1 300px; max-width: 400px; min-width: 250px; }
.hiw-box { background-color: rgba(46, 204, 113, 0.05); border: 2px solid rgba(46, 204, 113, 0.3); border-radius: 16px; padding: 32px; text-align: center; box-sizing: border-box; }
.hiw-box h3 { font-size: 20px; font-weight: 700; color: #ffffff; margin: 0 0 8px 0; }
.hiw-box p { font-size: 14px; color: rgba(255,255,255,0.7); margin: 0; }
.hiw-app { border-color: #2ecc71; background-color: rgba(46, 204, 113, 0.1); }
.hiw-box-icon { color: #2ecc71; margin-bottom: 16px; }
.hiw-box-icon svg { width: 40px; height: 40px; }
.hiw-infra { border-style: dashed; }
.hiw-connectors { display: -webkit-box; display: -ms-flexbox; display: flex; justify-content: space-around; padding: 0 100px; height: 40px; }
.hiw-line { width: 2px; height: 40px; background-image: linear-gradient(to bottom, rgba(255,255,255,0.4) 0, rgba(255,255,255,0.4) 6px, transparent 6px, transparent 12px); background-size: 2px 12px; background-repeat: repeat-y; }
.hiw-bottom { margin-top: 0; }
.hiw-compliance { background-color: rgba(46, 204, 113, 0.08); border-color: #2ecc71; }
.hiw-compliance h3 { color: #2ecc71; font-size: 22px; margin: 0 0 20px 0; }
.hiw-badges { display: -webkit-box; display: -ms-flexbox; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.hiw-badge { display: inline-block; padding: 10px 20px; background-color: rgba(46, 204, 113, 0.15); border: 1px solid rgba(46, 204, 113, 0.4); border-radius: 50px; font-size: 14px; font-weight: 500; color: #2ecc71; text-decoration: none; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; transition: all 0.3s ease; }
.hiw-badge:hover { background-color: #2ecc71; color: #0a0a0a; -webkit-transform: translateY(-2px); -moz-transform: translateY(-2px); transform: translateY(-2px); }

@media (max-width: 768px) {
  .hiw-diagram { padding: 24px; }
  .hiw-top-row { flex-direction: column; gap: 20px; }
  .hiw-top-row > * { flex: 1 1 auto; max-width: 100%; min-width: auto; }
  .hiw-box { padding: 24px; }
  .hiw-connectors { padding: 0 40px; height: 30px; }
  .hiw-line { height: 30px; }
  .hiw-badges { gap: 8px; }
  .hiw-badge { padding: 8px 16px; font-size: 12px; }
}

@media (max-width: 480px) {
  .hiw-connectors { display: none; }
  .hiw-bottom { margin-top: 16px; }
  .hiw-badge { padding: 8px 12px; font-size: 11px; }
}

/* ===== FOOTER ===== */
.footer { background: var(--dark); border-top: 1px solid var(--border); padding: 80px 60px 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-logo { display: flex; align-items: center; gap: 12px; color: var(--light); text-decoration: none; font-weight: 600; font-size: 18px; margin-bottom: 16px; }
.footer-logo svg { color: var(--brand); }
.footer-brand p { font-size: 14px; color: var(--light-muted); margin-bottom: 8px; }
.footer-parent a { color: var(--brand); text-decoration: none; }
.footer-col h4 { font-size: 12px; font-weight: 600; color: var(--light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; }
.footer-col button, .footer-col a { display: block; background: none; border: none; color: var(--light-muted); font-size: 14px; text-decoration: none; margin-bottom: 12px; cursor: pointer; transition: color 0.3s var(--ease-out); text-align: left; }
.footer-col button:hover, .footer-col a:hover { color: var(--brand); }
.footer-email-btn { display: inline-flex !important; align-items: center; gap: 8px; }
.footer-email-btn svg { width: 16px; height: 16px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 40px; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 13px; color: var(--light-subtle); }
.footer-certs { display: flex; gap: 24px; }
.footer-certs span { font-size: 11px; color: var(--light-subtle); text-transform: uppercase; letter-spacing: 0.08em; }

@media (max-width: 1200px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; } }
@media (max-width: 900px) { .footer { padding: 60px 24px 40px; } .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; text-align: center; } .footer-brand { text-align: center; } .footer-logo { justify-content: center; } .footer-col { text-align: center; display: flex; flex-direction: column; align-items: center; } .footer-col button, .footer-col a { display: inline-block; text-align: center !important; width: auto; } .footer-email-btn { justify-content: center; } .footer-bottom { flex-direction: column; gap: 20px; text-align: center; } .footer-certs { flex-wrap: wrap; justify-content: center; } }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--light-subtle); }
