/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 48px;
  transition: transform 0.2s var(--ease-soft), background 0.2s var(--ease-soft), border-color 0.2s var(--ease-soft), color 0.2s var(--ease-soft);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--bmg-white);
  color: var(--bmg-black);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--bmg-accent-2);
}

.btn-secondary {
  background: transparent;
  color: var(--bmg-white);
  border-color: var(--bmg-line-strong);
}

.btn-secondary:hover {
  border-color: var(--bmg-white);
  background: var(--bmg-panel);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* Glass panel */

.panel {
  background: var(--bmg-panel);
  border: 1px solid var(--bmg-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.panel-strong {
  background: var(--bmg-panel-strong);
}

/* Hero */

.hero {
  padding: var(--space-8) 0 var(--space-9);
}

.hero__content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-8);
  align-items: center;
}

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

.hero__eyebrow {
  margin-bottom: var(--space-4);
}

.hero h1 {
  margin-bottom: var(--space-5);
}

.hero h1 .accent {
  color: var(--bmg-muted);
}

.hero__subtitle {
  font-size: 1.15rem;
  max-width: 480px;
  margin-bottom: var(--space-6);
}

.hero__visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--bmg-line);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: 999px;
  background: rgba(10, 10, 12, 0.55);
  border: 1px solid var(--bmg-line);
  backdrop-filter: blur(12px);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero__badge--one {
  top: var(--space-6);
  left: var(--space-6);
}

.hero__badge--two {
  bottom: var(--space-6);
  right: var(--space-6);
}

/* Trust strip */

.trust-strip {
  padding: var(--space-6) 0;
  border-top: 1px solid var(--bmg-line);
  border-bottom: 1px solid var(--bmg-line);
}

.trust-strip__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-7);
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: space-between;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--bmg-soft);
  font-size: 0.95rem;
  font-weight: 500;
}

.trust-strip__item svg {
  width: 22px;
  height: 22px;
  color: var(--bmg-accent);
}

/* Cards */

.card {
  padding: var(--space-6);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: transform 0.25s var(--ease-soft), border-color 0.25s var(--ease-soft);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--bmg-line-strong);
}

.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--bmg-panel-strong);
  color: var(--bmg-accent);
}

.card__icon svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  margin: 0;
}

.card__links {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-top: var(--space-3);
}

.card__links a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bmg-white);
}

.card__links a svg {
  width: 14px;
  height: 14px;
}

.card__tag {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  border-radius: 999px;
  border: 1px solid var(--bmg-line);
  font-size: 0.75rem;
  color: var(--bmg-muted);
  width: fit-content;
}

/* Process steps */

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

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

@media (max-width: 600px) {
  .process-list {
    grid-template-columns: 1fr;
  }
}

.process-step {
  padding: var(--space-5);
}

.process-step__index {
  font-size: 0.85rem;
  color: var(--bmg-muted);
  margin-bottom: var(--space-3);
  display: block;
}

.process-step h3 {
  margin-bottom: var(--space-2);
  font-size: 1.1rem;
}

/* CTA */

.cta-block {
  padding: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--bmg-panel-strong), var(--bmg-panel));
}

.cta-block__text h2 {
  margin-bottom: var(--space-2);
}

/* FAQ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  border: 1px solid var(--bmg-line);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  list-style: none;
}

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

.faq-item summary .icon-plus {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease-soft);
}

.faq-item[open] summary .icon-plus {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: var(--space-3);
}

/* Forms */

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bmg-soft);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--bmg-line);
  background: var(--bmg-panel);
  min-height: 48px;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--bmg-muted) 50%), linear-gradient(135deg, var(--bmg-muted) 50%, transparent 50%);
  background-position: calc(100% - 20px) center, calc(100% - 15px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--bmg-accent);
}

.form-field .field-error {
  color: var(--bmg-danger);
  font-size: 0.85rem;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.form-consent input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--bmg-accent);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-banner {
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-6);
  font-weight: 600;
}

.form-banner--success {
  background: rgba(200, 215, 255, 0.12);
  border: 1px solid var(--bmg-accent);
  color: var(--bmg-accent);
}

.form-banner--error {
  background: rgba(255, 180, 168, 0.12);
  border: 1px solid var(--bmg-danger);
  color: var(--bmg-danger);
}

/* Contact info list */

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.contact-info-item svg {
  width: 22px;
  height: 22px;
  color: var(--bmg-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Pricing tiers */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

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

.pricing-card {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.pricing-card__range {
  color: var(--bmg-accent);
  font-weight: 600;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  color: var(--bmg-soft);
  font-size: 0.92rem;
}

.pricing-card ul li {
  padding-left: var(--space-4);
  position: relative;
}

.pricing-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bmg-accent);
}

/* Portfolio filters */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
}

.filter-chip {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--bmg-line);
  background: transparent;
  color: var(--bmg-soft);
  font-size: 0.88rem;
  cursor: pointer;
}

.filter-chip.is-active {
  background: var(--bmg-white);
  color: var(--bmg-black);
  border-color: var(--bmg-white);
}

/* Case study */

.case-hero-image,
.concept-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--bmg-line);
}

.case-hero-image img,
.concept-figure img {
  width: 100%;
  height: auto;
}

.screen-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.screen-item {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-5);
  align-items: center;
  padding: var(--space-5);
}

@media (max-width: 720px) {
  .screen-item {
    grid-template-columns: 1fr;
  }
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
