/* ============================================================
   CORCELI SYSTEMS — Shared Styles
   ============================================================ */

:root {
  --yellow: #FAF100;
  --yellow-hover: #E0D900;
  --yellow-glow: rgba(250, 241, 0, 0.35);
  --yellow-dim: rgba(250, 241, 0, 0.08);
  --yellow-subtle: rgba(250, 241, 0, 0.04);
  --bg-primary: #0A0A0A;
  --bg-elevated: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1C1C1C;
  --border-subtle: #1E1E1E;
  --border-medium: #2A2A2A;
  --border-bright: #3A3A3A;
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0A0;
  --text-muted: #666666;
  --green-accent: #4ADE80;
  --red-accent: #F87171;
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --font-ui: 'Inter', sans-serif;
  --nav-height: 70px;
  --max-width: 1280px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--yellow); color: var(--bg-primary); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--yellow);
  color: var(--bg-primary);
  text-align: center;
  padding: 10px 20px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1001;
}
.announcement-bar strong { font-weight: 800; }
.announcement-bar a {
  color: var(--bg-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
  margin-left: 6px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}
.nav-logo img {
  height: 275px;
  width: auto;
  transition: opacity 0.3s ease;
}
.nav-logo:hover img { opacity: 0.8; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}
.nav-links a.active {
  color: var(--yellow);
}
.nav-cta-btn {
  background: var(--yellow);
  color: var(--bg-primary) !important;
  font-weight: 700 !important;
  padding: 8px 20px !important;
}
.nav-cta-btn:hover {
  background: var(--yellow-hover) !important;
  color: var(--bg-primary) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  z-index: 1002;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.section-header { margin-bottom: 50px; }
.section-header.center { text-align: center; }
.section-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-subtitle {
  font-family: var(--font-ui);
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 560px;
  font-weight: 400;
}
.section-header.center .section-subtitle { margin: 0 auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 60px 0 80px;
  background: var(--bg-primary);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(250,241,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250,241,0,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, black 20%, transparent 70%);
}
.hero-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.hero-header h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero-header h1 .text-yellow {
  color: var(--yellow);
  text-shadow: 0 0 40px var(--yellow-glow);
}
.hero-subtitle {
  font-family: var(--font-ui);
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

/* Hero Cards */
.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  position: relative;
  display: flex;
  flex-direction: column;
}
.hero-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hero-card-image {
  height: 220px;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-card-image .card-icon { font-size: 64px; opacity: 0.9; }
.hero-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--yellow);
  color: var(--bg-primary);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
}
.hero-card-badge.green { background: var(--green-accent); }
.hero-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hero-card-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.hero-card-body .card-subtitle {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}
.hero-card-body p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}
.card-btn-primary { background: var(--yellow); color: var(--bg-primary); }
.card-btn-primary:hover { background: var(--yellow-hover); box-shadow: 0 4px 20px var(--yellow-glow); }
.card-btn-outline { background: transparent; color: var(--text-primary); border: 1px solid var(--border-medium); }
.card-btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 28px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon {
  font-size: 28px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow-dim);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.trust-text h4 {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1px;
}
.trust-text p {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

/* ============================================================
   PRICING
   ============================================================ */
.services {
  padding: 60px 40px;
  background: var(--bg-primary);
}
.pricing-card, .process-step { opacity: 1 !important; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 36px 28px 48px;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.pricing-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.pricing-card.featured {
  border-color: var(--yellow);
  background: linear-gradient(180deg, rgba(250,241,0,0.06) 0%, var(--bg-card) 40%);
}
.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--yellow);
  box-shadow: 0 0 20px var(--yellow-glow);
}
.pricing-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--bg-primary);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.pricing-card-icon { font-size: 32px; margin-bottom: 16px; }
.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-amount {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}
.pricing-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
}
.pricing-card .free-tag {
  font-size: 28px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--green-accent);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
  padding: 100px 0;
  background: var(--bg-elevated);
  position: relative;
}
.why-us-content {
  margin-bottom: 60px;
}
.why-us-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color 0.3s ease;
}
.why-item:hover {
  border-color: var(--yellow);
}
.why-number {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--yellow);
  border-radius: var(--radius-sm);
  color: var(--yellow);
  flex-shrink: 0;
}
.why-item h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.why-item p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* Build Showcase */
.build-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.build-card {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.build-card:hover {
  border-color: var(--yellow);
}
.visual-image-box {
  width: 100%;
  overflow: hidden;
}
.visual-image-box img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.build-card:hover .visual-image-box img {
  transform: scale(1.03);
}
.build-specs {
  padding: 16px 20px;
  background: var(--bg-card);
}
.build-specs h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 4px;
}
.build-specs p {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: 100px 0;
  background: var(--bg-primary);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all 0.35s var(--ease-out);
}
.process-step:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
}
.process-step-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--yellow);
  opacity: .8;
  line-height: 1;
  margin-bottom: 12px;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.process-step p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 100px 0;
  background: var(--bg-elevated);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.7;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.3s ease;
}
.stat-card:hover { border-color: var(--yellow); }
.stat-card .stat-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--yellow);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card .stat-label {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 100px 0;
  background: var(--bg-primary);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--yellow); }
.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--yellow);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 22px;
}
.faq-answer p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  font-family: var(--font-ui);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 80px 0;
  background: var(--bg-elevated);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--yellow-dim) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
}
.cta-banner p {
  font-family: var(--font-ui);
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 30px;
  position: relative;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--yellow);
  color: var(--bg-primary);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.cta-btn:hover {
  background: var(--yellow-hover);
  box-shadow: 0 8px 30px var(--yellow-glow);
  transform: translateY(-2px);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 100px 0;
  background: var(--bg-primary);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact-info p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.7;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow-dim);
  border-radius: var(--radius-sm);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item-text {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-secondary);
}
.contact-item-text a {
  color: var(--text-primary);
  transition: color 0.2s ease;
}
.contact-item-text a:hover { color: var(--yellow); }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-ui);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--yellow); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--yellow);
  color: var(--bg-primary);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.form-submit:hover {
  background: var(--yellow-hover);
  box-shadow: 0 4px 20px var(--yellow-glow);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p {
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 300px;
}
.footer-brand img {
  height: 275px;
  margin: -120px 0 -120px 0;
}
.footer-col h5 {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-muted);
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 16px;
  transition: all 0.2s ease;
}
.footer-socials a:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* ============================================================
   PAGE LOADER
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-spinner { width: 60px; height: 60px; position: relative; }
.loader-spinner img { width: 100%; animation: loaderPulse 1.2s ease-in-out infinite; }
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.08); opacity: 1; }
}

/* ============================================================
   PAGE HERO (for sub-pages)
   ============================================================ */
.page-hero {
  padding: 80px 0 60px;
  background: var(--bg-elevated);
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(250,241,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250,241,0,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, black 20%, transparent 70%);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}
.page-hero p {
  font-family: var(--font-ui);
  font-size: 16px;
  color: var(--text-secondary);
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-items { grid-template-columns: repeat(2, 1fr); }
  .build-showcase { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1001;
  }
  .nav-links.active { opacity: 1; pointer-events: all; }
  .nav-links a { font-size: 18px; padding: 12px 24px; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .hero-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .process-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .why-us-items { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .container { padding: 0 20px; }
}
