/* =========================================
   GoTech Solutions – styles.css
   Brand Palette: Deep Navy → Royal Blue → Steel Blue → Ice Blue
   ========================================= */

:root {
  /* Brand palette from colour swatch */
  --navy:       #0a1628;   /* deepest dark */
  --royal:      #0d3b6e;   /* royal navy */
  --mid:        #0066a4;   /* core brand blue */
  --steel:      #4a8fad;   /* steel blue accent */
  --ice:        #b8d4e0;   /* light ice */
  --ice-light:  #dbeafe;
  --white:      #ffffff;
  --gray-50:    #f8fafc;
  --gray-100:   #f1f5f9;
  --gray-200:   #e2e8f0;
  --gray-400:   #94a3b8;
  --gray-600:   #475569;
  --gray-900:   #0f172a;
  --wa-green:   #25d366;

  --font-display: 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;
  --radius:    14px;
  --radius-sm:  8px;
  --shadow-card:  0 4px 24px rgba(10, 22, 40, 0.09);
  --shadow-hover: 0 12px 40px rgba(0, 102, 164, 0.22);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 600;
  border-radius: 50px; padding: 14px 30px; cursor: pointer;
  transition: var(--transition); border: 2px solid transparent; letter-spacing: 0.01em;
}
.btn-primary { background: var(--mid); color: var(--white); border-color: var(--mid); }
.btn-primary:hover { background: var(--royal); border-color: var(--royal); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,102,164,0.38); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-2px); }
.btn-whatsapp { background: var(--wa-green); color: var(--white); border-color: var(--wa-green); margin-top: 12px; font-size: 0.88rem; padding: 10px 22px; }
.btn-whatsapp:hover { background: #1da851; border-color: #1da851; transform: translateY(-2px); }
.btn.full-width { width: 100%; justify-content: center; }

.section-tag {
  display: inline-block;
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mid); background: #e8f4fb; border: 1px solid var(--ice);
  padding: 5px 14px; border-radius: 50px; margin-bottom: 16px;
}
.section-header { text-align: center; max-width: 580px; margin: 0 auto 64px; }
.section-header h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; color: var(--gray-900); margin-bottom: 14px; line-height: 1.15;
}
.section-header p { color: var(--gray-600); font-size: 1.05rem; font-weight: 300; }
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,0.7); }
.section-header.light .section-tag { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); color: var(--ice); }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 12px 0; transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.28);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo-img { height: 52px; width: auto; filter: brightness(0) invert(1); }
.navbar.scrolled .nav-logo-img { filter: brightness(0) invert(1); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: var(--font-display); font-size: 0.88rem; font-weight: 600;
  color: rgba(255,255,255,0.8); transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a.nav-cta {
  background: var(--mid); color: var(--white); padding: 9px 22px; border-radius: 50px;
}
.nav-links a.nav-cta:hover { background: var(--steel); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center; position: relative; overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,102,164,0.08) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,102,164,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35; }
.orb-1 { width: 560px; height: 560px; background: radial-gradient(circle, var(--royal), transparent 70%); top: -140px; right: -100px; }
.orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, var(--mid), transparent 70%); bottom: -80px; left: 10%; opacity: 0.2; }
.orb-3 { width: 240px; height: 240px; background: radial-gradient(circle, var(--steel), transparent 70%); top: 40%; left: 35%; opacity: 0.15; }

.hero-content { position: relative; max-width: 740px; margin: 0 auto; text-align: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ice);
  background: rgba(184,212,224,0.12); border: 1px solid rgba(184,212,224,0.28);
  padding: 7px 16px; border-radius: 50px; margin-bottom: 24px;
  animation: fadeDown 0.7s ease both;
}

.hero-logo-wrap { margin-bottom: 28px; animation: fadeUp 0.7s 0.05s ease both; }
.hero-logo-img {
  height: 130px; width: auto; margin: 0 auto;
  filter: brightness(0) invert(1);
}

.hero-title {
  font-family: var(--font-display); font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800; color: var(--white); line-height: 1.1;
  margin-bottom: 20px; letter-spacing: -0.025em;
  animation: fadeUp 0.7s 0.15s ease both;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--ice), var(--steel));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  color: rgba(255,255,255,0.6); font-size: 1.05rem; font-weight: 300;
  max-width: 580px; margin: 0 auto 12px; line-height: 1.75;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-slogan {
  color: var(--steel); font-size: 1rem; margin-bottom: 32px;
  font-family: Georgia, serif; letter-spacing: 0.02em;
  animation: fadeUp 0.7s 0.25s ease both;
}

.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 48px; animation: fadeUp 0.7s 0.3s ease both;
}
.hero-stats { display: flex; align-items: center; justify-content: center; animation: fadeUp 0.7s 0.38s ease both; }
.stat { display: flex; flex-direction: column; align-items: center; padding: 0 28px; }
.stat strong { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: var(--white); }
.stat span { font-size: 0.76rem; color: rgba(255,255,255,0.42); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.3); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  animation: bounce 2s infinite;
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services { padding: 100px 0; background: var(--gray-50); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }

.service-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); padding: 32px 28px;
  position: relative; overflow: hidden; transition: var(--transition);
  opacity: 0; transform: translateY(24px);
}
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--mid), var(--steel));
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover { border-color: var(--ice); box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }

.card-icon {
  width: 52px; height: 52px; background: #e8f4fb; border: 1.5px solid var(--ice);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--mid); margin-bottom: 20px; transition: var(--transition);
}
.service-card:hover .card-icon { background: var(--mid); color: var(--white); border-color: var(--mid); }
.service-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; line-height: 1.25; }
.service-card p { color: var(--gray-600); font-size: 0.92rem; font-weight: 300; line-height: 1.65; }
.card-arrow { position: absolute; bottom: 20px; right: 24px; color: var(--steel); opacity: 0; transform: translateX(-4px); transition: var(--transition); font-size: 0.85rem; }
.service-card:hover .card-arrow { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials { padding: 100px 0; background: var(--royal); position: relative; overflow: hidden; }
.testimonials::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(184,212,224,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(184,212,224,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

/* Last row: 2 cards centered */
.testi-grid .testi-card:nth-child(4),
.testi-grid .testi-card:nth-child(5) {
  grid-column: auto;
}
/* Center the last 2 in a 3-col grid */
@supports (grid-template-columns: subgrid) {
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
}

.testi-card {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(184,212,224,0.15);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: var(--transition);
  position: relative;
  opacity: 0; transform: translateY(20px);
}
.testi-card.visible { opacity: 1; transform: translateY(0); }
.testi-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(184,212,224,0.3); transform: translateY(-4px); }
.testi-card.featured {
  background: rgba(0,102,164,0.25);
  border-color: rgba(184,212,224,0.35);
}

.testi-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #fbbf24; background: rgba(251,191,36,0.12); border: 1px solid rgba(251,191,36,0.3);
  padding: 4px 12px; border-radius: 50px; align-self: flex-start;
}

.testi-stars { display: flex; align-items: center; gap: 4px; }
.testi-stars i { color: #fbbf24; font-size: 0.88rem; }
.testi-rating {
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
  color: rgba(255,255,255,0.5); margin-left: 6px;
}

.testi-quote {
  color: rgba(255,255,255,0.82); font-size: 0.95rem; font-weight: 300;
  line-height: 1.75; font-style: italic; flex: 1;
}
.testi-quote::before { content: '\201C'; font-size: 2rem; color: var(--steel); line-height: 0; vertical-align: -0.5rem; margin-right: 2px; }

.testi-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--mid), var(--steel));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 800;
  color: var(--white); flex-shrink: 0;
}
.testi-author strong { display: block; font-family: var(--font-display); font-size: 0.88rem; font-weight: 700; color: var(--white); }
.testi-author span { font-size: 0.78rem; color: rgba(255,255,255,0.45); display: block; }

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about { padding: 100px 0; background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-visual { display: flex; align-items: center; justify-content: center; }
.about-card-stack { position: relative; width: 320px; height: 320px; }
.about-center-logo {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 16px rgba(0,102,164,0.07), 0 0 0 32px rgba(0,102,164,0.03);
  overflow: hidden; padding: 12px;
}
.about-center-svg { width: 100%; height: auto; }

.about-pill {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border: 1.5px solid var(--gray-200); border-radius: 50px;
  padding: 10px 18px; font-family: var(--font-display); font-size: 0.85rem; font-weight: 600;
  color: var(--gray-900); box-shadow: var(--shadow-card);
  animation: floatPill 4s ease-in-out infinite;
}
.about-pill i { color: var(--mid); }
.about-pill:nth-child(1) { top: 20px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.about-pill:nth-child(2) { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 0.5s; animation-name: floatPillY; }
.about-pill:nth-child(3) { bottom: 20px; left: 50%; transform: translateX(-50%); animation-delay: 1s; }
.about-pill:nth-child(4) { top: 50%; left: 0; transform: translateY(-50%); animation-delay: 1.5s; animation-name: floatPillY2; }

.about-text .section-tag { display: block; margin-bottom: 16px; }
.about-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--gray-900); margin-bottom: 20px; line-height: 1.2; letter-spacing: -0.02em; }
.about-text p { color: var(--gray-600); font-size: 1rem; font-weight: 300; margin-bottom: 16px; line-height: 1.75; }
.about-text .btn { margin-top: 12px; }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact { padding: 100px 0; background: var(--navy); position: relative; overflow: hidden; }
.contact::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,102,164,0.07) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,102,164,0.07) 1px, transparent 1px);
  background-size: 50px 50px;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; position: relative; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }

.info-item { display: flex; align-items: flex-start; gap: 16px; }
.info-icon {
  width: 44px; height: 44px; background: rgba(0,102,164,0.2); border: 1px solid rgba(74,143,173,0.3);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--ice); font-size: 1rem; flex-shrink: 0;
}
.info-icon.whatsapp-icon { background: rgba(37,211,102,0.15); border-color: rgba(37,211,102,0.3); color: #25d366; }
.info-item strong { display: block; font-family: var(--font-display); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.42); margin-bottom: 3px; }
.info-item a, .info-item span { font-size: 0.96rem; color: var(--white); font-weight: 400; transition: color var(--transition); }
.info-item a:hover { color: var(--ice); }

/* QR Block */
.qr-block {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(184,212,224,0.2);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; flex-direction: column; align-items: center;
}
.qr-label {
  font-family: var(--font-display); font-size: 0.88rem; font-weight: 700;
  color: var(--wa-green); display: flex; align-items: center; gap: 8px;
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em;
}
.qr-label i { font-size: 1.1rem; }
.qr-wrap {
  background: var(--white); padding: 12px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.qr-wrap canvas, .qr-wrap img { display: block; border-radius: 4px; }
.qr-sub {
  color: rgba(255,255,255,0.45); font-size: 0.8rem; text-align: center;
  margin-top: 12px; line-height: 1.5; max-width: 220px;
}

.contact-note {
  padding: 14px 18px; background: rgba(74,143,173,0.1);
  border: 1px solid rgba(74,143,173,0.22); border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.62); font-size: 0.87rem;
  display: flex; align-items: center; gap: 10px;
}
.contact-note i { color: var(--ice); }
.contact-note strong { color: var(--white); }

/* Form */
.contact-form {
  background: var(--white); border-radius: var(--radius); padding: 40px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  display: flex; flex-direction: column; gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; color: var(--gray-900); letter-spacing: 0.02em; text-transform: uppercase; }
.form-group input, .form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--gray-900);
  background: var(--gray-50); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--mid); background: var(--white); box-shadow: 0 0 0 4px rgba(0,102,164,0.1); }
.form-group input.error, .form-group textarea.error { border-color: #ef4444; }
.form-error { font-size: 0.8rem; color: #ef4444; min-height: 16px; display: block; }
.form-success {
  display: none; align-items: center; gap: 10px;
  padding: 14px 18px; background: #f0fdf4;
  border: 1.5px solid #86efac; border-radius: var(--radius-sm);
  color: #166534; font-weight: 500; font-size: 0.92rem;
}
.form-success i { color: #22c55e; font-size: 1.1rem; }
.form-success.show { display: flex; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.07); }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; padding: 64px 24px 48px; }
.footer-logo-img { height: 56px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.88rem; font-weight: 300; line-height: 1.65; max-width: 280px; }

.footer-links strong, .footer-contact strong {
  display: block; font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 18px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.62); font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }

.footer-contact { display: flex; flex-direction: column; }
.footer-contact a { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.62); font-size: 0.88rem; margin-bottom: 12px; transition: color var(--transition); }
.footer-contact a i { color: var(--steel); width: 16px; }
.footer-contact a:hover { color: var(--white); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 24px; text-align: center; color: rgba(255,255,255,0.28); font-size: 0.82rem; }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce   { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
@keyframes floatPill  { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }
@keyframes floatPillY  { 0%,100% { transform: translateY(-50%); } 50% { transform: translateY(calc(-50% - 8px)); } }
@keyframes floatPillY2 { 0%,100% { transform: translateY(-50%); } 50% { transform: translateY(calc(-50% + 8px)); } }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid .testi-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }
}

@media (max-width: 960px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: 260px;
    background: var(--navy); flex-direction: column; align-items: flex-start;
    padding: 90px 32px 40px; gap: 28px;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; }
  .nav-links a.nav-cta { background: none; padding: 0; border-radius: 0; border-bottom: 2px solid var(--mid); }
  .nav-toggle { display: flex; }

  .testi-grid { grid-template-columns: 1fr; }
  .testi-grid .testi-card:last-child { grid-column: auto; max-width: none; }

  .about-card-stack { width: 260px; height: 260px; }
  .about-center-logo { width: 90px; height: 90px; }

  .contact-form { padding: 28px 22px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { max-width: 280px; }
  .hero-stats .stat { padding: 0 14px; }
  .stat strong { font-size: 1.3rem; }
}
