:root {
  --blue: #0878ff;
  --blue-2: #34aaff;
  --dark: #050914;
  --dark-2: #0b1220;
  --white: #ffffff;
  --gray: #f5f7fb;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 24px 70px rgba(5, 9, 20, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(1180px, 92%);
  margin: auto;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  border: 0;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: white;
  box-shadow: 0 16px 36px rgba(8, 120, 255, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(8, 120, 255, 0.38);
}

.btn-secondary {
  background: white;
  color: var(--dark);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(5, 9, 20, 0.12);
}

/* HEADER */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: #000;
  color: white;
  transition: 0.3s ease;
}

.site-header.scrolled {
  padding: 12px 0;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: 360px;
  flex-shrink: 1;
}

.brand img {
  width: 360px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.82;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: #91cdff;
}

.mobile-menu {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 28px;
  font-weight: 900;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 82px;
  left: 4%;
  right: 4%;
  padding: 18px;
  border-radius: 22px;
  background: rgba(5, 9, 20, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 14px 12px;
  color: white;
  font-weight: 800;
  border-radius: 14px;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-nav .btn {
  width: 100%;
  margin-top: 10px;
}

/* HERO */

.hero {
  min-height: 760px;
  padding-top: 120px;
  display: flex;
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 82% 70%, rgba(8, 120, 255, 0.24), transparent 35%),
    linear-gradient(90deg, rgba(5, 9, 20, 0.97) 0%, rgba(5, 9, 20, 0.82) 48%, rgba(5, 9, 20, 0.42) 100%),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1800&auto=format&fit=crop") center/cover no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 34px;
  align-items: center;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  color: #8dcbff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -2.8px;
  font-weight: 900;
  margin-bottom: 24px;
}

.hero-text {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  margin-bottom: 36px;
}

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

.hero-card {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

.hero-card h2 {
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 14px;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

/* COMMON */

section {
  padding: 86px 0;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.section-title h2,
.intro h2,
.service-highlight h2,
.business h2,
.final-cta h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -1.6px;
  font-weight: 900;
}

.section-title p {
  color: var(--muted);
  font-size: 17px;
  margin-top: 12px;
}

/* INTRO */

.intro {
  background: white;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

/* CARDS */

.values {
  background: var(--gray);
}

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

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px 28px;
  box-shadow: 0 18px 54px rgba(5, 9, 20, 0.05);
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card h3 {
  font-size: 21px;
  font-weight: 900;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  font-size: 15px;
}

/* SERVICE HIGHLIGHT */

.service-highlight {
  background: white;
}

.highlight-box {
  max-width: 1000px;
  margin: auto;
  text-align: center;

  background: linear-gradient(145deg, var(--dark), var(--dark-2));
  color: white;

  padding: 80px 60px;
  border-radius: 34px;

  box-shadow: var(--shadow);
}

.highlight-content {
  max-width: 750px;
  margin: auto;
}

.highlight-content h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -2px;
  font-weight: 900;
  margin-bottom: 24px;
}

.highlight-content p {
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  margin-bottom: 20px;
}

.highlight-content .btn {
  margin-top: 15px;
}

/* PROCESS */

.process {
  background: var(--gray);
}

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

.step {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px 28px;
  box-shadow: 0 18px 54px rgba(5, 9, 20, 0.05);
}

.step span {
  display: block;
  color: var(--blue);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 21px;
  font-weight: 900;
  margin-bottom: 10px;
}

.step p {
  color: var(--muted);
  font-size: 15px;
}

/* BUSINESS */

.business {
  background: white;
}

.business-box {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 30px;
  align-items: center;
  border-radius: 32px;
  background: var(--gray);
  border: 1px solid var(--border);
  padding: 46px;
}

.business p {
  color: var(--muted);
  margin-top: 16px;
  max-width: 720px;
}

/* FINAL CTA */

.final-cta {
  background: var(--dark);
  color: white;
}

.final-cta-box {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 34px;
  align-items: center;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  max-width: 620px;
  margin-top: 14px;
}

.cta-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

/* FOOTER */

.site-footer {
  background: #02050d;
  color: white;
  padding: 36px 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: inline-flex;
  max-width: 290px;
}

.footer-brand img {
  width: 290px;
  height: auto;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover {
  color: white;
}

.footer-content p {
  color: rgba(255, 255, 255, 0.50);
  font-size: 13px;
  font-weight: 600;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .nav-links,
  .desktop-cta {
    display: none;
  }

  .mobile-menu {
    display: inline-flex;
  }

  .brand {
    max-width: calc(100% - 62px);
  }

  .brand img {
    width: 280px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-grid,
  .intro-grid,
  .cards-3,
  .highlight-box,
  .steps,
  .business-box,
  .final-cta-box {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .business-box {
    align-items: flex-start;
  }
}

@media (max-width: 650px) {
  .site-header {
    padding: 16px 0;
  }

  .site-header.scrolled {
    padding: 12px 0;
  }

  .nav {
    gap: 12px;
  }

  .brand img {
    width: 245px;
  }

  .hero {
    min-height: 720px;
    padding-top: 110px;
    background:
      linear-gradient(90deg, rgba(5, 9, 20, 0.96), rgba(5, 9, 20, 0.78)),
      url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1800&auto=format&fit=crop") center/cover no-repeat;
  }

  .hero h1 {
    letter-spacing: -1.8px;
  }

  .hero-card,
  .card,
  .step,
  .business-box {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .highlight-box {

    padding: 50px 25px;

    border-radius: 24px;

  }

  .highlight-content h2 {

    letter-spacing: -1px;

  }

  section {
    padding: 62px 0;
  }

  .hero-actions,
  .cta-actions,
  .btn {
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-brand img {
    width: 250px;
  }
}

@media (max-width: 390px) {
  .brand img {
    width: 220px;
  }
}

























/* PAGE HERO */

.page-hero {
  min-height: 560px;
  padding-top: 150px;
  display: flex;
  align-items: center;
  color: white;
  background:
    linear-gradient(90deg, rgba(5, 9, 20, 0.96), rgba(5, 9, 20, 0.72)),
    url("https://images.unsplash.com/photo-1607860108855-64acf2078ed9?q=80&w=1800&auto=format&fit=crop") center/cover no-repeat;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -3px;
  font-weight: 900;
  margin-bottom: 24px;
}

.page-hero p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  margin-bottom: 34px;
}

/* SERVICES DETAIL */

.services-detail {
  background: var(--gray);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-detail-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px 30px;
  box-shadow: 0 18px 54px rgba(5, 9, 20, 0.05);
}

.service-detail-card h3 {
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 18px;
}

.service-detail-card ul {
  list-style: none;
  display: grid;
  gap: 11px;
}

.service-detail-card li {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  display: flex;
  gap: 10px;
}

.service-detail-card li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 900;
  flex-shrink: 0;
}

/* APPROACH */

.approach {
  background: white;
}

.approach-box {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  align-items: center;
  border-radius: 34px;
  padding: 54px;
  background: linear-gradient(145deg, var(--dark), var(--dark-2));
  color: white;
  box-shadow: var(--shadow);
}

.approach-box h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -2px;
  font-weight: 900;
  margin-bottom: 20px;
}

.approach-box p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
}

.approach-points {
  display: grid;
  gap: 12px;
}

.approach-points span {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 800;
}

.approach-points span::before {
  content: "✓";
  color: #8dcbff;
  margin-right: 8px;
}

/* PRICING INFO */

.pricing-info {
  background: var(--gray);
}

.pricing-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 46px;
  box-shadow: 0 18px 54px rgba(5, 9, 20, 0.05);
}

.pricing-box h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -1.6px;
  font-weight: 900;
  margin-bottom: 16px;
}

.pricing-box p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

/* RESPONSIVE SERVICES PAGE */

@media (max-width: 980px) {
  .service-detail-grid,
  .approach-box,
  .pricing-box {
    grid-template-columns: 1fr;
  }

  .pricing-box {
    align-items: flex-start;
  }
}

@media (max-width: 650px) {
  .page-hero {
    min-height: 560px;
    padding-top: 130px;
  }

  .page-hero h1 {
    letter-spacing: -2px;
  }

  .service-detail-card,
  .approach-box,
  .pricing-box {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .pricing-box .btn {
    width: 100%;
  }
}
























/* CONTACT PAGE */

.contact-hero {
  min-height: 500px;
}

.contact-section {
  background: var(--gray);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.contact-info,
.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 38px;
  box-shadow: 0 18px 54px rgba(5, 9, 20, 0.05);
}

.contact-info {
  position: sticky;
  top: 120px;
}

.contact-info h2 {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.contact-info p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-links a {
  display: block;
  padding: 15px 18px;
  border-radius: 16px;
  background: var(--gray);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 850;
  transition: 0.2s ease;
}

.contact-links a:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.notice {
  padding: 18px;
  border-radius: 18px;
  background: var(--blue-soft, #eaf4ff);
  color: #004bb8;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 700;
}

/* FORM */

.form-section {
  margin-bottom: 30px;
}

.section-label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.field label {
  font-size: 13px;
  font-weight: 850;
  color: var(--text);
}

.field input,
.field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: var(--gray);
  outline: none;
  transition: 0.2s ease;
}

.field textarea {
  min-height: 145px;
  padding: 16px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  background: white;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(8, 120, 255, 0.12);
}

.upload-box {
  padding: 18px;
  border: 1px dashed #cbd5e1;
  border-radius: 20px;
  background: var(--gray);
}

.upload-box input {
  background: white;
}

.hint {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.success-message {
  display: none;
  padding: 16px 18px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: #e8f8ef;
  color: #166534;
  font-size: 14px;
  font-weight: 800;
}

.submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.privacy {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  max-width: 520px;
}

/* RESPONSIVE CONTACT */

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

  .contact-info {
    position: static;
  }
}

@media (max-width: 650px) {
  .contact-info,
  .contact-form {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .form-row,
  .submit-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .submit-row .btn {
    width: 100%;
  }
}























.thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  background: var(--gray);
}

.thank-you h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  margin-bottom: 16px;
}

.thank-you p {
  color: var(--muted);
  margin-bottom: 28px;
}


























































