/* ===================================
   VARIÁVEIS E RESET
   =================================== */

:root {
  /* Cores principais */
  --bg-primary: #0a0a0a;
  --bg-secondary: #1a1a1a;
  --bg-dark: #050505;
  
  /* Azuis */
  --blue-navy: #1e3a8a;
  --blue-royal: #2563eb;
  --blue-light: #3b82f6;
  
  /* Textos */
  --text-white: #ffffff;
  --text-light: #e0e0e0;
  --text-gray: #a1a1aa;
  --text-dim: #71717a;
  
  /* Bordas */
  --border-subtle: #2a2a2a;
  --border-blue: #1e3a8a;
  
  /* Transições */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset e Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-light);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===================================
   TOPBAR
   =================================== */

.topbar {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
  font-size: 13px;
  color: var(--text-gray);
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.separator {
  opacity: 0.3;
}

.topbar a:hover {
  color: var(--blue-royal);
}

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

.header {
  position: sticky;
  top: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px 0;
  z-index: 1000;
}

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

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand:hover {
  opacity: 0.9;
}

.brand__logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__name {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.01em;
}

.brand__tag {
  font-size: 9px;
  color: var(--blue-royal);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  position: relative;
}

.nav a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-royal);
  transition: var(--transition);
}

.nav a:not(.nav__cta):hover {
  color: var(--text-white);
}

.nav a:not(.nav__cta):hover::after {
  width: 100%;
}

.nav__cta {
  background: var(--blue-royal);
  color: var(--text-white) !important;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}

.nav__cta:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--blue-royal);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

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

.hero {
  padding: 40px 0 60px 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 80px;
  align-items: center;
  margin-top: -20px;
}

.hero__content {
  text-align: center;
}

.kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue-royal);
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--text-white);
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--blue-light) 40%, var(--blue-royal) 80%, #1e3a8a 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-elegant 6s ease-in-out infinite;
  position: relative;
  display: inline-block;
}

@keyframes gradient-elegant {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero__lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: justify;
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  word-break: normal;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.hero__credentials {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 24px;
  border-left: 2px solid var(--blue-royal);
  text-align: left;
}

.hero__credentials span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-gray);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

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

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  border: none;
}

.btn--primary {
  background: var(--blue-royal);
  color: var(--text-white);
}

.btn--primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.btn--full {
  width: 100%;
}

.hero-cta-restore.btn.btn--primary {
  background: var(--blue-royal);
  color: var(--text-white);
  padding: 16px 40px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  text-decoration: none;
  box-shadow: none;
  letter-spacing: normal;
  text-transform: none;
  width: auto;
}

.hero-cta-restore.btn.btn--primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.hero-cta-restore.btn.btn--primary:active {
  transform: translateY(0);
}

/* ===================================
   PROFILE CARD
   =================================== */

.profile-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-slow);
  max-width: 380px;
  margin: 0 auto;
}

.profile-card:hover {
  transform: translateY(-8px);
  border-color: var(--blue-navy);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
}

.profile-image {
  height: 380px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-dark) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 12px;
}

.profile-image::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 2px solid var(--blue-navy);
  border-radius: 8px;
  pointer-events: none;
  z-index: 1;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.15);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 6px;
}

.profile-info {
  padding: 20px;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.profile-info h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
  line-height: 1.3;
}

.profile-info p {
  font-size: 12px;
  color: var(--blue-royal);
  margin-bottom: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.profile-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 0;
  padding: 0;
}

.profile-certifications span {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 5px 10px;
  background: rgba(37, 99, 235, 0.08);
  border: 1.5px solid var(--blue-royal);
  color: var(--blue-royal);
  border-radius: 4px;
  transition: var(--transition);
  line-height: 1.2;
}

.profile-certifications span:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: var(--blue-light);
  transform: translateY(-2px);
}

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

.section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.section--dark {
  background: var(--bg-dark);
}

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

.section-title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
}

.section-subtitle--centered {
  text-align: center !important;
}

/* ===================================
   QUALIFICAÇÕES
   =================================== */

.qualificacoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.qualification-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px;
  transition: var(--transition);
}

.qualification-card:hover {
  border-color: var(--blue-navy);
  transform: translateY(-4px);
}

.qualification-card h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-royal);
  margin-bottom: 24px;
}

.qualification-card ul {
  list-style: none;
}

.qualification-card li {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.qualification-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue-royal);
  font-weight: 700;
}

/* ===================================
   TRUST BAR
   =================================== */

.trust-bar {
  background: var(--bg-dark);
  padding: 48px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.trust-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-item {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  opacity: 0.7;
  transition: var(--transition);
}

.trust-item:hover {
  opacity: 1;
  color: var(--blue-royal);
}

/* ===================================
   SERVIÇOS
   =================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 48px 32px;
  position: relative;
  text-align: center;
  transition: var(--transition-slow);
}

.service-card:hover {
  border-color: var(--blue-navy);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(37, 99, 235, 0.1);
}

.service-card--featured {
  border-color: var(--blue-navy);
}

.service-card--centered {
  grid-column: 2 / 3;
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--blue-royal);
  color: var(--text-white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.service-icon {
  font-size: 48px;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 28px;
}

.service-deliverables {
  list-style: none;
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  margin-top: 24px;
}

.service-deliverables li {
  font-size: 14px;
  color: var(--blue-royal);
  font-weight: 600;
  margin-bottom: 10px;
}

/* ===================================
   TIMELINE (MÉTODO)
   =================================== */

.timeline {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
}

.timeline-number {
  width: 80px;
  height: 80px;
  background: var(--bg-secondary);
  border: 2px solid var(--blue-navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--blue-royal);
  flex-shrink: 0;
}

.timeline-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 40px;
  transition: var(--transition);
}

.timeline-content:hover {
  border-color: var(--blue-navy);
}

.timeline-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.timeline-content h3 {
  font-size: 24px;
  color: var(--text-white);
  margin-bottom: 12px;
}

.timeline-content > p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.timeline-details {
  list-style: none;
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
}

.timeline-details li {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.timeline-details li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue-royal);
}

/* ===================================
   FAQ
   =================================== */

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--blue-navy);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px;
  background: none;
  color: var(--text-white);
  text-align: left;
  cursor: pointer;
}

.faq-question {
  font-size: 19px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.4;
}

.faq-toggle {
  font-size: 28px;
  color: var(--blue-royal);
  font-weight: 300;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 24px;
}

.faq-item--active .faq-toggle {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item--active .faq-content {
  max-height: 600px;
}

.faq-content p {
  padding: 0 32px 32px;
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  margin-top: 0;
  text-align: justify;
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  word-break: normal;
}

/* ===================================
   CONTATO
   =================================== */

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

.contact-description {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 40px;
  text-align: justify;
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  word-break: normal;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

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

.feature-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-text strong {
  font-size: 16px;
  color: var(--text-white);
  margin-bottom: 4px;
}

.feature-text span {
  font-size: 14px;
  color: var(--text-gray);
}

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

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-item strong {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-royal);
}

.contact-item a {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-white);
}

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

/* ===================================
   FORMULÁRIO MODERNIZADO
   =================================== */

.contact-form {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 
              0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  transition: var(--transition-slow);
}

.contact-form:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 12px 48px rgba(37, 99, 235, 0.12), 
              0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.form-filter-note {
  background: rgba(37, 99, 235, 0.08);
  border-left: 3px solid var(--blue-royal);
  padding: 16px 20px;
  margin-bottom: 32px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
  text-align: justify;
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  word-break: normal;
}

.form-filter-note strong {
  color: var(--blue-royal);
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-royal);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(42, 42, 42, 0.8);
  border-radius: 10px;
  color: var(--text-white);
  font-size: 15px;
  padding: 14px 18px;
  font-family: inherit;
  transition: all 0.3s ease;
  height: 52px;
}

.form-group textarea {
  height: auto;
  min-height: 130px;
  resize: vertical;
  padding-top: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-royal);
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1),
              0 4px 12px rgba(37, 99, 235, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
  opacity: 0.6;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%232563eb' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 45px;
}

.btn.btn--primary.btn--full {
  width: 100%;
  background: linear-gradient(135deg, var(--blue-royal) 0%, var(--blue-light) 100%);
  color: var(--text-white);
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
  text-transform: none;
  letter-spacing: 0.02em;
}

.btn.btn--primary.btn--full:hover {
  background: linear-gradient(135deg, var(--blue-light) 0%, #3b82f6 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.btn.btn--primary.btn--full:active {
  transform: translateY(0);
}

.form-note {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 20px;
  line-height: 1.6;
  opacity: 0.8;
}

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

.footer {
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.footer-content p {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 24px;
}

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

@media (max-width: 1024px) {
  .hero__grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .timeline-step {
    grid-template-columns: 60px 1fr;
    gap: 24px;
  }
  
  .timeline-number {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-card--centered {
    grid-column: 1 / -1;
    max-width: 450px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .hero {
    padding: 30px 0 40px 0;
  }
  
  .hero__grid {
    margin-top: -10px;
  }
  
  /* Mobile Menu */
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 32px;
    border-left: 1px solid var(--border-subtle);
    transition: right 0.4s ease;
    z-index: 999;
    align-items: flex-start;
  }
  
  .nav.nav--open {
    right: 0;
  }
  
  .nav a {
    font-size: 18px;
    width: 100%;
  }
  
  .nav a:not(.nav__cta)::after {
    display: none;
  }
  
  .nav__cta {
    width: 100%;
    padding: 16px 28px;
  }
  
  /* Topbar */
  .topbar__inner {
    flex-direction: column;
    text-align: center;
    font-size: 12px;
  }
  
  .topbar__left,
  .topbar__right {
    flex-direction: column;
    gap: 8px;
  }
  
  .separator {
    display: none;
  }
  
  /* Hero */
  .hero__title {
    font-size: 32px;
  }
  
  .hero__lead {
    font-size: 16px;
  }
  
  .hero__actions {
    flex-direction: column;
    gap: 24px;
  }
  
  .hero__credentials {
    border-left: none;
    border-top: 2px solid var(--blue-royal);
    padding-left: 0;
    padding-top: 16px;
    text-align: center;
  }
  
  /* Profile Card Mobile */
  .profile-card {
    max-width: 100%;
  }
  
  .profile-image {
    height: 300px;
  }
  
  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card--centered {
    grid-column: 1;
    max-width: 100%;
  }
  
  /* Timeline */
  .timeline-step {
    grid-template-columns: 1fr;
  }
  
  .timeline-number {
    margin: 0 auto;
  }
  
  .timeline-content {
    padding: 32px 24px;
  }
  
  /* FAQ */
  .faq-trigger {
    padding: 24px;
  }
  
  .faq-question {
    font-size: 17px;
  }
  
  .faq-content p {
    padding: 0 24px 24px;
  }
  
  /* Contact Form Mobile */
  .contact-form {
    padding: 32px 24px;
  }
  
  .form-filter-note {
    padding: 14px 16px;
    font-size: 13px;
  }
  
  /* Trust Bar */
  .trust-inner {
    justify-content: center;
    gap: 20px;
  }
  
  .trust-item {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }
  
  .btn {
    padding: 14px 32px;
    font-size: 14px;
  }
  
  .profile-certifications span {
    font-size: 7px;
    padding: 4px 8px;
  }
  
  .profile-info h2 {
    font-size: 14px;
  }
  
  .profile-info p {
    font-size: 11px;
  }
  
  .contact-form {
    padding: 24px 20px;
  }
  
  .form-group input,
  .form-group select {
    height: 48px;
    font-size: 14px;
  }
}