:root {
  --navy: #06347a;
  --blue: #2f95d3;
  --blue-soft: #eaf6fd;
  --ink: #101828;
  --muted: #5b667a;
  --line: #d8e2ef;
  --paper: #ffffff;
  --mist: #f5f8fc;
  --orange: #ff7a1a;
  --orange-dark: #d95f00;
  --shadow: 0 24px 70px rgba(6, 52, 122, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(216, 226, 239, .75);
  backdrop-filter: blur(18px);
}

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

.brand .custom-logo-link {
  display: block;
}

.brand .custom-logo {
  width: 164px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a,
.site-nav li {
  list-style: none;
}

.site-nav a {
  border-radius: 8px;
  padding: 10px 14px;
  color: #26364d;
  font-size: 15px;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--blue-soft);
  color: var(--navy);
  outline: none;
}

.site-nav .nav-cta {
  margin-left: 6px;
  background: var(--navy);
  color: white;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--orange);
  color: white;
}

body.admin-bar .site-header {
  top: 32px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, .94fr);
  align-items: center;
  gap: clamp(32px, 5vw, 82px);
  padding: 132px clamp(18px, 5vw, 82px) 76px;
  background:
    radial-gradient(circle at 88% 22%, rgba(47, 149, 211, .22), transparent 31%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 52%, #edf7fd 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 830px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.hero-lead {
  max-width: 680px;
  color: #344155;
  font-size: 20px;
}

.hero-actions,
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 13px 22px;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

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

.button.primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 16px 34px rgba(255, 122, 26, .24);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--orange-dark);
}

.button.secondary {
  background: white;
  color: var(--navy);
  border: 1px solid var(--line);
}

.trust-strip {
  margin-top: 26px;
  color: #46546a;
  font-size: 14px;
  font-weight: 700;
}

.trust-strip span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
}

.hero-panel {
  position: relative;
}

.orbital-card,
.human-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 36px;
  overflow: hidden;
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(160deg, rgba(6, 52, 122, .94), rgba(47, 149, 211, .92)),
    var(--navy);
  box-shadow: var(--shadow);
}

.orbital-card::before,
.human-card::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -120px;
  top: 74px;
  border: 34px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
}

.human-card {
  position: relative;
  margin: 0;
  padding: 0;
  background: var(--navy);
}

.human-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 52, 122, .72), rgba(6, 52, 122, .14) 48%, rgba(6, 52, 122, .58));
}

.human-card::before {
  z-index: 1;
  right: -150px;
  top: 40px;
  border-color: rgba(255, 255, 255, .16);
}

.human-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.human-card figcaption {
  position: relative;
  z-index: 2;
  max-width: 340px;
  margin: auto 28px 0;
  color: white;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.08;
}

.orbital-card img {
  position: relative;
  z-index: 1;
  width: min(420px, 92%);
}

.status-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 28px 28px;
}

.status-grid div,
.service-card,
.timeline div,
.about-grid article,
.testimonial-grid figure,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.status-grid div {
  padding: 16px;
  background: rgba(255, 255, 255, .11);
  border-color: rgba(255, 255, 255, .18);
  color: white;
}

.status-grid strong,
.status-grid span {
  display: block;
}

.status-grid strong {
  font-size: 25px;
  line-height: 1;
}

.status-grid span {
  margin-top: 6px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 600;
}

.section {
  padding: 88px clamp(18px, 5vw, 82px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.intro > p,
.contact-copy p,
.proof-copy + .testimonial-grid {
  color: var(--muted);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .7fr);
  gap: 48px;
  align-items: end;
  background: var(--navy);
}

.intro h2,
.intro p {
  color: white;
}

.intro .eyebrow {
  color: #8bd3ff;
}

.human-section {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, .86fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.human-media,
.close-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.human-media img,
.close-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.human-copy p:not(.eyebrow),
.close-copy p {
  color: var(--muted);
}

.insight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.insight-list span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  background: var(--blue-soft);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

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

.service-card {
  min-height: 380px;
  padding: 24px;
  transition: transform .18s ease, box-shadow .18s ease;
}

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

.service-card.featured {
  border-color: rgba(255, 122, 26, .35);
  background: linear-gradient(180deg, #fff7ef, white 54%);
}

.service-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--navy);
  font-weight: 800;
}

.service-card p,
.service-card li,
.timeline p,
.about-grid p,
blockquote {
  color: var(--muted);
}

.service-card ul {
  margin: 22px 0 0;
  padding-left: 18px;
}

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

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

.timeline div {
  padding: 24px;
}

.timeline span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-weight: 800;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.testimonial-grid {
  display: grid;
  gap: 14px;
}

.testimonial-grid figure {
  margin: 0;
  padding: 22px;
}

blockquote {
  margin: 0 0 12px;
  font-size: 17px;
}

figcaption {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.about {
  background: linear-gradient(180deg, white, var(--blue-soft));
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.about-grid article {
  padding: 26px;
}

.close-meeting {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(320px, .85fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: linear-gradient(180deg, #ffffff, #f4f9fd);
}

.close-copy .button {
  margin-top: 12px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(320px, .72fr);
  gap: 54px;
  background: #071f46;
}

.contact h2,
.contact-copy p {
  color: white;
}

.contact .eyebrow {
  color: #8bd3ff;
}

.whatsapp-link {
  display: inline-flex;
  margin-top: 20px;
  color: white;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.proyit-form-wrap {
  min-width: 0;
}

.proyit-form-message {
  margin-bottom: 14px;
  border-radius: 8px;
  padding: 13px 14px;
  font-weight: 700;
}

.proyit-form-message.success {
  border: 1px solid rgba(38, 151, 90, .24);
  background: #eaf8f0;
  color: #17633a;
}

.proyit-form-message.error {
  border: 1px solid rgba(217, 95, 0, .25);
  background: #fff3e8;
  color: #914000;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: #25344b;
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: white;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(47, 149, 211, .16);
}

textarea {
  resize: vertical;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 15;
  border-radius: 8px;
  padding: 13px 18px;
  background: var(--orange);
  color: white;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(255, 122, 26, .3);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 82px);
  background: #041936;
  color: rgba(255, 255, 255, .8);
}

.site-footer img {
  width: 148px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1120px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 18px 18px;
    background: white;
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 13px 12px;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero,
  .intro,
  .proof,
  .contact,
  .human-section,
  .close-meeting {
    grid-template-columns: 1fr;
  }

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

  .orbital-card {
    min-height: 420px;
  }

  .human-card {
    min-height: 440px;
  }

  .human-media img,
  .close-media img {
    min-height: 320px;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 132px;
  }

  .brand .custom-logo {
    width: 132px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .service-grid,
  .timeline,
  .about-grid,
  .status-grid {
    grid-template-columns: 1fr;
  }

  .human-card figcaption {
    margin: auto 20px 0;
    font-size: 25px;
  }

  .status-grid {
    padding: 0 20px 20px;
  }

  .service-card {
    min-height: auto;
  }

  .floating-cta {
    left: 18px;
    text-align: center;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
