@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --max-width: 1280px;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --bg-base: #040b14;
  --bg-surface: rgba(9, 18, 32, 0.92);
  --bg-panel: rgba(12, 20, 35, 0.92);
  --bg-light: rgba(255, 255, 255, 0.04);
  --bg-soft: #0c162a;
  --color-primary: #a7e22d;
  --color-secondary: #85d8ff;
  --color-accent: #2ec3a7;
  --color-success: #10b981;
  --color-error: #ef4444;
  --text-default: #f8fafc;
  --text-muted: #a7b1c2;
  --border-color: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.24);
  --shadow-low: 0 16px 40px rgba(0, 0, 0, 0.12);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --transition: all 260ms ease;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background: radial-gradient(circle at top left, rgba(167, 226, 45, 0.08), transparent 25%),
              radial-gradient(circle at bottom right, rgba(133, 216, 255, 0.07), transparent 20%),
              var(--bg-base);
  color: var(--text-default);
}

body {
  margin: 0;
  min-height: 100vh;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.announcement-bar {
  background: rgba(26, 35, 51, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.announcement-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.announcement-link {
  color: var(--color-primary);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(4, 11, 20, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  height: 42px;
  width: auto;
  display: block;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-default);
  cursor: pointer;
}

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

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text-default);
}

.nav-cta {
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: 1px solid rgba(167, 226, 45, 0.22);
  background: rgba(167, 226, 45, 0.11);
  color: var(--color-primary);
  font-weight: 700;
}

.hero-section {
  padding-top: 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 3.5rem;
  align-items: center;
}

.hero-copy {
  max-width: 600px;
}

.eyebrow,
.section-pretitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-copy h1,
.section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 4vw, 4.5rem);
  line-height: 1.02;
  margin: 0;
  letter-spacing: -0.05em;
}

.hero-copy p,
.section-heading p,
.card p,
.testimonial-card p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 46rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2.2rem 0 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #b8ff67 0%, #79e6ff 100%);
  color: #08111b;
  box-shadow: 0 18px 50px rgba(39, 220, 122, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(39, 220, 122, 0.22);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-default);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 1.2rem 1.4rem;
  backdrop-filter: blur(18px);
}

.metric-card strong {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
  color: var(--text-default);
}

.metric-card span {
  color: var(--text-muted);
}

.trust-strip {
  padding: 2rem 0 0;
}

.trust-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 1.6rem 2rem;
}

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

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  color: var(--text-default);
  font-weight: 600;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 3vw, 3.5rem);
  line-height: 1.1;
}

.grid {
  display: grid;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gap-4 {
  gap: 1.75rem;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-low);
  transition: var(--transition);
}

.card:hover,
.card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(167, 226, 45, 0.25);
}

.feature-card .feature-tag,
.solution-card .solution-icon,
.case-card .case-label,
.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-size: 0.8rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(167, 226, 45, 0.14);
  color: var(--color-primary);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.solution-card {
  position: relative;
  overflow: hidden;
}

.solution-icon {
  font-size: 1rem;
}

.case-card,
.testimonial-card,
.process-card {
  background: rgba(255, 255, 255, 0.02);
}

.case-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.case-card h3,
.service-card h3 {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card-dark {
  background: linear-gradient(180deg, rgba(9, 13, 24, 0.95), rgba(16, 23, 40, 0.98));
  border-color: rgba(167, 226, 45, 0.18);
}

.card-light {
  background: rgba(255, 255, 255, 0.05);
}

.card-accent {
  background: linear-gradient(180deg, rgba(42, 165, 139, 0.16), rgba(7, 14, 26, 0.9));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.stat-card {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 2rem;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.85rem;
}

.case-label {
  margin-bottom: 1rem;
}

.testimonial-card {
  padding: 2.5rem;
}

.testimonial-author {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.2rem;
}

.testimonial-author strong {
  font-size: 1rem;
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.process-card {
  padding: 2rem;
}

.process-card span {
  margin-bottom: 1rem;
}

.process-card h3 {
  margin-bottom: 0.9rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-default);
  font-family: var(--font-heading);
  font-size: 1rem;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
  padding: 0 1.5rem;
}

.faq-answer p {
  padding: 0 0 1.5rem;
  margin: 0;
  color: var(--text-muted);
}

.final-cta {
  background: rgba(9, 17, 31, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 36px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 3.5rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer {
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) repeat(3, minmax(180px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  max-width: 36rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.footer-column h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-column a,
.footer-brand a {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding-top: 1.5rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text-default);
  font-weight: 700;
}

.footer-brand-mark {
  width: 36px;
  height: auto;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 7, 18, 0.78);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.open {
  display: flex;
}

.modal-container, .modal-content {
  width: min(100%, 540px);
  background: rgba(10, 16, 28, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 2rem;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-header h2 {
  margin: 0 0 0.5rem;
  font-size: 1.8rem;
}

.modal-header p {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
}

.modal-form, .contact-form {
  display: grid;
  gap: 1rem;
}

.form-row, .form-group {
  display: grid;
  gap: 0.6rem;
}

.form-row label, .form-group label {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.form-control, 
.modal-form input, 
.modal-form textarea, 
.contact-form input, 
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-default);
  padding: 0.95rem 1rem;
}

.form-control:focus, 
.modal-form input:focus, 
.modal-form textarea:focus, 
.contact-form input:focus, 
.contact-form textarea:focus {
  outline: 2px solid rgba(167, 226, 45, 0.35);
  outline-offset: 2px;
}

textarea.form-control, 
.modal-form textarea, 
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.visual-card {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.visual-frame {
  width: min(520px, 100%);
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
}

.visual-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  width: 230px;
  border-radius: 24px;
  background: rgba(15, 25, 42, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.15rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.floating-card-1 {
  top: 18%;
  left: -1rem;
}

.floating-card-2 {
  bottom: 18%;
  right: -1rem;
}

.floating-card p {
  margin: 0 0 0.35rem;
  color: var(--text-muted);
}

.floating-card strong {
  display: block;
  color: var(--text-default);
}

@media (max-width: 1024px) {
  .hero-grid,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .visual-card,
  .cta-panel {
    width: 100%;
  }

  .hero-metrics,
  .grid-3,
  .grid-4,
  .stats-grid,
  .trust-logos {
    grid-template-columns: 1fr;
  }

  .trust-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-inner {
    gap: 1rem;
  }

  .nav-links {
    position: fixed;
    inset: 84px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(4, 11, 20, 0.99);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    gap: 1rem;
    transform: translateY(-120%);
    transition: transform 240ms ease;
    display: none;
  }

  .nav-links.open {
    display: flex;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 1rem 1.25rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
  }

  .hamburger {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .announcement-inner,
  .container {
    width: min(100% - 1.5rem, var(--max-width));
  }

  .hero-copy h1,
  .section-heading h2 {
    font-size: clamp(2.5rem, 6vw, 3.6rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .cta-panel {
    padding: 2rem;
  }

  .metric-card {
    padding: 1.2rem;
  }

  .floating-card {
    width: calc(50% + 2rem);
  }
}

@media (max-width: 560px) {
  .announcement-inner,
  .cta-panel,
  .hero-grid,
  .footer-grid,
  .trust-inner {
    gap: 1rem;
  }

  .hero-copy h1,
  .section-heading h2 {
    font-size: 2.4rem;
  }

  .hero-metrics,
  .trust-logos,
  .grid-2,
  .grid-3,
  .grid-4,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    inset: 84px 0 auto 0;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

