:root {
  --bg-1: #cfe2ea;
  --bg-2: #b6c8d2;
  --card-bg: #ffffff;
  --text: #1a2730;
  --text-soft: #4a5963;
  --on-image: #ffffff;
  --on-image-soft: rgba(255, 255, 255, 0.78);
  --accent: #2bb3b8;
  --accent-2: #1f9aa0;
  --cta: #f2a44b;
  --cta-2: #e8923a;
  --card-soft: rgba(255, 255, 255, 0.78);
  --card-border: rgba(255, 255, 255, 0.55);
  --shadow: 0 30px 60px -20px rgba(20, 40, 60, 0.35),
            0 8px 20px -10px rgba(20, 40, 60, 0.25);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: transparent;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
}

/* ===== Hero card ===== */
.hero-card {
  position: relative;
  width: 100%;
  min-height: 100vh;
  border-radius: 0;
  overflow: hidden;
  background: #0e1d24;
  isolation: isolate;
}

.hero-card.is-compact {
  min-height: auto;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("Asset's/Background.jpg");
  background-size: cover;
  background-position: center;
  background-color: #0e1d24;
  z-index: 0;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0.05) 80%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.35) 100%);
}

/* ===== Header / Brand / Nav ===== */
.header {
  position: absolute;
  top: 26px;
  left: 36px;
  right: 36px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.brand-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: 999px;
  transition: color 0.2s ease;
}

.nav-link:hover { color: var(--accent-2); }

.nav-link.is-active {
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(43, 179, 184, 0.35);
}

/* ===== Hero content ===== */
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  max-width: 520px;
  padding: 110px 0 0 60px;
  z-index: 3;
  color: var(--on-image);
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 5.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.hero-title .dot { color: var(--on-image); }

.hero-subtitle {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--on-image-soft);
  margin: 0 0 28px;
  max-width: 420px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--cta);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(242, 164, 75, 0.4);
}
.btn-primary:hover {
  background: var(--cta-2);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

/* ===== Footer ===== */
.footer {
  background: #0a151b;
  color: #c8d2d8;
  padding: 64px 36px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 48px;
}

.footer-col .brand {
  color: #ffffff;
  text-shadow: none;
  margin-bottom: 16px;
}

.footer-col .brand-name {
  color: #ffffff;
  text-shadow: none;
}

.footer-tagline {
  font-size: 13.5px;
  line-height: 1.6;
  color: #95a3ad;
  margin: 0;
  max-width: 320px;
}

.footer-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin: 0 0 18px;
}

.footer-links,
.footer-contact,
.footer-socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #c8d2d8;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--accent); }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #c8d2d8;
}
.footer-contact a {
  color: #c8d2d8;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-contact a:hover { color: var(--accent); }
.footer-contact svg { color: var(--accent); flex-shrink: 0; }

.footer-socials {
  flex-direction: row;
  gap: 10px;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #c8d2d8;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.footer-socials a:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #95a3ad;
}

.footer-legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: #95a3ad;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: var(--accent); }

@media (max-width: 900px) {
  .footer { padding: 48px 24px 24px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== Socials ===== */
.socials {
  position: absolute;
  bottom: 28px;
  left: 50px;
  z-index: 4;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(20, 30, 38, 0.55);
  color: #ffffff;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.socials a:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
}

/* ===== Page hero (inner pages) ===== */
.page-hero {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 760px;
  padding: 100px 60px 0;
  color: #ffffff;
}

.page-hero .accent {
  color: var(--accent);
}

.page-hero .hero-title { font-size: clamp(36px, 5vw, 64px); }

/* ===== Content section (inner pages) ===== */
.content-section {
  background: #ffffff;
  color: var(--text);
  padding: 20px 36px 40px;
}

.content-grid {
  max-width: 1100px;
  margin: 0 auto;
}

.content-block { margin-bottom: 24px; }
.content-block p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0 0 12px;
}

.section-title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

/* ===== About page extras ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid #e6ecef;
  border-bottom: 1px solid #e6ecef;
  margin: 16px 0 24px;
}

.stat-item { text-align: center; }
.stat-big {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-2);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-small {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.value-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.value-list li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-soft);
  padding-left: 18px;
  position: relative;
}
.value-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.value-list strong { color: var(--text); }

/* ===== Legal pages (Privacy / Terms) ===== */
.legal-content {
  max-width: 820px;
}
.legal-content .content-block {
  margin-bottom: 28px;
}
.legal-content .section-title {
  font-size: 20px;
  margin-bottom: 12px;
}
.legal-content p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0 0 12px;
}
.legal-content a {
  color: var(--accent-2);
  text-decoration: none;
}
.legal-content a:hover { text-decoration: underline; }

.legal-list {
  list-style: none;
  margin: 8px 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-subtitle {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  margin: 14px 0 6px;
  text-transform: none;
  letter-spacing: 0;
}
.legal-list li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-soft);
  padding-left: 18px;
  position: relative;
}
.legal-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}
.legal-list strong { color: var(--text); }

/* ===== Services page ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.service-card {
  background: #f7f9fa;
  border: 1px solid #e6ecef;
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 28px rgba(43, 179, 184, 0.12);
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(43, 179, 184, 0.12);
  color: var(--accent-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 10px;
}
.service-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0;
}

.cta-banner {
  background: linear-gradient(135deg, #0e1d24 0%, #15303a 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cta-banner h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}
.cta-banner p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 12px;
}
.cta-banner .btn-primary {
  background: var(--cta);
  color: #ffffff;
}
.cta-banner .btn-primary:hover { background: var(--cta-2); }

/* ===== Contact page (light hero) ===== */
.hero-card-light {
  background: #ffffff !important;
}
.contact-bg {
  background: transparent !important;
}
.contact-bg::after {
  display: none;
}

.page-hero-light {
  color: #1a2730;
  text-shadow: none;
}
.page-hero-light .hero-title {
  color: #1a2730;
  text-shadow: none;
}
.page-hero-light .hero-subtitle {
  color: rgba(26, 39, 48, 0.78);
  text-shadow: none;
}
.page-hero-light .accent { color: var(--cta-2); }

.hero-card-light .brand,
.hero-card-light .brand-name {
  color: #1a2730;
  text-shadow: none;
}

.hero-card-light .nav-pill {
  background: #ffffff;
  border: 1px solid #e6ecef;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.hero-card-light .nav-link:not(.is-active) {
  color: var(--text);
}

.hero-image-light {
  background-image: none !important;
  background-color: transparent !important;
}
.hero-image-light::after { display: none !important; }

.hero-image-index {
  background-image: url("Asset's/image1.jpg") !important;
  background-size: cover;
  background-position: center;
  background-color: #2a3741;
}
.hero-image-index::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0) 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.25) 100%);
}

.hero-content-light {
  color: #1a2730;
}
.hero-content-light .hero-title {
  color: #1a2730;
  text-shadow: none;
}
.hero-content-light .hero-subtitle {
  color: rgba(26, 39, 48, 0.78);
  text-shadow: none;
}

.hero-content-index {
  color: #1a2730;
}
.hero-content-index .hero-title {
  color: #1a2730;
  text-shadow: none;
}
.hero-content-index .hero-subtitle {
  color: rgba(26, 39, 48, 0.85);
  text-shadow: none;
}

.hero-card-light .socials a {
  background: rgba(26, 39, 48, 0.08);
  color: var(--text);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.hero-card-light .socials a:hover {
  background: var(--accent-2);
  color: #ffffff;
}

.header-on-light .brand,
.header-on-light .brand-name {
  color: #1a2730;
  text-shadow: none;
}
.header-on-light .nav-pill {
  background: #ffffff;
  border: 1px solid #e6ecef;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.header-on-light .nav-link:not(.is-active) {
  color: var(--text);
}

.contact-list-on-light {
  max-width: 560px;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px 16px;
}
.contact-list-on-light li {
  flex: 1 1 180px;
  align-items: center;
}
.contact-list-on-light .contact-icon {
  background: rgba(0, 0, 0, 0.08);
  color: var(--cta-2);
  width: 38px;
  height: 38px;
  border-radius: 50%;
}
.contact-list-on-light .contact-label {
  color: rgba(26, 39, 48, 0.6);
}
.contact-list-on-light a,
.contact-list-on-light span {
  color: #1a2730;
  font-weight: 500;
}
.contact-list-on-light a:hover { color: var(--cta-2); }

.page-hero-light .contact-section-title {
  color: rgba(26, 39, 48, 0.6);
  border-top-color: rgba(26, 39, 48, 0.18);
  margin-top: 20px;
  padding-top: 16px;
}

.contact-section-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.65);
  margin: 20px 0 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  max-width: 560px;
}

.contact-list-on-dark {
  max-width: 560px;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px 36px;
}
.contact-list-on-dark li {
  flex: 1 1 220px;
  align-items: center;
}
.contact-list-on-dark .contact-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--accent);
  width: 38px;
  height: 38px;
  border-radius: 50%;
}
.contact-list-on-dark .contact-label {
  color: rgba(255, 255, 255, 0.6);
}
.contact-list-on-dark a,
.contact-list-on-dark span {
  color: #ffffff;
  font-weight: 500;
}
.contact-list-on-dark a:hover { color: var(--accent); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(43, 179, 184, 0.12);
  color: var(--accent-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  margin-bottom: 4px;
}
.contact-list a,
.contact-list span {
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
}
.contact-list a:hover { color: var(--accent-2); }

.contact-form {
  background: #f7f9fa;
  border: 1px solid #e6ecef;
  border-radius: 18px;
  padding: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea {
  font: inherit;
  font-size: 14.5px;
  color: var(--text);
  background: #ffffff;
  border: 1px solid #d6dde2;
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(43, 179, 184, 0.15);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-primary {
  width: 100%;
  margin-top: 6px;
}

/* ===== Responsive ===== */

/* Hide hamburger on desktop */
.nav-toggle-input,
.nav-toggle-label {
  display: none;
}

/* Tablet & below */
@media (max-width: 900px) {
  .page { padding: 0; }

  .header {
    top: 16px;
    left: 16px;
    right: 16px;
    gap: 12px;
  }

  .brand-logo { width: 44px; height: 44px; }
  .brand-name { font-size: 14px; }

  /* Show hamburger */
  .nav-toggle-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e6ecef;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
  }
  .nav-toggle-label span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  .nav-toggle-input:checked + .nav-toggle-label span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle-input:checked + .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle-input:checked + .nav-toggle-label span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Hide nav by default on mobile */
  .nav-pill {
    position: absolute;
    top: 60px;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #e6ecef;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    min-width: 180px;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav-toggle-input:checked ~ .nav-pill {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-link {
    padding: 10px 16px;
    font-size: 14px;
    text-align: left;
  }
  .nav-link.is-active {
    box-shadow: none;
  }

  /* Hero on mobile */
  .hero-content {
    width: 100%;
    max-width: none;
    padding: 100px 24px 40px;
  }
  .hero-subtitle { font-size: 14px; }
  .btn { padding: 11px 20px; font-size: 13.5px; }

  /* Page hero (inner pages) */
  .page-hero {
    padding: 100px 24px 30px;
  }
  .page-hero .hero-title { font-size: clamp(28px, 8vw, 44px); }

  /* Content sections */
  .content-section { padding: 36px 22px; }
  .content-block p { font-size: 15px; }
  .section-title { font-size: 22px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .service-card { padding: 22px 18px; }
  .service-card h3 { font-size: 16px; }
  .service-card p { font-size: 14px; }
  .cta-banner { padding: 32px 22px; }
  .cta-banner h2 { font-size: 22px; }

  /* About stats */
  .stats-row { grid-template-columns: 1fr; gap: 18px; padding: 20px 0; }
  .stat-big { font-size: 28px; }

  /* Contact page */
  .contact-list-on-light {
    flex-direction: column;
    gap: 14px;
  }
  .contact-list-on-light li {
    flex: 1 1 100%;
  }
  .contact-section-title { margin-top: 16px; padding-top: 14px; }
  .contact-form { padding: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Footer */
  .footer { padding: 48px 22px 22px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .footer-legal { justify-content: center; }
}

/* Mobile */
@media (max-width: 520px) {
  .hero-content { padding: 90px 20px 30px; }
  .page-hero { padding: 90px 20px 24px; }
  .content-section { padding: 32px 20px; }

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

  .brand-name { display: none; }
  .header { gap: 8px; }

  .footer-bottom p { font-size: 12px; }
  .footer-legal { gap: 16px; flex-wrap: wrap; }
}
  .socials { left: 28px; bottom: 20px; }
}

@media (max-width: 480px) {
  .nav-pill { gap: 2px; }
  .nav-link { padding: 7px 10px; font-size: 12px; }
}
