/* ============================================================
   Mighty Shark — Ocean / Marine Dynamic Stylesheet
   Palette: ocean-mist #F0F9FF, deep-ocean #0F172A,
            ocean-blue #0284C7, cyan #06B6D4, gold #F59E0B
   ============================================================ */

/* --- RESET & BASE ----------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0F172A;
  background-color: #F0F9FF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: #0284C7;
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover,
a:focus-visible {
  color: #0369A1;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #0F172A;
}

/* --- ACCESSIBILITY ---------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid #06B6D4;
  outline-offset: 2px;
}

/* --- CONTAINER -------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- NAVIGATION ------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #FFFFFF;
  border-bottom: 1px solid #E0F2FE;
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.02em;
}

.nav-brand img {
  width: 40px;
  height: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: #475569;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0284C7;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #0284C7;
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #0F172A;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* --- HERO ------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0F172A;
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(2, 132, 199, 0.15), transparent),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(6, 182, 212, 0.1), transparent);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding-top: 40px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-content h1 span {
  background: linear-gradient(135deg, #06B6D4, #0284C7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.2rem;
  color: #94A3B8;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
  text-align: center;
}

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

.btn-primary {
  background: linear-gradient(135deg, #0284C7, #06B6D4);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(2, 132, 199, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(2, 132, 199, 0.5);
}

.btn-outline {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
}

/* Hero decorative circle */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-circle {
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  border-radius: 50%;
  border: 2px solid rgba(6, 182, 212, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-circle::before {
  content: '';
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15), transparent 70%);
  animation: pulse-circle 3s ease-in-out infinite;
}

.hero-circle-inner {
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: linear-gradient(135deg, #0284C7, #06B6D4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(6, 182, 212, 0.4);
}

.hero-circle-inner svg {
  width: 50%;
  height: 50%;
  fill: #FFFFFF;
}

@keyframes pulse-circle {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.12); opacity: 1; }
}

/* Wave divider at bottom of hero */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

/* --- SECTIONS --------------------------------------------- */
.section {
  padding: 100px 0;
}

.section-light {
  background: #F0F9FF;
}

.section-white {
  background: #FFFFFF;
}

.section-dark {
  background: #0F172A;
  color: #FFFFFF;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0284C7;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-dark .section-title {
  color: #FFFFFF;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #64748B;
  max-width: 600px;
  margin: 16px auto 0;
}

.section-dark .section-subtitle {
  color: #94A3B8;
}

/* --- TRUST BAR -------------------------------------------- */
.trust-bar {
  padding: 48px 0;
  background: #FFFFFF;
  border-bottom: 1px solid #E0F2FE;
}

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

.trust-card {
  text-align: center;
  padding: 32px 20px 28px;
  border-radius: 12px;
  background: #F8FAFC;
  border-top: 4px solid #0284C7;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:nth-child(2) {
  border-top-color: #06B6D4;
}

.trust-card:nth-child(3) {
  border-top-color: #F59E0B;
}

.trust-card:nth-child(4) {
  border-top-color: #0284C7;
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.trust-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.trust-card:nth-child(1) .trust-card-icon { background: #E0F2FE; color: #0284C7; }
.trust-card:nth-child(2) .trust-card-icon { background: #CFFAFE; color: #06B6D4; }
.trust-card:nth-child(3) .trust-card-icon { background: #FEF3C7; color: #F59E0B; }
.trust-card:nth-child(4) .trust-card-icon { background: #E0F2FE; color: #0284C7; }

.trust-card h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 4px;
}

.trust-card p {
  font-size: 0.9rem;
  color: #64748B;
}

/* --- SERVICES --------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px 32px 36px;
  border-top: 5px solid #0284C7;
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:nth-child(2) { border-top-color: #06B6D4; }
.service-card:nth-child(3) { border-top-color: #F59E0B; }
.service-card:nth-child(4) { border-top-color: #06B6D4; }
.service-card:nth-child(5) { border-top-color: #0284C7; }
.service-card:nth-child(6) { border-top-color: #F59E0B; }

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.6rem;
}

.service-card:nth-child(1) .service-card-icon { background: #E0F2FE; color: #0284C7; }
.service-card:nth-child(2) .service-card-icon { background: #CFFAFE; color: #06B6D4; }
.service-card:nth-child(3) .service-card-icon { background: #FEF3C7; color: #F59E0B; }
.service-card:nth-child(4) .service-card-icon { background: #CFFAFE; color: #06B6D4; }
.service-card:nth-child(5) .service-card-icon { background: #E0F2FE; color: #0284C7; }
.service-card:nth-child(6) .service-card-icon { background: #FEF3C7; color: #F59E0B; }

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* --- CAPABILITIES ----------------------------------------- */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  justify-items: center;
}

.cap-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.cap-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.cap-circle::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed currentColor;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cap-badge:hover .cap-circle {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(2, 132, 199, 0.2);
}

.cap-badge:hover .cap-circle::after {
  opacity: 0.25;
}

.cap-badge:nth-child(1) .cap-circle { background: #E0F2FE; color: #0284C7; }
.cap-badge:nth-child(2) .cap-circle { background: #CFFAFE; color: #06B6D4; }
.cap-badge:nth-child(3) .cap-circle { background: #FEF3C7; color: #F59E0B; }
.cap-badge:nth-child(4) .cap-circle { background: #E0F2FE; color: #0284C7; }
.cap-badge:nth-child(5) .cap-circle { background: #CFFAFE; color: #06B6D4; }
.cap-badge:nth-child(6) .cap-circle { background: #FEF3C7; color: #F59E0B; }
.cap-badge:nth-child(7) .cap-circle { background: #E0F2FE; color: #0284C7; }
.cap-badge:nth-child(8) .cap-circle { background: #CFFAFE; color: #06B6D4; }

.cap-badge span {
  font-weight: 700;
  font-size: 0.95rem;
  color: #0F172A;
}

/* --- PROCESS ---------------------------------------------- */
.process-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.process-flow::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: linear-gradient(90deg, #0284C7, #06B6D4, #F59E0B);
  border-radius: 2px;
  z-index: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}

.process-marker {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid #0284C7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  font-weight: 800;
  color: #0284C7;
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.15);
  transition: transform 0.3s ease;
}

.process-step:nth-child(2) .process-marker { border-color: #06B6D4; color: #06B6D4; }
.process-step:nth-child(3) .process-marker { border-color: #F59E0B; color: #F59E0B; }
.process-step:nth-child(4) .process-marker { border-color: #0284C7; color: #0284C7; }

.process-step:hover .process-marker {
  transform: scale(1.1);
}

.process-step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.9rem;
  color: #64748B;
}

/* --- ABOUT ------------------------------------------------ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}

.about-highlight {
  text-align: center;
}

.about-number {
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg, #0284C7 0%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-number-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #64748B;
  margin-top: 8px;
}

.about-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.about-text p {
  color: #475569;
  margin-bottom: 16px;
  line-height: 1.75;
  font-size: 1.05rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* --- VALUES ----------------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px 28px 32px;
  text-align: center;
  box-shadow: 0 2px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.value-card:nth-child(1) .value-icon { background: #E0F2FE; color: #0284C7; }
.value-card:nth-child(2) .value-icon { background: #CFFAFE; color: #06B6D4; }
.value-card:nth-child(3) .value-icon { background: #FEF3C7; color: #F59E0B; }

.value-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p {
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* --- CONTACT ---------------------------------------------- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 2px 28px rgba(15, 23, 42, 0.06);
}

.contact-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: #0F172A;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E2E8F0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  color: #0F172A;
  background: #F8FAFC;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0284C7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-item:nth-child(1) .contact-info-icon { background: #E0F2FE; color: #0284C7; }
.contact-info-item:nth-child(2) .contact-info-icon { background: #CFFAFE; color: #06B6D4; }
.contact-info-item:nth-child(3) .contact-info-icon { background: #FEF3C7; color: #F59E0B; }

.contact-info-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-info-item p {
  color: #64748B;
  font-size: 0.95rem;
}

/* --- FOOTER ----------------------------------------------- */
.footer {
  background: #0F172A;
  color: #FFFFFF;
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-brand p {
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: #F59E0B;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: #94A3B8;
  font-size: 0.95rem;
  margin-bottom: 10px;
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: #06B6D4;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: #64748B;
  font-size: 0.85rem;
}

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

.footer-bottom-links a {
  color: #64748B;
  font-size: 0.85rem;
}

.footer-bottom-links a:hover {
  color: #F59E0B;
}

/* --- SCROLL ANIMATIONS ------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.25s; }
.delay-4 { transition-delay: 0.3s; }
.delay-5 { transition-delay: 0.35s; }
.delay-6 { transition-delay: 0.4s; }

/* --- LEGAL PAGES ------------------------------------------ */
.legal-page {
  padding-top: 120px;
  padding-bottom: 80px;
  background: #F0F9FF;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 56px 52px;
  box-shadow: 0 2px 24px rgba(15, 23, 42, 0.05);
}

.legal-content h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.legal-content .last-updated {
  color: #64748B;
  font-size: 0.9rem;
  margin-bottom: 36px;
}

.legal-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 14px;
  color: #0284C7;
}

.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 10px;
  color: #0F172A;
}

.legal-content p {
  color: #334155;
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  color: #334155;
  margin-bottom: 8px;
  line-height: 1.65;
}

.legal-content strong {
  color: #0F172A;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0284C7;
  font-weight: 600;
  margin-bottom: 32px;
  transition: color 0.25s ease;
}

.legal-back:hover {
  color: #0369A1;
}

/* --- RESPONSIVE ------------------------------------------- */
@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .capabilities-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

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

  .value-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    justify-self: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: #FFFFFF;
    padding: 100px 32px 40px;
    gap: 24px;
    box-shadow: -4px 0 24px rgba(15, 23, 42, 0.1);
    transition: right 0.35s ease;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-circle {
    width: min(240px, 60vw);
    height: min(240px, 60vw);
  }

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

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .process-flow {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .process-flow::before {
    top: 0;
    bottom: 0;
    left: 40px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    width: 100%;
    max-width: 360px;
  }

  .process-marker {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    margin: 0;
    font-size: 1.3rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .about-highlight {
    order: -1;
  }

  .about-number {
    font-size: 5rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .value-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .legal-content {
    padding: 36px 24px;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .cap-circle {
    width: 80px;
    height: 80px;
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .process-marker {
    margin: 0 auto;
  }
}
