﻿@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@600;700&display=swap");

:root {
  --ink: #101820;
  --soft-ink: #3a4653;
  --muted: #697586;
  --surface: #f5f7fb;
  --white: #ffffff;
  --navy: #111827;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --green: #16a34a;
  --orange: #f97316;
  --line: rgba(16, 24, 32, 0.12);
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(0deg, rgba(249, 115, 22, 0.035) 1px, transparent 1px) 0 0 / 44px 44px,
    var(--surface);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.62;
}

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

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

.top-strip {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  font-size: 13px;
  font-weight: 800;
  gap: 22px;
  justify-content: center;
  padding: 8px 18px;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 24, 32, 0.08);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 94px;
  padding: 12px clamp(18px, 4vw, 68px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 60;
}

.brand,
.footer-brand {
  align-items: center;
  display: flex;
  gap: 12px;
}


.brand-logo {
  background: #050915;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(5, 9, 21, 0.18);
  height: 72px;
  object-fit: cover;
  object-position: center;
  width: 72px;
}

.footer-logo {
  background: #050915;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  height: 82px;
  object-fit: contain;
  padding: 6px 10px;
  width: 280px;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--blue), var(--cyan) 52%, var(--orange));
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.28);
  color: var(--white);
  display: inline-flex;
  flex: 0 0 auto;
  font-family: "Space Grotesk", sans-serif;
  font-size: 19px;
  font-weight: 700;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.brand-mark.small {
  box-shadow: none;
  font-size: 16px;
  height: 46px;
  width: 46px;
}


.brand-text {
  display: grid;
  gap: 2px;
}.brand-name {
  color: var(--navy);
  display: block;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1;
}

.brand-line {
  color: var(--blue);
  display: block;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 4px;
}

.main-nav a {
  border-radius: 8px;
  color: #2f3b4a;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 13px;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue);
}

.nav-call {
  background: var(--orange) !important;
  color: var(--white) !important;
  margin-left: 4px;
}

.hero {
  color: var(--white);
  isolation: isolate;
  min-height: calc(100vh - 96px);
  overflow: hidden;
  padding: 92px clamp(18px, 5vw, 76px) 78px;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(104deg, rgba(10, 18, 32, 0.94) 0%, rgba(10, 18, 32, 0.77) 48%, rgba(10, 18, 32, 0.26) 100%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  content: "";
  inset: 0;
  position: absolute;
  z-index: -2;
}

.hero::after {
  background: linear-gradient(180deg, transparent 74%, var(--surface) 74%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.hero-inner {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 410px);
  margin: 0 auto;
  max-width: 1200px;
}

.hero-content {
  padding-top: 26px;
}

.eyebrow,
.support-badge {
  align-items: center;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #dff8ff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  gap: 9px;
  margin-bottom: 18px;
  padding: 8px 12px;
  text-transform: uppercase;
}

.eyebrow::before,
.support-badge::before {
  background: var(--orange);
  border-radius: 50%;
  content: "";
  height: 8px;
  width: 8px;
}

h1,
h2,
.headline {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  max-width: 940px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
  margin-top: 22px;
  max-width: 720px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
}

.btn-primary {
  background: var(--orange);
  box-shadow: 0 18px 40px rgba(249, 115, 22, 0.28);
  color: var(--white);
}

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

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


.hero-side {
  align-self: end;
  display: grid;
  gap: 16px;
  justify-items: stretch;
}

.hero-portrait {
  align-items: end;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  height: min(64vh, 560px);
  min-height: 460px;
  overflow: hidden;
  position: relative;
}

.hero-portrait img {
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center 18%;
  width: 100%;
}

.portrait-badge {
  background: var(--orange);
  bottom: 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  left: 18px;
  padding: 10px 14px;
  position: absolute;
  text-transform: uppercase;
} .hero-brief {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: 24px;
}

.hero-brief .headline {
  font-size: 28px;
  line-height: 1.1;
}

.quick-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin-top: 18px;
}

.quick-list li {
  border-top: 1px solid var(--line);
  color: var(--soft-ink);
  font-weight: 800;
  padding-top: 12px;
}

.section {
  padding: 84px clamp(18px, 5vw, 76px);
}

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

.section-inner {
  margin: 0 auto;
  max-width: 1200px;
}

.section-title {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
  max-width: 790px;
}

.section-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title h2,
.cta-band h2 {
  color: var(--ink);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
}

.section-title p,
.lead,
.cta-band p {
  color: var(--muted);
  font-size: 18px;
}

.proof-row {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 50px rgba(17, 24, 39, 0.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -42px;
  position: relative;
  z-index: 4;
}

.proof {
  border-right: 1px solid var(--line);
  padding: 26px;
}

.proof:last-child {
  border-right: 0;
}

.proof strong {
  color: var(--blue);
  display: block;
  font-size: 30px;
  line-height: 1;
}

.proof span {
  color: var(--muted);
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-top: 8px;
}

.service-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 430px;
  overflow: hidden;
}

.service-card img {
  height: 230px;
  object-fit: cover;
  width: 100%;
}

.service-card div {
  padding: 24px;
}

.service-card span,
.service-item span {
  color: var(--orange);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.service-card h3,
.service-item h3,
.process-step h3 {
  font-size: 23px;
  line-height: 1.2;
  margin-bottom: 8px;
}

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

.strategy-section {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(255, 255, 255, 0.96) 48%, rgba(249, 115, 22, 0.1)),
    var(--surface);
}

.split {
  align-items: center;
  display: grid;
  gap: 46px;
  grid-template-columns: 0.95fr 1.05fr;
}

.split img {
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.strategy-section .support-badge,
.cta-band .support-badge {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.18);
  color: var(--blue);
}

.feature-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin-top: 24px;
}

.feature-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  color: var(--soft-ink);
  padding: 18px 20px;
}

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

.process-step {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.84);
  padding: 28px;
}

.process-step span {
  color: #67e8f9;
  display: block;
  font-weight: 900;
  margin-bottom: 22px;
}

.process-step h3 {
  color: var(--white);
}

.page-hero {
  min-height: 56vh;
}

.page-hero .hero-inner {
  grid-template-columns: 1fr;
}

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

.service-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.contact-wrap {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.05fr 0.95fr;
}

.contact-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.08);
  padding: 32px;
}

.contact-box h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

.contact-box p {
  color: var(--muted);
  margin-bottom: 12px;
}

.contact-box > strong {
  color: var(--ink);
  display: block;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.1;
  margin-bottom: 12px;
}

.cta-band {
  align-items: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(6, 182, 212, 0.08), rgba(249, 115, 22, 0.1));
  border: 1px solid var(--line);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: clamp(26px, 4vw, 44px);
}

.cta-band > div:first-child {
  max-width: 720px;
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  padding: 36px clamp(18px, 5vw, 76px);
}

.footer-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.72);
}

.floating-actions {
  bottom: 20px;
  display: flex;
  gap: 10px;
  position: fixed;
  right: 20px;
  z-index: 70;
}

.float-btn {
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  padding: 12px 14px;
}

.float-call {
  background: var(--orange);
}

.float-wa {
  background: var(--green);
}

@media (max-width: 930px) {
  .top-strip {
    align-items: center;
    flex-direction: column;
    gap: 4px;
  }

  .site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 24, 32, 0.08);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 94px;
  padding: 12px clamp(18px, 4vw, 68px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 60;
}

  .main-nav {
    overflow-x: auto;
    padding-bottom: 2px;
    width: 100%;
  }

  .main-nav a {
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .hero-inner,
  .hero-side,
  .split,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .hero-portrait {
    height: 430px;
    min-height: 430px;
  }

  .proof-row,
  .service-showcase,
  .process,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .proof {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .cta-band,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .brand-logo {
    height: 58px;
    width: 58px;
  }

  .footer-logo {
    height: 72px;
    width: min(250px, 78vw);
  }

  .brand-mark {
    height: 50px;
    width: 50px;
  }

  .brand-name {
  color: var(--navy);
  display: block;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1;
}

  .hero {
    padding-bottom: 50px;
  }

  .hero::after {
    background: linear-gradient(180deg, transparent 86%, var(--surface) 86%);
  }

  .hero-brief,
  .contact-box,
  .service-item,
  .proof,
  .service-card div,
  .process-step {
    padding: 20px;
  }

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

  .floating-actions {
    left: 14px;
    right: 14px;
  }

  .float-btn {
    flex: 1;
    text-align: center;
  }
}

.founder-section {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.founder-section::before {
  background:
    radial-gradient(circle at 15% 20%, rgba(6, 182, 212, 0.22), transparent 32%),
    radial-gradient(circle at 82% 75%, rgba(249, 115, 22, 0.2), transparent 30%);
  content: "";
  inset: 0;
  position: absolute;
}

.founder-wrap {
  align-items: center;
  display: grid;
  gap: 52px;
  grid-template-columns: 0.86fr 1.14fr;
  position: relative;
  z-index: 1;
}

.founder-photo {
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  position: relative;
}

.founder-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 16%;
  width: 100%;
}

.founder-tag {
  background: var(--orange);
  bottom: 22px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  left: 22px;
  padding: 10px 14px;
  position: absolute;
  text-transform: uppercase;
}

.founder-content .support-badge {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #dff8ff;
}

.founder-content h2 {
  color: var(--white);
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.02;
  margin-bottom: 18px;
}

.founder-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  max-width: 720px;
}

.founder-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  max-width: 760px;
}

.founder-stats div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px;
}

.founder-stats strong {
  color: #67e8f9;
  display: block;
  font-size: 24px;
  line-height: 1;
}

.founder-stats span {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-top: 8px;
}

@media (max-width: 930px) {
  .founder-wrap,
  .founder-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {

  .founder-tag {
    bottom: 16px;
    left: 16px;
  }
}











.contact-form-box {
  grid-column: 1 / -1;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form span {
  color: var(--soft-ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  padding: 14px 15px;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(37, 99, 235, 0.12);
}
