/* Boom Website Development — orange/red brand, dark tech aesthetic */

:root {
  --orange: #ff6b00;
  --orange-light: #ff9a2e;
  --yellow: #ffc107;
  --red: #e63900;
  --blue: #00a8e8;
  --blue-dim: #0077b6;
  --bg: #0a0c12;
  --bg-elevated: #12151f;
  --bg-card: #1a1e2b;
  --border: #2a3044;
  --text: #eef0f6;
  --text-muted: #949eb5;
  --success: #2ecc71;
  --error: #ff4757;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --font: 'Inter', system-ui, sans-serif;
  --font-display: 'Bebas Neue', 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.skip-link:focus { top: 1rem; }

a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--orange-light); }

.container {
  width: min(1100px, 100% - 2rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 12, 18, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
}

.logo {
  height: 56px;
  width: auto;
  border-radius: 4px;
}

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

.nav a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
}

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

.nav-cta {
  color: #fff !important;
  background: linear-gradient(135deg, var(--orange), var(--red));
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.4);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-banner {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 12, 18, 0.98) 0%,
    rgba(10, 12, 18, 0.6) 50%,
    rgba(10, 12, 18, 0.3) 100%
  );
  display: flex;
  align-items: flex-end;
}

.hero-content { padding: 2.5rem 0 2.5rem; }

.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.08;
  margin: 0 0 0.85rem;
  text-transform: uppercase;
  max-width: 720px;
  background: linear-gradient(135deg, #fff 0%, var(--orange-light) 60%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: 560px;
  font-size: 1.02rem;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  text-decoration: none;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.35);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: 0 6px 28px rgba(255, 107, 0, 0.5);
}

.btn-secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

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

.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; margin-top: auto; }

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Sections */
.section { padding: 4.5rem 0; }

.section-header { margin-bottom: 2.5rem; }

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.4rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.section-intro {
  color: var(--text-muted);
  max-width: 680px;
  margin: 0;
}

.section-intro strong { color: var(--text); }

/* About */
.about { background: var(--bg-elevated); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
}

.about-text p { margin: 0 0 1rem; color: var(--text-muted); }
.about-text strong { color: var(--text); }

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.about-card h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--orange-light);
}

.about-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-card li {
  display: flex;
  flex-direction: column;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.about-card li:last-child { border-bottom: none; }

.about-card li span {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.1rem;
}

/* Services */
.services { background: var(--bg); }

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-top: 3px solid var(--blue);
}

.service-icon {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--orange-light);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.service-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}

.service-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Scope */
.scope { background: var(--bg-elevated); }

.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.scope-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.scope-yes { border-top: 3px solid var(--success); }
.scope-no { border-top: 3px solid var(--error); }

.scope-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.scope-yes .scope-icon { background: rgba(46, 204, 113, 0.15); color: var(--success); }
.scope-no .scope-icon { background: rgba(255, 71, 87, 0.15); color: var(--error); }

.scope-card h3 { margin: 0 0 1rem; font-size: 1.1rem; }

.scope-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.scope-card li { margin-bottom: 0.5rem; }

.scope-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(0, 168, 232, 0.08);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Process */
.process { background: var(--bg); }

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.process-step {
  display: flex;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange), var(--red));
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #fff;
}

.process-step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.process-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Portfolio */
.portfolio { background: var(--bg-elevated); }

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

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.portfolio-featured {
  border-top: 3px solid var(--orange);
}

.portfolio-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--success);
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid var(--success);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  margin-bottom: 0.85rem;
  width: fit-content;
}

.portfolio-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
}

.portfolio-card p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  flex: 1;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.portfolio-tags li {
  font-size: 0.78rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  color: var(--text-muted);
}

.portfolio-card .btn {
  margin-top: auto;
  width: fit-content;
}

/* Pricing */
.pricing { background: var(--bg); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
  margin-bottom: 2.5rem;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), var(--shadow);
  transform: scale(1.02);
}

.price-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-light);
}

.price-market {
  margin: 0 0 0.25rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.price-market s { opacity: 0.7; }

.price-amount {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.price-amount .currency {
  font-size: 1.6rem;
  vertical-align: super;
  color: var(--text-muted);
}

.price-note {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.price-card ul {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
}

.price-card li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  padding-left: 1.4rem;
  position: relative;
}

.price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.pricing-extras {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.pricing-extras h3 {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.extra-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.extra-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.extra-price {
  font-weight: 600;
  font-size: 0.95rem;
}

.extra-price small {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.pricing-disclaimer {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* FAQ */
.faq { background: var(--bg-elevated); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 1.25rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1rem 0;
  list-style: none;
}

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

.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--orange-light);
  font-size: 1.2rem;
  font-weight: 400;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Contact form */
.contact { background: var(--bg); }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  max-width: 720px;
}

.form-section {
  border: none;
  margin: 0 0 2rem;
  padding: 0 0 2rem;
  border-bottom: 1px solid var(--border);
}

.form-section:last-of-type { border-bottom: none; padding-bottom: 0; }

.form-section legend {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-light);
  padding: 0;
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-row.two-col { grid-template-columns: 1fr 1fr; }

.field { display: flex; flex-direction: column; gap: 0.35rem; }

.field label {
  font-size: 0.85rem;
  font-weight: 600;
}

.req { color: var(--orange); }

.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.65rem 0.85rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.15);
}

.field input.invalid,
.field select.invalid,
.field textarea.invalid { border-color: var(--error); }

.form-actions { margin-top: 1.5rem; }

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 1rem 0 0;
  max-width: 480px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-message {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}

.form-message.success {
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid var(--success);
  color: var(--success);
  padding: 1.5rem;
  font-size: 1rem;
}

.form-message.success:not([hidden]) {
  margin-bottom: 1.5rem;
}

.form-message.error {
  background: rgba(255, 71, 87, 0.12);
  border: 1px solid var(--error);
  color: var(--error);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 1.5rem;
  background: var(--bg-elevated);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  height: 52px;
  width: auto;
  border-radius: 4px;
  opacity: 0.9;
}

.footer-info p { margin: 0.15rem 0; font-size: 0.88rem; color: var(--text-muted); }
.footer-info strong { color: var(--text); }

.footer-links {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-links a { font-size: 0.88rem; font-weight: 500; }

.footer-copy {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  opacity: 0.7;
}

/* Mobile */
@media (max-width: 900px) {
  .pricing-grid,
  .services-grid,
  .extras-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .price-featured { transform: none; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    gap: 0.75rem;
  }

  .nav.open { display: flex; }

  .about-grid,
  .scope-grid,
  .process-steps,
  .form-row.two-col {
    grid-template-columns: 1fr;
  }

  .footer-links { margin-left: 0; }

  .contact-form { padding: 1.25rem; }
}
