/* ============================================
   ANCHORPOINT SOLUTIONS — Light Professional Theme
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary palette — Light */
  --bg-primary: #ffffff;
  --bg-secondary: #f5f7fa;
  --bg-tertiary: #eef1f6;
  --bg-dark: #1a1a2e;
  --bg-dark-alt: #16213e;

  /* Accent — Professional Blue & Gold */
  --accent-blue: #1e3a5f;
  --accent-blue-light: #2563eb;
  --accent-blue-hover: #1d4ed8;
  --accent-gold: #c9a84c;
  --accent-gold-light: #d4b65a;

  /* Text */
  --text-primary: #1a1a2e;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --text-light: #a0aec0;
  --text-white: #ffffff;

  /* Borders */
  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-base: 0.3s var(--ease-smooth);
  --transition-slow: 0.5s var(--ease-smooth);

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.12);

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-secondary);
  background-color: var(--bg-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
}

.highlight {
  color: var(--accent-blue-light);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-blue);
  color: var(--text-white);
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.25);
}

.btn-primary:hover {
  background: var(--accent-blue-hover);
  box-shadow: 0 6px 24px rgba(30, 58, 95, 0.35);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent-blue);
  border: 2px solid var(--accent-blue);
}

.btn-outline:hover {
  background: var(--accent-blue);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--accent-gold);
  color: var(--text-white);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

.btn-gold:hover {
  background: var(--accent-gold-light);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--bg-primary);
  color: var(--accent-blue);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-arrow::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--bg-dark);
  padding: 10px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: var(--accent-gold);
}

.top-bar a:hover {
  color: var(--accent-gold-light);
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Header / Nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.logo img {
  height: 55px;
  width: auto;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-blue);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 8px;
  padding: 10px 24px !important;
  font-size: 0.85rem !important;
  border-radius: var(--radius-full) !important;
  background: var(--accent-blue) !important;
  color: var(--text-white) !important;
}

.nav-cta:hover {
  background: var(--accent-blue-hover) !important;
}

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

/* Mobile menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--accent-blue) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/hero-pattern.svg') center/cover no-repeat;
  opacity: 0.05;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: fadeInUp 0.8s var(--ease-smooth);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content .section-label {
  color: var(--accent-gold);
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  margin-bottom: 10px;
  line-height: 1.15;
  color: var(--text-white);
}

.hero-underline {
  width: 60px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 2px;
  margin: 20px 0 24px;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero .btn-primary {
  background: var(--accent-gold);
  color: var(--text-white);
}

.hero .btn-primary:hover {
  background: var(--accent-gold-light);
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--text-white);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-white);
  color: var(--text-white);
}

.hero-image {
  position: relative;
  animation: fadeInUp 1s var(--ease-smooth) 0.2s both;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  object-fit: cover;
  max-height: 480px;
}

/* ---------- Values Strip (3 cards below hero) ---------- */
.values-strip {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
  margin-top: -60px;
  z-index: 2;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

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

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(30, 58, 95, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Services Section ---------- */
.services {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all var(--transition-base);
  position: relative;
  box-shadow: var(--shadow-xs);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--accent-blue);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(30, 58, 95, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
  color: var(--accent-blue);
}

.service-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(30, 58, 95, 0.06);
  line-height: 1;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.service-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.service-features li::before {
  content: '✓';
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ---------- About Section ---------- */
.about {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

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

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}

.about-image::before {
  content: '';
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 120px;
  height: 120px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-gold));
  opacity: 0.15;
  z-index: -1;
}

.about-content .section-title {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
  color: var(--text-secondary);
  line-height: 1.8;
}


/* ---------- Why Choose Us ---------- */
.why-us {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.why-us-header {
  text-align: center;
  margin-bottom: 64px;
}

.why-us-header .section-subtitle {
  margin: 0 auto;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.why-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xs);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(30, 58, 95, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--bg-dark) 100%);
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/cta-background.png') center/cover no-repeat;
  opacity: 0.08;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 12px;
  color: var(--text-white);
}

.cta-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
}

.cta-banner .btn-gold {
  background: var(--accent-gold);
  color: var(--text-white);
}

.cta-banner .btn-gold:hover {
  background: var(--accent-gold-light);
}

.cta-banner .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--text-white);
}

.cta-banner .btn-outline:hover {
  border-color: var(--text-white);
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.1);
}

/* ---------- Contact Section ---------- */
.contact {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

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

.contact-info h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.8;
}

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

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

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(30, 58, 95, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.contact-item-text a,
.contact-item-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-item-text a:hover {
  color: var(--accent-blue-light);
}

/* Contact Form */
.contact-form {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 28px;
  color: var(--text-primary);
}

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

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--bg-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  border-radius: var(--radius-sm);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-dark);
  padding: 64px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo img {
  height: 48px;
  filter: brightness(1.2);
}

.footer-brand > p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 320px;
}

.payment-methods {
  margin-top: 24px;
}

.payment-methods h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 12px;
}

.payment-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.payment-icon {
  height: 30px !important;
  width: 48px !important;
  display: block;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  object-fit: contain;
  background: transparent;
}



.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 20px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-gold);
}

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

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

.footer-col a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-bottom {
  padding: 20px 0;
  font-size: 0.8rem;
}

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

.footer-bottom span {
  color: rgba(255, 255, 255, 0.4);
}

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

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

/* ---------- Page Hero (Sub-pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--accent-blue) 100%);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-pattern.svg') center/cover no-repeat;
  opacity: 0.04;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--text-white);
  margin-bottom: 12px;
}

.page-hero .subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--accent-gold);
}

.breadcrumb a:hover {
  color: var(--accent-gold-light);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .separator {
  color: rgba(255, 255, 255, 0.3);
}

/* ---------- Legal / Policy Pages ---------- */
.legal-content {
  padding: 80px 0;
  background: var(--bg-primary);
}

.legal-content .container {
  max-width: 860px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-primary);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 24px 0 12px;
  color: var(--text-primary);
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal-content ul {
  margin: 12px 0 20px 20px;
  list-style: disc;
}

.legal-content ul li {
  margin-bottom: 8px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

.legal-content a {
  color: var(--accent-blue-light);
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-effective-date {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

/* ---------- Services Page Specific ---------- */
.why-choose-strip {
  padding: 60px 0;
  background: var(--bg-primary);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  text-align: center;
}

.why-choose-item {
  padding: 24px;
}

.why-choose-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(30, 58, 95, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.3rem;
}

.why-choose-item h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.why-choose-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Workflow Steps */
.workflow {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.workflow-header {
  text-align: center;
  margin-bottom: 64px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.workflow-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--border-light);
}

.workflow-step {
  text-align: center;
  position: relative;
}

.workflow-step .step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-blue);
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}

.workflow-step:hover .step-number {
  background: var(--accent-blue);
  color: var(--text-white);
}

.workflow-step h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.workflow-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- About Page Specific ---------- */
.mission-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

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

.mission-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 20px;
}

.mission-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.mission-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.team-section {
  padding: var(--section-padding);
  background: var(--bg-primary);
  text-align: center;
}

/* ---------- Contact Page Specific ---------- */
.contact-page-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}

.contact-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.contact-card .card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(30, 58, 95, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

.contact-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.contact-card p,
.contact-card a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-card a:hover {
  color: var(--accent-blue-light);
}

.contact-page-form {
  max-width: 700px;
  margin: 0 auto;
}

/* ---------- Scroll Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .contact .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .workflow-grid::before {
    display: none;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 64px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
  }

  .top-bar {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 24px;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-base);
    border-left: 1px solid var(--border-light);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    color: var(--text-primary);
  }

  .nav-cta {
    margin-left: 0 !important;
  }

  .values-grid {
    grid-template-columns: 1fr;
    margin-top: -30px;
  }

  .values-strip {
    margin-top: -30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom .container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-hero {
    padding: 80px 0 48px;
  }

  .workflow-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 80vh;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form {
    padding: 24px;
  }
}
