:root {
  --background: #ffffff;
  --background-soft: #f5f8ff;
  --background-blue: #edf4ff;

  --primary: #2563eb;
  --primary-dark: #1746b0;
  --primary-light: #dbeafe;

  --accent: #06b6d4;

  --text: #12203a;
  --text-soft: #5f6b7c;

  --border: #dfe6f2;

  --white: #ffffff;

  --radius-small: 12px;
  --radius: 20px;
  --radius-large: 32px;

  --shadow:
    0 18px 50px rgba(21, 48, 92, 0.10);

  --shadow-small:
    0 8px 25px rgba(21, 48, 92, 0.08);

  --container: 1180px;
}


/* Reset */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  background: var(--background);
  color: var(--text);

  line-height: 1.6;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}


/* Global Layout */

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

section {
  padding: 96px 0;
}

.eyebrow {
  display: inline-block;

  color: var(--primary);

  background: var(--primary-light);

  padding: 7px 14px;

  border-radius: 999px;

  font-size: 0.78rem;
  font-weight: 800;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  margin-bottom: 20px;
}

.light-eyebrow {
  background: rgba(255, 255, 255, 0.13);
  color: white;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 50px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;

  text-align: center;
}

.section-heading h2,
.about-section h2,
.audit-section h2,
.contact-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);

  line-height: 1.12;

  letter-spacing: -0.04em;

  margin-bottom: 18px;
}

.section-heading p {
  color: var(--text-soft);
  font-size: 1.08rem;
}


/* Buttons */

.button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  background: var(--primary);
  color: white;

  padding: 14px 24px;

  border-radius: 999px;

  font-weight: 750;

  border: 2px solid var(--primary);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  background: var(--primary-dark);

  border-color: var(--primary-dark);

  transform: translateY(-2px);

  box-shadow:
    0 12px 30px rgba(37, 99, 235, 0.22);
}

.button-secondary {
  background: white;
  color: var(--primary);

  border-color: var(--border);
}

.button-secondary:hover {
  background: var(--background-soft);

  color: var(--primary-dark);
}

.button-small {
  padding: 10px 18px;
  font-size: 0.9rem;
}


/* Header */

.site-header {
  position: sticky;
  top: 0;

  z-index: 100;

  background: rgba(255, 255, 255, 0.9);

  border-bottom: 1px solid rgba(222, 230, 242, 0.8);

  backdrop-filter: blur(16px);
}

.nav-container {
  min-height: 74px;

  display: flex;

  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;

  letter-spacing: -0.04em;
}

.logo span,
.footer-brand span {
  color: var(--primary);
}

.main-nav {
  display: flex;

  align-items: center;

  gap: 28px;

  font-size: 0.94rem;

  font-weight: 650;
}

.main-nav > a:not(.button) {
  color: var(--text-soft);
}

.main-nav > a:not(.button):hover {
  color: var(--primary);
}

.mobile-menu-button {
  display: none;

  background: none;
  border: none;

  font-size: 1.7rem;

  cursor: pointer;
}


/* Hero */

.hero {
  position: relative;

  overflow: hidden;

  padding-top: 115px;
  padding-bottom: 110px;

  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f8fbff 58%,
      #edf6ff 100%
    );
}

.hero-decoration {
  position: absolute;

  border-radius: 999px;

  filter: blur(1px);

  pointer-events: none;
}

.hero-decoration-one {
  width: 440px;
  height: 440px;

  right: -170px;
  top: -200px;

  background:
    radial-gradient(
      circle,
      rgba(37, 99, 235, 0.15),
      transparent 70%
    );
}

.hero-decoration-two {
  width: 370px;
  height: 370px;

  left: -180px;
  bottom: -190px;

  background:
    radial-gradient(
      circle,
      rgba(6, 182, 212, 0.15),
      transparent 70%
    );
}

.hero-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(390px, 0.92fr);

  gap: 80px;

  align-items: center;
}

.hero h1 {
  max-width: 800px;

  font-size:
    clamp(3rem, 6vw, 5.3rem);

  line-height: 0.99;

  letter-spacing: -0.065em;

  margin-bottom: 26px;
}

.hero h1 span {
  color: var(--primary);
}

.hero-description {
  max-width: 680px;

  font-size: 1.18rem;

  color: var(--text-soft);
}

.hero-actions {
  display: flex;

  gap: 14px;

  margin-top: 34px;
}

.hero-proof {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 26px;

  margin-top: 55px;
}

.hero-proof strong {
  display: block;

  font-size: 1.5rem;

  color: var(--text);
}

.hero-proof span {
  display: block;

  color: var(--text-soft);

  font-size: 0.86rem;

  margin-top: 3px;
}


/* Hero Graphic */

.hero-card {
  position: relative;
}

.automation-window {
  background: white;

  border: 1px solid var(--border);

  border-radius: 26px;

  box-shadow: var(--shadow);

  overflow: hidden;

  transform: rotate(1.5deg);
}

.window-header {
  height: 48px;

  display: flex;

  gap: 7px;

  align-items: center;

  padding: 0 18px;

  background: #f8faff;

  border-bottom: 1px solid var(--border);
}

.window-header span {
  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #cbd5e1;
}

.workflow {
  padding: 32px;
}

.workflow-label {
  color: var(--primary);

  font-size: 0.78rem;

  font-weight: 800;

  letter-spacing: 0.07em;

  text-transform: uppercase;

  margin-bottom: 26px;
}

.workflow-step {
  display: flex;

  gap: 17px;

  align-items: center;
}

.workflow-number {
  width: 44px;
  height: 44px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: var(--primary-light);
  color: var(--primary);

  font-weight: 900;
}

.workflow-step strong {
  font-size: 1rem;
}

.workflow-step p {
  color: var(--text-soft);

  font-size: 0.86rem;

  margin-top: 3px;
}

.workflow-line {
  width: 2px;
  height: 30px;

  margin-left: 21px;

  background: var(--border);
}

.automation-result {
  margin-top: 28px;

  padding: 15px 18px;

  border-radius: 14px;

  background: #ecfdf5;

  color: #136c4a;

  font-weight: 700;
}

.automation-result span {
  margin-right: 7px;
}


/* Problems */

.problem-section {
  background: white;
}

.problem-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 22px;
}

.problem-card {
  padding: 30px;

  border: 1px solid var(--border);

  border-radius: var(--radius);

  background: white;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.problem-card:hover {
  transform: translateY(-5px);

  border-color: #bdcff6;

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

.icon {
  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: var(--background-blue);

  color: var(--primary);

  font-size: 1.35rem;

  font-weight: 900;

  margin-bottom: 22px;
}

.problem-card h3 {
  margin-bottom: 8px;

  font-size: 1.15rem;
}

.problem-card p {
  color: var(--text-soft);

  font-size: 0.95rem;
}


/* Services */

.services-section {
  background: var(--background-soft);
}

.services-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 22px;
}

.service-card {
  padding: 32px;

  border-radius: var(--radius);

  background: white;

  border: 1px solid var(--border);

  box-shadow:
    0 8px 30px rgba(30, 58, 110, 0.04);
}

.featured-service {
  border-color: #a9c3f9;

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f2f7ff
    );
}

.service-number {
  color: var(--primary);

  font-size: 0.85rem;

  font-weight: 850;

  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 1.28rem;

  margin-bottom: 12px;
}

.service-card > p {
  color: var(--text-soft);

  margin-bottom: 22px;
}

.service-card ul {
  list-style: none;

  display: grid;

  gap: 9px;
}

.service-card li {
  position: relative;

  padding-left: 22px;

  font-size: 0.93rem;
}

.service-card li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: var(--primary);

  font-weight: 900;
}


/* Results */

.results-section {
  background: white;
}

.results-box {
  padding: 60px;

  display: grid;

  grid-template-columns:
    0.9fr 1.1fr;

  gap: 65px;

  border-radius: var(--radius-large);

  color: white;

  background:
    linear-gradient(
      135deg,
      #173b86,
      #2563eb 55%,
      #1789bd
    );

  overflow: hidden;
}

.results-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);

  line-height: 1.1;

  letter-spacing: -0.04em;

  margin-bottom: 20px;
}

.results-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.results-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 22px;
}

.result-item {
  padding: 25px;

  border-radius: 18px;

  background:
    rgba(255, 255, 255, 0.11);

  border:
    1px solid rgba(255, 255, 255, 0.16);

  backdrop-filter: blur(8px);
}

.result-item strong {
  display: block;

  font-size: 2.2rem;

  line-height: 1;

  margin-bottom: 9px;
}

.result-item span {
  display: block;

  color: rgba(255, 255, 255, 0.83);

  font-size: 0.89rem;
}


/* Process */

.process-section {
  background: var(--background-soft);
}

.process-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 28px;
}

.process-step {
  text-align: center;
}

.process-circle {
  width: 58px;
  height: 58px;

  margin:
    0 auto 22px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--primary);

  color: white;

  font-size: 1.15rem;

  font-weight: 900;

  box-shadow:
    0 10px 25px rgba(37, 99, 235, 0.2);
}

.process-step h3 {
  margin-bottom: 9px;
}

.process-step p {
  color: var(--text-soft);

  font-size: 0.94rem;
}


/* Audit */

.audit-section {
  background: white;
}

.audit-grid {
  padding: 55px;

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 60px;

  align-items: center;

  background: var(--background-blue);

  border: 1px solid #d8e5fb;

  border-radius: var(--radius-large);
}

.audit-grid p {
  color: var(--text-soft);

  max-width: 600px;
}

.audit-checklist {
  display: grid;

  gap: 13px;
}

.audit-checklist div {
  padding: 14px 17px;

  background: white;

  border-radius: 12px;

  border: 1px solid var(--border);

  font-weight: 600;
}


/* About */

.about-section {
  background: var(--background-soft);
}

.about-grid {
  display: grid;

  grid-template-columns:
    0.8fr 1.2fr;

  gap: 80px;
}

.about-copy {
  font-size: 1.08rem;

  color: var(--text-soft);
}

.about-copy p + p {
  margin-top: 20px;
}

.about-copy blockquote {
  margin-top: 32px;

  padding-left: 24px;

  border-left: 4px solid var(--primary);

  color: var(--text);

  font-size: 1.25rem;

  font-weight: 750;

  line-height: 1.45;
}


/* Contact */

.contact-section {
  background:
    linear-gradient(
      135deg,
      #122d65,
      #1d4fa9
    );

  color: white;
}

.contact-grid {
  display: grid;

  grid-template-columns:
    0.9fr 1.1fr;

  gap: 70px;

  align-items: start;
}

.contact-copy > p {
  max-width: 550px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 1.08rem;
}

.contact-details {
  display: flex;

  gap: 40px;

  margin-top: 42px;
}

.contact-details span {
  display: block;

  font-size: 0.78rem;

  text-transform: uppercase;

  letter-spacing: 0.08em;

  color: rgba(255, 255, 255, 0.56);
}

.contact-details strong {
  display: block;

  margin-top: 5px;
}

.contact-form {
  padding: 34px;

  border-radius: 24px;

  background: white;

  color: var(--text);

  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.18);
}

.form-row {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;

  font-size: 0.88rem;

  font-weight: 750;

  margin-bottom: 7px;
}

.form-group input,
.form-group textarea {
  width: 100%;

  padding: 13px 14px;

  border: 1px solid #cfd8e7;

  border-radius: 11px;

  background: #fbfcff;

  color: var(--text);

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);

  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.10);
}

.form-button {
  width: 100%;

  cursor: pointer;
}

.form-message {
  min-height: 24px;

  margin-top: 15px;

  font-size: 0.9rem;

  color: #137652;

  text-align: center;
}


/* Footer */

.site-footer {
  padding: 30px 0;

  background: #0d1a32;

  color: rgba(255, 255, 255, 0.65);
}

.footer-inner {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 25px;

  font-size: 0.85rem;
}

.footer-brand {
  color: white;

  font-size: 1.15rem;

  font-weight: 900;
}


/* Responsive */

@media (max-width: 1000px) {

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-card {
    max-width: 650px;
  }

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

  .results-box,
  .audit-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

}


@media (max-width: 760px) {

  section {
    padding: 70px 0;
  }

  .mobile-menu-button {
    display: block;
  }

  .main-nav {
    display: none;

    position: absolute;

    left: 4%;
    right: 4%;
    top: 68px;

    padding: 22px;

    flex-direction: column;

    align-items: stretch;

    gap: 14px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 18px;

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

  .main-nav.open {
    display: flex;
  }

  .main-nav .button {
    text-align: center;
  }

  .hero {
    padding-top: 80px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .hero-actions {
    flex-direction: column;

    align-items: stretch;
  }

  .hero-proof {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .problem-grid,
  .services-grid,
  .process-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .results-box,
  .audit-grid {
    padding: 35px 24px;
  }

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

  .contact-details {
    flex-direction: column;

    gap: 20px;
  }

  .footer-inner {
    flex-direction: column;

    text-align: center;
  }

}


@media (max-width: 480px) {

  .workflow {
    padding: 23px;
  }

  .contact-form {
    padding: 24px 20px;
  }

}

.reveal {
  opacity: 0;
  transform: translateY(18px);

  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

}