/*
Theme Name:   Astra Child — PulseXDR
Theme URI:    https://pulsexdr.com
Description:  Custom Astra child theme for PulseXDR managed IT security
Author:       WP Factory
Template:     astra
Version:      1.0.0
Text Domain:  astra-child-pulsexdr
*/

/* =========================================================
   GOOGLE FONTS
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Liberation+Mono:wght@400;700&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* =========================================================
   CSS VARIABLES — DESIGN TOKENS
   ========================================================= */
:root {
  --red:           #E41E20;
  --red-glow:      rgba(228, 30, 32, 0.3);
  --red-dim:       rgba(228, 30, 32, 0.08);
  --bg:            #0A0A0A;
  --bg2:           #111111;
  --bg3:           #1A1A1A;
  --bg4:           #222222;
  --surface:       #161616;
  --border:        #2A2A2A;
  --border-light:  #333333;
  --text:          #E8E8E8;
  --text-dim:      #888888;
  --text-muted:    #555555;
  --white:         #FFFFFF;
  --font-display:  'Poppins', sans-serif;
  --font-mono:     'Liberation Mono', monospace;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after {
  box-sizing: border-box;
}

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

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

::selection {
  background: var(--red);
  color: var(--white);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* =========================================================
   LAYOUT UTILITIES
   ========================================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 120px 0; }

/* =========================================================
   TYPOGRAPHY — SECTION LABELS, TITLES, SUBTITLES
   ========================================================= */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 600px;
  font-weight: 300;
}

/* =========================================================
   REVEAL ANIMATIONS (JS adds .visible via IntersectionObserver)
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =========================================================
   ASTRA HEADER OVERRIDES — DARK NAV
   ========================================================= */
#masthead,
.ast-primary-header-bar,
.ast-above-header-bar-wrap,
.ast-below-header-bar-wrap {
  background: transparent !important;
  border-bottom: none !important;
}

/* Scrolled state — applies class via JS in custom.css */
#masthead.pxdr-scrolled {
  background: rgba(10, 10, 10, 0.92) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border) !important;
}

/* Logo text */
.ast-site-name-wrap .site-title a,
.ast-logo-title-wrap .site-title a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--text) !important;
}

/* "XDR" portion — requires WP to render site title as HTML.
   Child theme functions.php filters the_custom_logo() or
   bloginfo output. Fallback CSS targets a <b> or <span> inside. */
.ast-site-name-wrap .site-title a .pxdr-accent,
.ast-logo-title-wrap .site-title a .pxdr-accent {
  color: var(--red);
}

/* Primary nav links */
.main-navigation a,
.ast-main-header-wrap .main-navigation a {
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  color: var(--text-dim) !important;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.main-navigation a:hover,
.ast-main-header-wrap .main-navigation a:hover {
  color: var(--white) !important;
}

/* Nav CTA button — add CSS class "pxdr-nav-cta" to menu item in WP */
.main-navigation .pxdr-nav-cta > a {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 6px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  border: 1px solid var(--red) !important;
  transition: all 0.3s !important;
}

.main-navigation .pxdr-nav-cta > a:hover {
  background: transparent !important;
  color: var(--red) !important;
}

/* Mobile menu overlay */
.ast-mobile-menu-trigger-fill {
  background: transparent;
}

/* =========================================================
   ASTRA FOOTER OVERRIDES
   ========================================================= */
#colophon,
.site-footer {
  background: var(--bg) !important;
  border-top: 1px solid var(--border) !important;
  padding: 48px 0 32px !important;
}

.ast-footer-copyright,
.site-footer .ast-footer-copyright p {
  font-size: 0.8rem !important;
  color: var(--text-muted) !important;
}

.footer-nav-online a {
  font-size: 0.8rem !important;
  color: var(--text-dim) !important;
  transition: color 0.3s !important;
}

.footer-nav-online a:hover {
  color: var(--red) !important;
}

/* =========================================================
   BUTTONS — GLOBAL
   ========================================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid var(--red);
  text-decoration: none;
}

.btn-primary:hover {
  background: transparent;
  color: var(--red);
  box-shadow: 0 0 30px var(--red-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text);
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid var(--border-light);
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--red);
  color: var(--red);
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(228, 30, 32, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(228, 30, 32, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
}

.hero-gradient {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(228, 30, 32, 0.08) 0%, transparent 60%);
  filter: blur(80px);
  animation: pulse-glow 8s ease-in-out infinite;
}

.hero-gradient-2 {
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(228, 30, 32, 0.05) 0%, transparent 60%);
  filter: blur(60px);
  animation: pulse-glow 12s ease-in-out infinite reverse;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.1); }
}

.hero-scanline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(228, 30, 32, 0.3), transparent);
  animation: scanline 6s linear infinite;
}

@keyframes scanline {
  0%   { top: 0;    opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--red-dim);
  border: 1px solid rgba(228, 30, 32, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--red);
  margin-bottom: 32px;
  font-family: var(--font-mono);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: blink-dot 2s ease-in-out infinite;
}

@keyframes blink-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-title .accent { color: var(--red); }

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-stat-value {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--white);
}

.hero-stat-value span { color: var(--red); }

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* =========================================================
   SERVICES / PRICING TIERS
   ========================================================= */
.services { background: var(--bg); }

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.tier-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
}

.tier-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border-light);
  transition: background 0.4s;
}

.tier-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.tier-card.featured {
  border-color: rgba(228, 30, 32, 0.3);
}

.tier-card.featured::before {
  background: var(--red);
}

.tier-card.featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(228, 30, 32, 0.04), transparent 60%);
  pointer-events: none;
}

.tier-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-mono);
}

.tier-1 .tier-badge { background: rgba(100, 100, 100, 0.2); color: var(--text-dim); }
.tier-2 .tier-badge { background: var(--red-dim); color: var(--red); }
.tier-3 .tier-badge { background: rgba(228, 30, 32, 0.15); color: var(--red); }

.tier-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tier-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 24px;
  min-height: 40px;
}

.tier-price {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.tier-price span {
  font-size: 1rem;
  color: var(--text-dim);
  font-weight: 400;
}

.tier-period {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  padding: 0;
}

.tier-features li {
  font-size: 0.88rem;
  color: var(--text-dim);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.tier-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--border-light);
  display: block;
  margin-top: 2px;
}

.tier-card.featured .tier-features li::before {
  border-color: var(--red);
  background: var(--red-dim);
}

.tier-btn {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid var(--border-light);
  color: var(--text);
  text-decoration: none;
}

.tier-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.tier-card.featured .tier-btn {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.tier-card.featured .tier-btn:hover {
  background: transparent;
  color: var(--red);
}

/* =========================================================
   ASSESSMENT SECTION
   ========================================================= */
.assessment { position: relative; overflow: hidden; }

.assessment-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}

.assessment-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.assessment-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(228, 30, 32, 0.06), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.assessment-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.assessment-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
  padding: 0;
}

.assessment-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.assessment-list-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: var(--red-dim);
  border: 1px solid rgba(228, 30, 32, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
}

.assessment-list-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.assessment-list-text p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* Assessment form wrapper */
.assessment-form {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

.assessment-form h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.assessment-form > p {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 24px;
}

/* =========================================================
   CF7 FORM STYLING (shared between assessment + contact)
   ========================================================= */
.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
  border-color: var(--red);
}

.form-group textarea,
.wpcf7-form textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group select option,
.wpcf7-form select option {
  background: var(--bg2);
  color: var(--text);
}

.form-submit,
.wpcf7-form input[type="submit"],
.wpcf7-submit {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-display);
  transition: all 0.3s;
  margin-top: 8px;
}

.form-submit:hover,
.wpcf7-form input[type="submit"]:hover,
.wpcf7-submit:hover {
  background: transparent;
  color: var(--red);
}

/* CF7 response messages */
.wpcf7-response-output {
  margin-top: 16px !important;
  padding: 12px 16px !important;
  border-radius: 8px !important;
  font-size: 0.85rem !important;
  border: 1px solid var(--border) !important;
}

.wpcf7-mail-sent-ok {
  background: rgba(76, 175, 80, 0.1) !important;
  border-color: rgba(76, 175, 80, 0.3) !important;
  color: #4CAF50 !important;
}

.wpcf7-validation-errors,
.wpcf7-spam-blocked {
  background: var(--red-dim) !important;
  border-color: rgba(228, 30, 32, 0.3) !important;
  color: var(--red) !important;
}

.wpcf7-not-valid-tip {
  color: var(--red) !important;
  font-size: 0.75rem !important;
}

/* =========================================================
   TECHNOLOGY / STACK CARDS
   ========================================================= */
.stack { background: var(--bg2); }

.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.stack-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.stack-card:hover {
  border-color: rgba(228, 30, 32, 0.3);
  transform: translateY(-2px);
}

.stack-card:hover .stack-card-icon {
  color: var(--red);
  border-color: rgba(228, 30, 32, 0.3);
}

.stack-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
  transition: all 0.4s;
  color: var(--text-dim);
}

.stack-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.stack-card p {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.stack-card .tool-name {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 64px;
}

.about-text p {
  color: var(--text-dim);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.about-value {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
}

.about-value:hover {
  border-color: rgba(228, 30, 32, 0.3);
}

.about-value h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-value h4 span:first-child {
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.about-value p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.about-visual { position: relative; }

/* =========================================================
   TERMINAL WIDGET — see assets/custom.css for full styles
   (split here so the HTML widget file stays clean)
   ========================================================= */

/* =========================================================
   CONTACT SECTION
   ========================================================= */
.contact { background: var(--bg2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 64px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: var(--red-dim);
  border: 1px solid rgba(228, 30, 32, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
}

.contact-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.contact-item a:hover { color: var(--red); }

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

.contact-form-wrap h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 24px;
}

/* =========================================================
   BACK TO TOP
   ========================================================= */
.pxdr-back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  border: none;
  z-index: 100;
}

.pxdr-back-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.pxdr-back-top:hover {
  box-shadow: 0 0 30px var(--red-glow);
}

/* =========================================================
   ELEMENTOR OVERRIDES — undo Elementor defaults
   ========================================================= */
.elementor-section,
.elementor-container,
.e-container {
  max-width: none !important;
}

.elementor-section.elementor-section-full_width > .elementor-container {
  max-width: none;
}

/* Remove Elementor default padding on full-width sections */
.elementor-section.pxdr-no-pad {
  padding: 0 !important;
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================= */
@media (max-width: 900px) {
  .tiers-grid { grid-template-columns: 1fr; }
  .tier-card.featured { order: -1; }

  .assessment-content { grid-template-columns: 1fr; }
  .assessment-inner { padding: 48px 24px; }

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

  .about-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }

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

  .hero-stats { flex-direction: column; gap: 24px; }
}

@media (max-width: 500px) {
  .stack-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
}
