/* ============================================
   JAVARO — MAIN STYLESHEET
   Premium Commerce & Distribution
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ============ CSS VARIABLES ============ */
:root {
  --bg:           #F7F6F3;
  --bg-subtle:    #F0EEE9;
  --text:         #111111;
  --text-sec:     #555555;
  --gold:         #C8A96B;
  --gold-light:   #D9BC8A;
  --gold-dark:    #A8893B;
  --border:       #E5E2DA;
  --white:        #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --nav-h:        80px;
  --section-pad:  120px;
  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============ TYPOGRAPHY ============ */
.display-heading {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--text);
}

p {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-sec);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ============ UTILITIES ============ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.gold-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.gold-rule::before,
.gold-rule::after {
  content: '';
  flex: 0 0 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.gold-diamond {
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes lineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============ NAVIGATION ============ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}

#nav.scrolled {
  background: rgba(247, 246, 243, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  height: 68px;
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 92px;
  width: auto;
  transition: height var(--transition), opacity var(--transition);
}

#nav.scrolled .nav-logo img { height: 72px; }

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

.nav-links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-sec);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 10px 22px;
  transition: background var(--transition), color var(--transition) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: var(--transition);
}

/* ============ HERO ============ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-lines::before,
.hero-bg-lines::after {
  content: '';
  position: absolute;
  border: 1px solid var(--border);
}

.hero-bg-lines::before {
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 90vw);
  height: min(900px, 90vw);
  border-radius: 50%;
  opacity: 0.5;
}

.hero-bg-lines::after {
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 60vw);
  height: min(600px, 60vw);
  border-radius: 50%;
  opacity: 0.35;
}

.hero-logo {
  margin-bottom: 52px;
  animation: fadeIn 1.2s ease forwards;
}

.hero-logo img {
  height: 160px;
  width: auto;
  margin: 0 auto;
}

.hero-label {
  animation: fadeUp 0.8s ease 0.2s both;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-heading {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease 0.35s both;
  max-width: 880px;
}

.hero-heading em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-sec);
  max-width: 520px;
  margin: 0 auto 56px;
  animation: fadeUp 0.8s ease 0.5s both;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: fadeUp 0.8s ease 0.65s both;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 16px 40px;
  transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-sec);
  transition: color var(--transition);
}

.btn-secondary::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: width var(--transition);
}

.btn-secondary:hover { color: var(--text); }
.btn-secondary:hover::after { width: 40px; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeIn 1s ease 1s both;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ============ DIVIDER ============ */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 40px;
  margin: 0 auto;
  max-width: 1160px;
}

.section-divider .line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ============ ABOUT ============ */
#about {
  padding: var(--section-pad) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-left .section-label { margin-bottom: 20px; }
.about-left .section-title { margin-bottom: 24px; }
.about-left p { margin-bottom: 18px; }

.about-left p:last-of-type { margin-bottom: 36px; }

.about-stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.stat-item {}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-sec);
}

.about-right {
  position: relative;
}

.about-image-frame {
  position: relative;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 40px;
}

.about-image-frame::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  right: -14px;
  bottom: -14px;
  border: 1px solid var(--border);
  pointer-events: none;
  z-index: -1;
}

.about-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-subtle) 0%, var(--border) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.about-placeholder .ph-icon {
  width: 56px;
  height: 56px;
  opacity: 0.3;
}

.about-placeholder p {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* ============ CAPABILITIES ============ */
#capabilities {
  padding: var(--section-pad) 0;
  background: var(--text);
  position: relative;
  overflow: hidden;
}

.capabilities-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.capabilities-bg::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,107,0.06) 0%, transparent 70%);
}

.capabilities-header {
  text-align: center;
  margin-bottom: 80px;
}

.capabilities-header .section-label { margin-bottom: 20px; }

.capabilities-header .section-title {
  color: var(--white);
  margin-bottom: 20px;
}

.capabilities-header p {
  color: rgba(255,255,255,0.45);
  max-width: 480px;
  margin: 0 auto;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}

.cap-card {
  background: var(--text);
  padding: 48px 40px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}

.cap-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.cap-card:hover {
  background: rgba(255,255,255,0.03);
}

.cap-card:hover::before {
  transform: scaleX(1);
}

.cap-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 24px;
  font-style: italic;
}

.cap-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  opacity: 0.6;
}

.cap-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.cap-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}

/* ============ PROCESS ============ */
#process {
  padding: var(--section-pad) 0;
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-header .section-label { margin-bottom: 20px; }
.process-header .section-title { margin-bottom: 16px; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: var(--border);
}

.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.step-node {
  width: 64px;
  height: 64px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  background: var(--bg);
  position: relative;
  z-index: 1;
  transition: border-color var(--transition), background var(--transition);
}

.process-step:hover .step-node {
  border-color: var(--gold);
  background: rgba(200,169,107,0.05);
}

.step-node-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-sec);
  line-height: 1.7;
}

/* ============ TRUST ============ */
#trust {
  padding: var(--section-pad) 0;
  background: var(--bg-subtle);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.trust-left .section-label { margin-bottom: 20px; }
.trust-left .section-title { margin-bottom: 28px; }
.trust-left p { margin-bottom: 40px; }

.trust-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.trust-pillar {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.trust-pillar:first-child { border-top: 1px solid var(--border); }

.pillar-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.pillar-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
}

.pillar-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}

.pillar-text span {
  font-size: 0.85rem;
  color: var(--text-sec);
  line-height: 1.7;
}

.trust-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition);
}

.trust-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.trust-card-icon {
  margin-bottom: 16px;
}

.trust-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
}

.trust-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 0.83rem;
  line-height: 1.65;
}

/* ============ CTA BAND ============ */
#cta-band {
  padding: 100px 0;
  background: var(--text);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-band::before {
  content: 'JAVARO';
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 300;
  color: rgba(255,255,255,0.025);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.08em;
}

.cta-band-label { margin-bottom: 24px; }

.cta-band-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-band-heading em {
  font-style: italic;
  color: var(--gold);
}

.cta-band-sub {
  color: rgba(255,255,255,0.45);
  max-width: 420px;
  margin: 0 auto 52px;
  font-size: 0.92rem;
}

.cta-band-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  padding: 16px 40px;
  transition: border-color var(--transition), color var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============ CONTACT ============ */
#contact {
  padding: var(--section-pad) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}

.contact-left .section-label { margin-bottom: 20px; }
.contact-left .section-title { margin-bottom: 20px; }
.contact-left > p { margin-bottom: 48px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.contact-item-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
}

.contact-item strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
  font-weight: 500;
}

.contact-item span, .contact-item a {
  font-size: 0.9rem;
  color: var(--text-sec);
  transition: color var(--transition);
}

.contact-item a:hover { color: var(--gold); }

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-sec);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: 1px solid var(--border);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(85,85,85,0.4);
}

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

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

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 42px;
}

.form-submit {
  align-self: flex-start;
}

/* ============ FOOTER ============ */
footer {
  background: var(--text);
  padding: 64px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 36px;
}

.footer-brand img {
  height: 72px;
  width: auto;
  margin-bottom: 20px;
  filter: none;
  opacity: 1;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

.footer-legal {
  display: flex;
  gap: 28px;
}

.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  transition: color var(--transition);
}

.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ============ MOBILE NAV MENU ============ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
  stroke: var(--text);
  fill: none;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  :root { --section-pad: 90px; }

  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-right { display: none; }
  .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; gap: 60px; }
  .trust-right { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px; --nav-h: 68px; }

  .container { padding: 0 24px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-logo img { height: 110px; }
  .hero-actions { flex-direction: column; gap: 20px; }

  .capabilities-grid { grid-template-columns: 1fr; }
  .cap-card { padding: 36px 28px; }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .process-steps::before { display: none; }

  .trust-right { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 28px; }

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

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-logo img { height: 88px; }
  .process-steps { grid-template-columns: 1fr; }
}
