:root {
  --color-navy: #071a33;
  --color-blue: #0b2b54;
  --color-cyan: #12c7e8;
  --color-cyan-dark: #0797b2;
  --color-white: #ffffff;
  --color-soft: #f4f8fb;
  --color-text: #1f2a37;
  --color-muted: #637083;
  --shadow: 0 20px 45px rgba(7, 26, 51, 0.12);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(18, 199, 232, 0.55);
  outline-offset: 3px;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  scroll-margin-top: 84px;
}

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

.section-dark {
  color: var(--color-white);
  background: var(--color-navy);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(7, 26, 51, 0.94);
  box-shadow: 0 8px 24px rgba(7, 26, 51, 0.18);
  backdrop-filter: blur(14px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--color-navy);
  background: var(--color-cyan);
  font-size: 0.92rem;
  letter-spacing: 0;
}

.brand-text {
  font-size: 1.02rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

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

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 136px;
  background:
    linear-gradient(135deg, rgba(7, 26, 51, 0.97), rgba(11, 43, 84, 0.92)),
    radial-gradient(circle at 76% 26%, rgba(18, 199, 232, 0.26), transparent 30%);
  color: var(--color-white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  color: var(--color-cyan);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: inherit;
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 760px;
}

h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  margin-bottom: 34px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: var(--color-navy);
  background: var(--color-cyan);
}

.btn-primary:hover {
  background: #43dff4;
}

.btn-secondary {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

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

.hero-panel {
  min-height: 410px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.status-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 700;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22e6a8;
}

.metric {
  padding: 60px 0 44px;
}

.metric-value {
  display: block;
  color: var(--color-cyan);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}

.metric-label {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.capability-list span {
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 700;
}

.split-layout,
.contact-layout,
.founder-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.section-copy {
  color: var(--color-muted);
  font-size: 1.04rem;
}

.section-copy p + p {
  margin-top: 18px;
}

.section-heading {
  margin-bottom: 42px;
}

.founder-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.founder-layout {
  align-items: center;
}

.founder-photo {
  width: min(100%, 380px);
  aspect-ratio: 672 / 1100;
  justify-self: center;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 26, 51, 0.88), rgba(18, 199, 232, 0.32)),
    var(--color-blue);
  box-shadow: var(--shadow);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.personal-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.personal-details div {
  padding: 18px;
  border: 1px solid #dce8f1;
  border-radius: var(--radius);
  background: var(--color-white);
}

.personal-details span {
  display: block;
  margin-bottom: 6px;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.personal-details strong {
  color: var(--color-blue);
  font-size: 1rem;
}

.founder-cta {
  margin-top: 24px;
}

.card-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.project-card,
.benefit-item,
.contact-form {
  border-radius: var(--radius);
}

.service-card,
.project-card {
  padding: 28px;
  background: var(--color-white);
  box-shadow: 0 12px 30px rgba(7, 26, 51, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(7, 26, 51, 0.13);
}

.service-card p,
.project-card p,
.benefit-item p {
  color: var(--color-muted);
}

.card-icon,
.project-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  font-weight: 800;
}

.card-icon {
  width: 44px;
  height: 44px;
  color: var(--color-blue);
  background: rgba(18, 199, 232, 0.16);
}

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

.project-card {
  min-height: 260px;
  border: 1px solid #e3edf5;
}

.project-tag {
  padding: 7px 10px;
  color: var(--color-cyan-dark);
  background: rgba(18, 199, 232, 0.12);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.industry-grid div {
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid #dce8f1;
  border-radius: var(--radius);
  color: var(--color-blue);
  background: var(--color-white);
  box-shadow: 0 10px 24px rgba(7, 26, 51, 0.06);
  font-weight: 800;
}

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

.benefit-item {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.benefit-item p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-details {
  margin-top: 28px;
  color: var(--color-text);
}

.contact-details p + p {
  margin-top: 10px;
}

.contact-details a,
.personal-details a,
.location-card a {
  color: var(--color-blue);
}

.contact-details a:hover,
.personal-details a:hover,
.location-card a:hover {
  color: var(--color-cyan-dark);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.location-card {
  padding: 18px;
  border: 1px solid #dce8f1;
  border-radius: var(--radius);
  background: var(--color-soft);
}

.location-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-cyan-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.location-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-blue);
}

.location-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.location-card p + p {
  margin-top: 8px;
}

.map-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--color-cyan-dark);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 30px;
  background: var(--color-soft);
  box-shadow: var(--shadow);
}

.form-honey {
  display: none;
}

.contact-form label {
  color: var(--color-blue);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d7e3ed;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--color-text);
  font: inherit;
  background: var(--color-white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 4px rgba(18, 199, 232, 0.16);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  margin-top: 8px;
}

.site-footer {
  padding: 26px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #041224;
}

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

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a:hover {
  color: var(--color-cyan);
}

.whatsapp-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius);
  color: var(--color-white);
  background: #128c7e;
  box-shadow: 0 14px 32px rgba(7, 26, 51, 0.2);
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-button:hover {
  background: #0f7a6e;
  transform: translateY(-2px);
}

.thank-you-page {
  min-height: 100vh;
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(7, 26, 51, 0.97), rgba(11, 43, 84, 0.92)),
    radial-gradient(circle at 76% 26%, rgba(18, 199, 232, 0.26), transparent 30%);
}

.thank-you-section {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 70px 0;
}

.thank-you-card {
  max-width: 780px;
}

.thank-you-brand {
  margin-bottom: 42px;
}

.thank-you-card h1 {
  margin-bottom: 20px;
}

.thank-you-card p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 20px 24px;
    background: var(--color-navy);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 13px 0;
  }

  .hero-grid,
  .split-layout,
  .contact-layout,
  .founder-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    min-height: auto;
  }

  .card-grid,
  .project-grid,
  .benefit-grid,
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 70px 0;
  }

  .brand-text {
    max-width: 170px;
    line-height: 1.15;
  }

  .hero {
    padding-top: 124px;
  }

  .hero-actions,
  .footer-content,
  .footer-links {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .card-grid,
  .project-grid,
  .benefit-grid,
  .industry-grid,
  .capability-list,
  .personal-details,
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .service-card,
  .project-card,
  .benefit-item,
  .contact-form {
    padding: 22px;
  }

  .metric-value {
    font-size: 3.2rem;
  }

  .whatsapp-button {
    right: 14px;
    bottom: 14px;
  }
}
