:root {

  --primary: #1463ff;
  --primary-dark: #0848cc;
  --cyan: #38bdf8;

  --dark: #07111f;
  --dark-2: #0b1728;
  --dark-3: #102033;

  --white: #ffffff;
  --surface: #f8fafc;
  --surface-blue: #eff6ff;

  --text: #0f172a;
  --muted: #64748b;

  --border: rgba(15, 23, 42, 0.10);
  --border-light: rgba(255,255,255,0.12);

  --radius: 22px;

  --shadow:
    0 25px 70px rgba(7, 17, 31, 0.10);

  --container: 1200px;

}


/* =====================================================
   RESET
===================================================== */

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


html {
  scroll-behavior: smooth;
}


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


img {
  max-width: 100%;
}


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


button,
input,
textarea,
select {
  font: inherit;
}


button {
  cursor: pointer;
}


.container {
  width: min(
    calc(100% - 40px),
    var(--container)
  );

  margin-inline: auto;
}


/* =====================================================
   TYPOGRAPHY
===================================================== */

h1,
h2,
h3,
h4,
h5 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
}


h2 {
  font-size: clamp(
    2.2rem,
    4vw,
    4rem
  );
}


p {
  color: var(--muted);
}


.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 16px;

  color: var(--primary);

  font-family: "JetBrains Mono", monospace;

  font-size: 0.72rem;

  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}


.eyebrow::before {
  content: "";

  width: 30px;
  height: 2px;

  background: currentColor;
}


.eyebrow-light {
  color: #7dd3fc;
}


.section-intro {
  max-width: 680px;
  margin: 18px auto 0;

  color: var(--muted);

  line-height: 1.8;
}


.large-copy {
  font-size: 1.2rem;
  line-height: 1.85;
}


/* =====================================================
   BUTTONS
===================================================== */

.btn {
  display: inline-flex;

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

  min-height: 50px;

  padding: 0 22px;

  border-radius: 10px;

  border: 1px solid transparent;

  font-weight: 700;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}


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


.btn-primary {
  color: #fff;
  background: var(--primary);
}


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


.btn-outline {
  color: var(--primary);
  border-color: var(--primary);
  background: transparent;
}


.btn-outline:hover {
  color: #fff;
  background: var(--primary);
}


.btn-light-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.06);

  backdrop-filter: blur(12px);
}


.btn-light-outline:hover {
  color: var(--dark);
  background: #fff;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

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

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

  backdrop-filter: blur(16px);
}


.nav {
  min-height: 76px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;
}


.brand {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  font-family: "Space Grotesk", sans-serif;

  font-size: 1.35rem;

  font-weight: 700;
}


.brand img {
  width: 42px;
  height: 42px;

  object-fit: contain;
}


.nav-links {
  display: flex;

  align-items: center;

  gap: 30px;
}


.nav-links a {
  position: relative;

  color: #475569;

  font-size: 0.92rem;

  font-weight: 600;

  transition: color 0.2s ease;
}


.nav-links a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -9px;

  width: 0;
  height: 2px;

  background: var(--primary);

  transition: width 0.25s ease;
}


.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}


.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}


.nav-cta {
  display: flex;

  align-items: center;

  gap: 15px;
}


.nav-toggle {
  display: none;

  width: 44px;
  height: 44px;

  padding: 8px;

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

  border-radius: 10px;

  background: #fff;
}


.nav-toggle span {
  display: block;

  width: 100%;
  height: 2px;

  margin: 5px 0;

  background: var(--dark);
}


/* =====================================================
   HERO
===================================================== */

.hero {
  position: relative;
}


.hero-premium {
  min-height: 790px;

  display: flex;

  align-items: center;

  overflow: hidden;

  color: #fff;

  background: var(--dark);
}


.hero-background {
  position: absolute;

  inset: 0;

  z-index: 0;
}


.hero-background img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;

  transform: scale(1.03);
}


.hero-overlay {
  position: absolute;

  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(3,10,20,0.97) 0%,
      rgba(3,10,20,0.87) 43%,
      rgba(3,10,20,0.50) 75%,
      rgba(3,10,20,0.30) 100%
    );
}


.hero-grid {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(300px, 0.65fr);

  gap: 80px;

  align-items: center;
}


.hero-copy {
  max-width: 850px;
}


.hero-premium h1 {
  max-width: 850px;

  margin: 20px 0 28px;

  font-size:
    clamp(
      3.3rem,
      7vw,
      6.7rem
    );

  line-height: 0.94;

  letter-spacing: -0.06em;
}


.hero-premium h1 span {
  display: block;

  color: #58c7ff;
}


.hero-lead {
  max-width: 720px;

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

  font-size: 1.16rem;

  line-height: 1.8;
}


.hero-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 14px;

  margin-top: 35px;
}


.hero-trust {
  display: flex;

  flex-wrap: wrap;

  gap: 45px;

  margin-top: 65px;
}


.hero-trust div {
  display: flex;

  flex-direction: column;

  gap: 4px;
}


.hero-trust strong {
  color: #fff;

  font-family: "JetBrains Mono", monospace;

  font-size: 1.7rem;
}


.hero-trust span {
  color: rgba(255,255,255,0.55);

  font-size: 0.75rem;

  text-transform: uppercase;

  letter-spacing: 0.08em;
}


.hero-panel {
  padding: 42px;

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

  border-radius: 28px;

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

  backdrop-filter: blur(20px);

  box-shadow:
    0 30px 100px rgba(0,0,0,0.25);
}


.hero-panel-label {
  color: #7dd3fc;

  font-family: "JetBrains Mono", monospace;

  font-size: 0.7rem;

  letter-spacing: 0.12em;
}


.hero-panel h2 {
  margin: 28px 0;

  color: #fff;

  font-size: 2.8rem;
}


.hero-panel p {
  color: rgba(255,255,255,0.66);

  line-height: 1.75;
}


.hero-panel-line {
  height: 1px;

  margin: 30px 0;

  background: rgba(255,255,255,0.15);
}


.hero-panel > span {
  color: rgba(255,255,255,0.55);

  font-size: 0.82rem;
}


/* =====================================================
   SECTIONS
===================================================== */

.section {
  padding: 110px 0;
}


.section-light-blue {
  background: var(--surface-blue);
}


.section-dark {
  color: #fff;

  background:
    radial-gradient(
      circle at top right,
      rgba(20,99,255,0.18),
      transparent 40%
    ),
    var(--dark);
}


.section-head {
  max-width: 760px;

  margin-bottom: 55px;
}


.section-head.center {
  margin-inline: auto;

  text-align: center;
}


.section-head.center .eyebrow {
  justify-content: center;
}


.section-head-light h2 {
  color: #fff;
}


.intro-section {
  background: #fff;
}


.intro-grid {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 90px;

  align-items: center;
}


/* =====================================================
   SERVICES
===================================================== */

.services-preview {
  background: var(--surface);
}


.service-image-grid {
  display: grid;

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

  gap: 22px;

  margin-top: 55px;
}


.service-image-card {
  position: relative;

  min-height: 420px;

  overflow: hidden;

  border-radius: var(--radius);

  color: #fff;

  background: var(--dark);

  box-shadow:
    0 20px 55px rgba(7,17,31,0.10);

  isolation: isolate;
}


.service-image-card-wide {
  grid-column: span 3;

  min-height: 360px;
}


.service-image-card img {
  position: absolute;

  inset: 0;

  z-index: -2;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.7s
    cubic-bezier(.2,.8,.2,1);
}


.service-image-card:hover img {
  transform: scale(1.08);
}


.service-image-overlay {
  position: absolute;

  inset: 0;

  z-index: -1;

  background:
    linear-gradient(
      180deg,
      rgba(3,10,20,0.04) 20%,
      rgba(3,10,20,0.94) 100%
    );
}


.service-image-content {
  position: absolute;

  right: 28px;
  bottom: 28px;
  left: 28px;
}


.service-number {
  display: inline-block;

  margin-bottom: 15px;

  color: var(--primary);

  font-family: "JetBrains Mono", monospace;

  font-size: 0.75rem;

  font-weight: 700;

  letter-spacing: 0.08em;
}


.service-image-card .service-number {
  color: #7dd3fc;
}


.service-image-content h3 {
  margin-bottom: 10px;

  color: #fff;

  font-size: 1.65rem;
}


.service-image-content p {
  max-width: 560px;

  margin-bottom: 18px;

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

  line-height: 1.6;
}


.service-link {
  color: #fff;

  font-size: 0.84rem;

  font-weight: 700;
}


.service-link::after {
  content: "  →";

  color: #38bdf8;
}


/* =====================================================
   BENEFITS
===================================================== */

.benefit-grid {
  display: grid;

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

  gap: 1px;

  overflow: hidden;

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

  border-radius: var(--radius);

  background: var(--border-light);
}


.benefit-card {
  min-height: 220px;

  padding: 32px;

  background: rgba(255,255,255,0.035);
}


.benefit-card span {
  color: #58c7ff;

  font-family: "JetBrains Mono", monospace;

  font-size: 0.75rem;
}


.benefit-card h3 {
  margin: 25px 0 12px;

  color: #fff;

  font-size: 1.25rem;
}


.benefit-card p {
  color: rgba(255,255,255,0.58);

  line-height: 1.7;
}


/* =====================================================
   PROCESS
===================================================== */

.process {
  display: grid;

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

  gap: 20px;
}


.process-step {
  position: relative;

  padding: 30px;

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

  border-radius: 18px;

  background: #fff;
}


.process-num {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 42px;
  height: 42px;

  margin-bottom: 25px;

  border-radius: 50%;

  color: var(--primary);

  background: #eff6ff;

  font-family: "JetBrains Mono", monospace;

  font-size: 0.7rem;

  font-weight: 700;
}


.process-step h4 {
  margin-bottom: 10px;

  font-size: 1.1rem;
}


.process-step p {
  font-size: 0.9rem;

  line-height: 1.7;
}


.process-light .process-step {
  border-color: rgba(255,255,255,0.10);

  background: rgba(255,255,255,0.035);
}


.process-light .process-step h4 {
  color: #fff;
}


.process-light .process-step p {
  color: rgba(255,255,255,0.55);
}


/* =====================================================
   PARTNERSHIP
===================================================== */

.partner-banner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;

  padding: 50px;

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

  border-radius: 24px;

  background: #fff;

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


.badge {
  display: inline-flex;

  padding: 7px 11px;

  border-radius: 999px;

  color: var(--primary);

  background: #eff6ff;

  font-size: 0.7rem;

  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}


.partner-banner h3 {
  margin: 16px 0 10px;

  font-size: 1.8rem;
}


.partner-banner p {
  max-width: 680px;
}


/* =====================================================
   CEO
===================================================== */

.ceo-block {
  display: grid;

  grid-template-columns:
    0.8fr
    1.2fr;

  gap: 80px;

  align-items: center;
}


.ceo-photo-wrap {
  position: relative;

  overflow: hidden;

  border-radius: 24px;

  background: var(--dark);
}


.ceo-photo-wrap img {
  width: 100%;

  min-height: 520px;

  display: block;

  object-fit: cover;
}


.ceo-caption {
  position: absolute;

  right: 20px;
  bottom: 20px;
  left: 20px;

  display: flex;

  flex-direction: column;

  gap: 3px;

  padding: 18px;

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

  border-radius: 14px;

  color: #fff;

  background: rgba(7,17,31,0.75);

  backdrop-filter: blur(12px);
}


.ceo-caption span {
  color: rgba(255,255,255,0.58);

  font-size: 0.8rem;
}


.ceo-quote {
  max-width: 780px;

  margin: 20px 0 25px;

  color: var(--text);

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(1.7rem, 3vw, 2.7rem);

  font-weight: 600;

  line-height: 1.2;

  letter-spacing: -0.035em;
}


.ceo-content > p:not(.eyebrow) {
  max-width: 700px;

  margin-bottom: 28px;

  line-height: 1.85;
}


/* =====================================================
   CTA
===================================================== */

.cta-band {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 35px;

  padding: 50px;

  border-radius: 25px;

  color: #fff;

  background:
    radial-gradient(
      circle at top right,
      rgba(56,189,248,0.30),
      transparent 35%
    ),
    var(--dark);
}


.cta-band h3 {
  margin-bottom: 10px;

  color: #fff;

  font-size: 2rem;
}


.cta-band p {
  color: rgba(255,255,255,0.62);
}


/* =====================================================
   PAGE HEADER
===================================================== */

.page-header {
  padding: 120px 0 90px;

  color: #fff;

  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(20,99,255,0.30),
      transparent 35%
    ),
    var(--dark);
}


.breadcrumb {
  display: flex;

  gap: 8px;

  margin-bottom: 30px;

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

  font-size: 0.85rem;
}


.breadcrumb a {
  color: #7dd3fc;
}


.page-header h1 {
  max-width: 900px;

  margin-bottom: 22px;

  color: #fff;

  font-size:
    clamp(
      3rem,
      7vw,
      5.8rem
    );
}


.page-header > .container > p:last-child {
  max-width: 760px;

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

  font-size: 1.1rem;

  line-height: 1.8;
}


/* =====================================================
   SERVICE TABS
===================================================== */

.service-tabs {
  display: flex;

  gap: 10px;

  overflow-x: auto;

  padding-bottom: 10px;

  margin-bottom: 35px;

  scrollbar-width: thin;
}


.tab-btn {
  flex: 0 0 auto;

  padding: 13px 17px;

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

  border-radius: 10px;

  color: #475569;

  background: #fff;

  font-size: 0.84rem;

  font-weight: 700;

  white-space: nowrap;

  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}


.tab-btn:hover,
.tab-btn.active {
  color: #fff;

  border-color: var(--primary);

  background: var(--primary);
}


.tab-panel {
  display: none;
}


.tab-panel.active {
  display: block;
}


.service-feature {
  display: grid;

  grid-template-columns:
    0.9fr
    1.1fr;

  min-height: 560px;

  overflow: hidden;

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

  border-radius: 28px;

  background: #fff;

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


.service-feature-image {
  min-height: 560px;

  overflow: hidden;
}


.service-feature-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.7s ease;
}


.service-feature:hover
.service-feature-image img {
  transform: scale(1.04);
}


.service-feature-content {
  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 65px;
}


.service-feature-content h2 {
  margin: 8px 0 22px;

  font-size:
    clamp(
      2.2rem,
      4vw,
      4rem
    );
}


.service-feature-content > p {
  max-width: 650px;

  margin-bottom: 25px;

  line-height: 1.8;
}


.tag-list {
  display: flex;

  flex-wrap: wrap;

  gap: 9px;
}


.tag {
  display: inline-flex;

  padding: 8px 11px;

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

  border-radius: 8px;

  color: #475569;

  background: #f8fafc;

  font-size: 0.76rem;

  font-weight: 600;
}


/* =====================================================
   PORTFOLIO
===================================================== */

.portfolio-grid {
  display: grid;

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

  gap: 24px;
}


.portfolio-card {
  overflow: hidden;

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

  border-radius: 20px;

  background: #fff;

  box-shadow:
    0 12px 35px rgba(7,17,31,0.06);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.portfolio-card:hover {
  transform: translateY(-7px);

  box-shadow:
    0 25px 55px rgba(7,17,31,0.12);
}


.portfolio-thumb {
  height: 270px;

  overflow: hidden;

  background: #e2e8f0;
}


.portfolio-thumb img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.6s ease;
}


.portfolio-card:hover
.portfolio-thumb img {
  transform: scale(1.06);
}


.portfolio-body {
  padding: 28px;
}


.portfolio-body .cat {
  color: var(--primary);

  font-family: "JetBrains Mono", monospace;

  font-size: 0.68rem;

  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}


.portfolio-body h3 {
  margin: 12px 0;

  font-size: 1.35rem;
}


.portfolio-body p {
  font-size: 0.9rem;

  line-height: 1.75;
}


/* =====================================================
   CONTACT
===================================================== */

.contact-grid {
  display: grid;

  grid-template-columns:
    1.1fr
    0.9fr;

  gap: 55px;

  align-items: start;
}


.contact-form-wrap,
.contact-info-card,
.contact-location {
  padding: 35px;

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

  border-radius: 22px;

  background: #fff;

  box-shadow:
    0 15px 45px rgba(7,17,31,0.06);
}


.form-row {
  display: grid;

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

  gap: 18px;
}


.form-group {
  display: flex;

  flex-direction: column;

  gap: 8px;

  margin-bottom: 20px;
}


.form-group label {
  color: var(--text);

  font-size: 0.85rem;

  font-weight: 700;
}


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

  padding: 14px 15px;

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

  border-radius: 10px;

  outline: none;

  color: var(--text);

  background: #f8fafc;

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


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

  box-shadow:
    0 0 0 4px rgba(20,99,255,0.10);
}


.form-group textarea {
  resize: vertical;

  min-height: 160px;
}


.contact-sidebar {
  display: grid;

  gap: 20px;
}


.contact-info-card h3 {
  margin: 10px 0 25px;

  font-size: 1.7rem;
}


.contact-detail {
  display: flex;

  flex-direction: column;

  gap: 3px;

  padding: 17px 0;

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


.contact-detail span {
  color: var(--muted);

  font-size: 0.75rem;

  text-transform: uppercase;

  letter-spacing: 0.08em;
}


.contact-detail a {
  color: var(--primary);

  font-weight: 700;
}


.contact-map {
  min-height: 360px;

  overflow: hidden;

  border-radius: 22px;

  box-shadow:
    0 15px 45px rgba(7,17,31,0.08);
}


.contact-map iframe {
  width: 100%;
  height: 360px;

  display: block;

  border: 0;
}


.contact-location h3 {
  margin: 8px 0 10px;

  font-size: 1.5rem;
}


.contact-location p {
  line-height: 1.75;
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
  padding: 75px 0 25px;

  color: #fff;

  background: var(--dark);
}


.footer-grid {
  display: grid;

  grid-template-columns:
    1.5fr
    0.7fr
    1fr
    1fr;

  gap: 50px;
}


.footer-brand .brand {
  margin-bottom: 20px;
}


.footer-brand .brand span {
  color: #fff;
}


.footer-brand p {
  max-width: 390px;

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

  line-height: 1.8;
}


.footer-col h5 {
  margin-bottom: 18px;

  color: #fff;

  font-size: 0.85rem;

  letter-spacing: 0.04em;
}


.footer-col ul {
  display: grid;

  gap: 10px;

  list-style: none;
}


.footer-col a {
  color: rgba(255,255,255,0.58);

  font-size: 0.88rem;

  transition: color 0.2s ease;
}


.footer-col a:hover {
  color: #7dd3fc;
}


.footer-partner-note {
  margin-top: 20px;

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

  font-size: 0.78rem;

  line-height: 1.6;
}


.footer-bottom {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  margin-top: 55px;

  padding-top: 22px;

  border-top: 1px solid rgba(255,255,255,0.10);

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

  font-size: 0.75rem;
}


/* =====================================================
   ACCESSIBILITY
===================================================== */

:focus-visible {
  outline: 3px solid rgba(20,99,255,0.45);

  outline-offset: 3px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

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

    gap: 45px;
  }


  .hero-panel {
    max-width: 520px;
  }


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


  .service-image-card-wide {
    grid-column: span 2;
  }


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


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


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


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

}


@media (max-width: 800px) {

  .section {
    padding: 80px 0;
  }


  .nav {
    min-height: 70px;
  }


  .nav-links {
    position: fixed;

    top: 70px;

    left: 20px;
    right: 20px;

    display: none;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    padding: 10px;

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

    border-radius: 16px;

    background: #fff;

    box-shadow:
      0 25px 70px rgba(7,17,31,0.16);
  }


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


  .nav-links a {
    padding: 14px;
  }


  .nav-links a::after {
    display: none;
  }


  .nav-cta > .btn {
    display: none;
  }


  .nav-toggle {
    display: block;
  }


  .intro-grid,
  .ceo-block,
  .contact-grid,
  .service-feature {
    grid-template-columns: 1fr;
  }


  .hero-premium {
    min-height: 780px;
  }


  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(3,10,20,0.86),
        rgba(3,10,20,0.97)
      );
  }


  .hero-panel {
    display: none;
  }


  .hero-trust {
    margin-top: 45px;
  }


  .service-feature-image {
    min-height: 330px;
  }


  .service-feature-content {
    padding: 40px;
  }


  .ceo-photo-wrap img {
    min-height: 420px;
  }


  .partner-banner,
  .cta-band {
    flex-direction: column;

    align-items: flex-start;

    padding: 35px;
  }


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

}


@media (max-width: 650px) {

  .container {
    width: min(
      calc(100% - 28px),
      var(--container)
    );
  }


  .hero-premium h1 {
    font-size:
      clamp(
        3rem,
        15vw,
        4.8rem
      );
  }


  .hero-lead {
    font-size: 1rem;
  }


  .hero-trust {
    gap: 24px;
  }


  .service-image-grid,
  .benefit-grid,
  .process,
  .portfolio-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }


  .service-image-card,
  .service-image-card-wide {
    grid-column: auto;

    min-height: 390px;
  }


  .service-feature-content {
    padding: 30px;
  }


  .page-header {
    padding: 90px 0 65px;
  }


  .page-header h1 {
    font-size: 3rem;
  }


  .footer-bottom {
    flex-direction: column;
  }


  .contact-form-wrap,
  .contact-info-card,
  .contact-location {
    padding: 25px;
  }

}


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

  html {
    scroll-behavior: auto;
  }


  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }

}