/* AgentPros — Premium Styles */

/* ── Design Tokens ── */
:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --teal-50: #F0FDFC;
  --teal-100: #CCFBF1;
  --teal-200: #99F6E4;
  --teal-400: #2DD4BF;
  --teal-500: #1CBBB4;
  --teal-600: #0D9488;
  --teal-700: #0F766E;
  --teal-800: #115E59;

  --slate-50: #F8FAFC;
  --slate-100: #F1F5F9;
  --slate-200: #E2E8F0;
  --slate-300: #CBD5E1;
  --slate-400: #94A3B8;
  --slate-500: #64748B;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1E293B;
  --slate-900: #0F172A;

  --amber-400: #FBBF24;
  --amber-500: #F59E0B;

  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-glow: 0 0 40px rgba(28,187,180,0.15);
}

/* ── Base ── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--slate-800);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  background: #fff;
}

h1, h2, h3, h4, h5, h6,
.title, .subtitle {
  font-family: var(--font-heading);
  color: var(--slate-900);
}

/* ── Bulma overrides ── */
.button.is-primary { background-color: var(--teal-500); border-color: var(--teal-500); }
.button.is-primary:hover { background-color: var(--teal-600); border-color: var(--teal-600); }
.button.is-primary:active,
.button.is-primary:focus { background-color: var(--teal-700); border-color: var(--teal-700); box-shadow: 0 0 0 3px rgba(28,187,180,0.25); }

a { color: var(--teal-600); transition: color 0.15s ease; }
a:hover { color: var(--teal-700); }

/* ── Navbar (Bulma overrides) ── */
.ap-navbar {
  background: rgba(255,255,255,0.85) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--slate-100);
  padding-left: 32px;
  padding-right: 32px;
}
.ap-navbar-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.ap-navbar-container .navbar-brand {
  margin-right: 0;
}
.ap-navbar-container .navbar-menu {
  flex-grow: 1;
  box-shadow: none;
}
.ap-navbar .navbar-item {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-500);
}
.ap-navbar .navbar-item:hover {
  background: transparent;
  color: var(--slate-900);
}
.ap-navbar .navbar-burger { color: var(--slate-700); }
.ap-navbar .navbar-burger:hover { background: var(--slate-50); }
.ap-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--slate-900) !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ap-logo:hover { color: var(--slate-900) !important; background: transparent !important; }
.ap-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.ap-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: var(--teal-500);
  color: #fff !important;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  text-decoration: none;
}
.ap-nav-cta:hover {
  background: var(--teal-600);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

@media screen and (max-width: 1023px) {
  .ap-navbar-container {
    flex-wrap: wrap;
  }
  .ap-navbar-container .navbar-brand {
    width: 100%;
  }
  .ap-navbar-container .navbar-menu {
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--slate-100);
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
    padding: 12px 0;
  }
  .ap-navbar .navbar-menu .navbar-item {
    font-size: 0.95rem;
    padding: 10px 12px;
    border-radius: 8px;
  }
  .ap-navbar .navbar-menu .navbar-item:hover {
    background: var(--slate-50);
  }
  .ap-navbar .navbar-menu .ap-nav-cta {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }
}

/* ── Hero ── */
.ap-hero {
  padding: 140px 32px 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #fff 0%, var(--teal-50) 30%, #fff 60%, var(--teal-50) 100%);
}
.ap-hero-blob-1 {
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(28,187,180,0.08), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.ap-hero-blob-2 {
  position: absolute;
  bottom: -250px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 60%, rgba(45,212,191,0.06), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.ap-hero-blob-3 {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,191,36,0.05), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}
.ap-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ap-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--teal-50);
  border: 1px solid rgba(28,187,180,0.15);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-700);
  margin-bottom: 24px;
}
.ap-hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-500);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.ap-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--slate-900);
  margin-bottom: 20px;
}
.ap-hero-gradient-text {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ap-hero p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--slate-500);
  margin-bottom: 32px;
  max-width: 480px;
}
.ap-hero-actions {
  display: flex;
  gap: 12px;
}
.ap-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--teal-500);
  color: #fff;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}
.ap-btn-primary:hover {
  background: var(--teal-600);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(28,187,180,0.3);
}
.ap-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #fff;
  color: var(--slate-700);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
.ap-btn-secondary:hover {
  color: var(--slate-900);
  border-color: var(--slate-300);
  background: var(--slate-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── Hero Card (floating preview) ── */
.ap-hero-card-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}
.ap-hero-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  padding: 28px;
  width: 380px;
  border: 1px solid var(--slate-100);
  position: relative;
}
.ap-hero-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.ap-avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal-400), var(--teal-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ap-hero-card-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--slate-900);
  margin-bottom: 2px;
}
.ap-hero-card-role {
  font-size: 0.8rem;
  color: var(--slate-400);
  font-weight: 500;
}
.ap-hero-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.ap-tag {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--slate-50);
  color: var(--slate-600);
  border: 1px solid var(--slate-100);
}
.ap-tag.teal {
  background: var(--teal-50);
  color: var(--teal-700);
  border-color: rgba(28,187,180,0.15);
}
.ap-hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--slate-100);
  margin-bottom: 18px;
}
.ap-stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-400);
  margin-bottom: 4px;
}
.ap-stat-value {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--slate-800);
}
.ap-hero-card-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--teal-500);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.ap-hero-card-btn:hover {
  background: var(--teal-600);
  color: #fff;
  transform: translateY(-1px);
}

/* Floating badges around the hero card */
.ap-float-badge {
  position: absolute;
  padding: 8px 14px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--slate-100);
  animation: float 3s ease-in-out infinite;
}
.ap-float-badge.top-left {
  top: -10px;
  left: -30px;
  animation-delay: 0s;
}
.ap-float-badge.bottom-right {
  bottom: 20px;
  right: -40px;
  animation-delay: 1.5s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Logos / Social Proof ── */
.ap-logos {
  padding: 48px 32px;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
}
.ap-logos-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.ap-logos-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-400);
  margin-bottom: 24px;
}
.ap-logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.ap-logos-row span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--slate-300);
  letter-spacing: -0.01em;
}

/* ── Section shared ── */
.ap-section {
  padding: 96px 32px;
}
.ap-section-alt { background: var(--slate-50); }
.ap-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.ap-section-header {
  text-align: center;
  margin-bottom: 64px;
}
.ap-section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.ap-section-header p {
  font-size: 1.05rem;
  color: var(--slate-500);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── How It Works (Timeline) ── */
.ap-timeline {
  display: flex;
  gap: 0;
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}
.ap-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 56px;
  right: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-200), #6EE7B7, var(--amber-400));
  z-index: 0;
}
.ap-timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.ap-timeline-marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 28px;
  box-shadow: 0 0 0 6px #fff, var(--shadow-md);
  flex-shrink: 0;
}
.ap-timeline-marker.teal { background: linear-gradient(135deg, var(--teal-400), var(--teal-600)); }
.ap-timeline-marker.emerald { background: linear-gradient(135deg, #34D399, #059669); }
.ap-timeline-marker.amber { background: linear-gradient(135deg, #FBBF24, #F59E0B); }
.ap-timeline-content {
  max-width: 260px;
}
.ap-timeline-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.ap-timeline-content p {
  font-size: 0.88rem;
  color: var(--slate-500);
  line-height: 1.65;
}

/* ── Talent Categories ── */
.ap-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.ap-category {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 36px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--slate-100);
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}
.ap-category:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(4px);
}
.ap-category.teal { border-left-color: var(--teal-500); }
.ap-category.emerald { border-left-color: #059669; }
.ap-category.amber { border-left-color: var(--amber-500); }
.ap-category-header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ap-category-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.ap-category-icon.teal {
  background: var(--teal-50);
  color: var(--teal-600);
}
.ap-category-icon.emerald {
  background: #ECFDF5;
  color: #059669;
}
.ap-category-icon.amber {
  background: #FFFBEB;
  color: var(--amber-500);
}
.ap-category-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.ap-category-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-400);
}
.ap-category p {
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.65;
  margin: 0;
}
.ap-category-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ap-category-skills span {
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--slate-50);
  color: var(--slate-600);
  border: 1px solid var(--slate-100);
}

/* ── Value Props (side-by-side) ── */
.ap-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ap-values-text h2 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.ap-values-text > p {
  font-size: 1.05rem;
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: 32px;
}
.ap-value-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.ap-value-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal-500);
  margin-top: 6px;
  flex-shrink: 0;
}
.ap-value-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 4px;
}
.ap-value-item p {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.6;
}
.ap-values-visual {
  background: linear-gradient(135deg, var(--teal-50), #fff, var(--slate-50));
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--slate-100);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ap-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--slate-100);
}
.ap-metric-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-500);
}
.ap-metric-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--slate-900);
}
.ap-metric-value.teal { color: var(--teal-600); }

/* ── CTA ── */
.ap-cta {
  padding: 96px 32px;
  background: linear-gradient(160deg, var(--slate-900) 0%, var(--teal-800) 100%);
  position: relative;
  overflow: hidden;
}
.ap-cta::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28,187,180,0.15), transparent 70%);
  pointer-events: none;
}
.ap-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.ap-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 16px;
}
.ap-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  line-height: 1.7;
}
.ap-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.ap-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #fff;
  color: var(--slate-900);
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}
.ap-btn-white:hover {
  color: var(--slate-900);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.ap-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
.ap-btn-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

/* ── Footer ── */
.ap-footer {
  padding: 64px 32px 0;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
}
.ap-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.ap-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.ap-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--slate-900);
  text-decoration: none;
  margin-bottom: 14px;
}
.ap-footer-logo:hover { color: var(--slate-900); }
.ap-footer-logo-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.ap-footer-tagline {
  font-size: 0.85rem;
  color: var(--slate-500);
  line-height: 1.6;
  max-width: 280px;
}
.ap-footer-tagline a {
  color: var(--teal-600);
  text-decoration: none;
  font-weight: 500;
}
.ap-footer-tagline a:hover { color: var(--teal-700); text-decoration: underline; }
.ap-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ap-footer-heading {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-800);
  margin-bottom: 4px;
}
.ap-footer-col a {
  font-size: 0.85rem;
  color: var(--slate-500);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}
.ap-footer-col a:hover { color: var(--teal-600); }
.ap-footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--slate-200);
}
.ap-footer-copy {
  font-size: 0.78rem;
  color: var(--slate-400);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .ap-hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .ap-hero p { margin-left: auto; margin-right: auto; }
  .ap-hero-actions { justify-content: center; }
  .ap-hero-card-wrapper { justify-content: center; }
  .ap-float-badge { display: none; }
  .ap-timeline { flex-direction: column; align-items: center; gap: 0; max-width: 420px; }
  .ap-timeline::before { display: none; }
  .ap-timeline-step { flex-direction: row; text-align: left; gap: 20px; padding-bottom: 32px; }
  .ap-timeline-marker { margin-bottom: 0; box-shadow: var(--shadow-md); }
  .ap-categories { max-width: 100%; }
  .ap-values { grid-template-columns: 1fr; gap: 40px; }
  .ap-hero h1 { font-size: 2.5rem; }
  .ap-cta h2 { font-size: 2rem; }
  .ap-cta-actions { flex-direction: column; align-items: center; }
  .ap-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ap-footer-inner { text-align: center; }
}
@media (max-width: 600px) {
  .ap-hero { padding: 110px 20px 60px; }
  .ap-section { padding: 64px 20px; }
  .ap-hero h1 { font-size: 2rem; }
  .ap-hero-card { width: 100%; }
  .ap-hero-actions { flex-direction: column; }
  .ap-nav-links { gap: 16px; }
}
