:root {
  --primary-navy: #121A2F;
  --secondary-navy: #1E2843;
  --accent-gold: #C8A97E;
  --accent-gold-hover: #b0936b;
  --bg-cream: #FFFFFF;
  --text-dark: #333333;
  --text-light: #666666;
  --border-light: #E5E0D5;
  --white: #FFFFFF;

  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;

  --transition: all 0.3s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  color: var(--primary-navy);
}

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

/* Typography styles */
.text-gold {
  color: var(--accent-gold);
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  background-color: #FCFBF8;
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2%;
  max-width: 100%;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-image {
  height: 110px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: darken;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  position: relative;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--primary-navy);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-gold);
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1.05rem;
  font-family: var(--font-serif);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}

.btn-ghost {
  border-color: var(--border-light);
  color: var(--primary-navy);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--accent-gold);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(18, 26, 47, 0.08);
}

.btn-gold {
  background: linear-gradient(90deg, #E6D0A7 0%, #C8A97E 100%);
  color: var(--primary-navy);
  box-shadow: 0 4px 15px rgba(200, 169, 126, 0.25);
  border-color: #E6D0A7;
  border-right-color: #C8A97E;
}

.btn-gold:hover {
  background: linear-gradient(90deg, #F0DFBF 0%, #CDA973 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 169, 126, 0.35);
  border-color: #F0DFBF;
  border-right-color: #CDA973;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  mask-image: linear-gradient(to right, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.4) 70%, black 95%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.4) 70%, black 95%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
  padding: 6rem 5%;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.hero-text-area {
  max-width: 45%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title {
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: 1.1;
  font-weight: 400;
  color: var(--primary-navy);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 90%;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.hero-metrics {
  display: flex;
  gap: 2rem;
}

.metric-item {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.5rem 1rem;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  text-align: center;
}

.metric-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent-gold);
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Trusted By Section */
.trusted-by {
  padding: 3rem 5%;
  max-width: 1760px;
  margin: 0 auto;
}

.trusted-title {
  font-size: 0.85rem;
  text-align: center;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.trusted-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: var(--transition);
}

.trusted-logos:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.trusted-logos img {
  height: 75px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* About Page Specific Styles */
.about-hero {
  padding: 6rem 5% 4rem;
  max-width: 1760px;
  margin: 0 auto;
  text-align: center;
}

.about-title {
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.about-intro-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 0 5%;
  max-width: 1760px;
  margin: 0 auto 5rem;
  align-items: center;
}

.about-text {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(18, 26, 47, 0.1);
  height: 500px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.methodology-wrapper {
  background-color: var(--white);
  padding: 6rem 5%;
}

.methodology-container {
  max-width: 1760px;
  margin: 0 auto;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 4rem;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.method-card {
  padding: 2.5rem 2rem;
  background-color: var(--bg-cream);
  border-radius: 8px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(18, 26, 47, 0.05);
  border-color: var(--accent-gold);
}

.method-icon {
  width: 48px;
  height: 48px;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.method-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.method-desc {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* Footer Placeholder */
footer {
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 4rem 5%;
  text-align: center;
  margin-top: 4rem;
}

/* ── Mobile Nav ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-navy);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #FCFBF8;
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--primary-navy);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  width: 80%;
  max-width: 280px;
}

.mobile-nav-actions .btn {
  text-align: center;
  width: 100%;
}

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

  .hero-content {
    align-items: center;
  }

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

  .about-intro-wrapper {
    grid-template-columns: 1fr;
  }

  .methodology-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .logo-image {
    height: 80px;
  }

  /* Hide background photo on mobile hero */
  .hero-bg {
    display: none;
  }

  .hero-section {
    background-color: #F8F5F1;
  }

  /* Full width text */
  .hero-text-area {
    max-width: 100%;
    width: 100%;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .about-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

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

  /* Metric cards: 2 per row */
  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
  }

  .hero-content-wrapper {
    padding: 3rem 5%;
    gap: 2rem;
  }

  /* About page full width */
  .about-intro-wrapper {
    grid-template-columns: 1fr;
    padding: 0 5%;
    gap: 2rem;
    width: 100%;
  }

  .about-text,
  .about-image-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .methodology-section {
    padding: 4rem 5%;
  }

  .trusted-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
}

/* Contact Page Styles */
.contact-section {
  padding: 5rem 6%;
  max-width: 1400px;
  margin: 4rem auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(18, 26, 47, 0.06);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-right: 2rem;
}

.contact-title {
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 380px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 1rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.contact-detail-icon {
  width: 22px;
  height: 22px;
  color: var(--text-dark);
}

.contact-form-card {
  padding: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-control {
  padding: 1.2rem;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: var(--white);
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.1);
}

.form-control::placeholder {
  color: #a0a0a0;
}

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

.contact-socials {
  display: flex;
  gap: 1.5rem;
  margin-top: 5rem;
}

.social-icon {
  width: 24px;
  height: 24px;
  color: var(--text-dark);
  opacity: 0.4;
  transition: var(--transition);
}

.social-icon:hover {
  opacity: 1;
  color: var(--accent-gold);
}

@media (max-width: 1024px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 5%;
    margin: 2rem 1rem;
  }

  .contact-info {
    padding-right: 0;
  }

  .contact-form-card {
    padding: 0;
  }
}

/* Approach Section */
/* Approach Details */

.approach-main-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 400;
  color: var(--primary-navy);
  margin-bottom: 1rem;
  line-height: 1.1;
  white-space: nowrap;
}

.approach-subtitle {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--text-dark);
}

.approach-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.approach-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(18, 26, 47, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.approach-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(18, 26, 47, 0.08);
}

.approach-icon {
  width: 45px;
  height: 45px;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.approach-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
  font-weight: 600;
}

.approach-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .approach-bg {
    width: 100%;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  }

  .approach-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .approach-header {
    max-width: 100%;
  }
}

@media (max-width: 768px) {

  /* Hide approach background photo on mobile */
  .approach-bg {
    display: none;
  }

  .approach-section {
    background-color: #F8F5F1;
  }

  /* Approach cards: 2 per row */
  .approach-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .approach-card {
    padding: 2rem 1rem;
  }

  .approach-section {
    padding: 0;
  }

  .approach-content-wrapper {
    padding: 4rem 5%;
  }
}

/* Programs Page Styles */
.programs-section {
  position: relative;
  width: 100%;
  padding: 6rem 0;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background-color: #F8F5F1;
  min-height: 85vh;
}

.programs-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  mask-image: linear-gradient(to right, transparent 0%, transparent 20%, rgba(0, 0, 0, 0.8) 60%, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 20%, rgba(0, 0, 0, 0.8) 60%, black 100%);
}

.programs-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.15;
  mix-blend-mode: multiply;
}

.programs-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 5%;
}

.programs-header {
  margin-bottom: 4rem;
  max-width: 45%;
}

.programs-main-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 400;
  color: var(--primary-navy);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.programs-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  line-height: 1.6;
}

.programs-layout {
  display: flex;
  gap: 3rem;
  width: 100%;
  position: relative;
  z-index: 3;
}

.programs-sidebar {
  width: 260px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.filter-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 1.2rem 1.5rem;
  background-color: transparent;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: var(--primary-navy);
}

.filter-btn.active {
  background-color: var(--white);
  color: var(--primary-navy);
  border-color: var(--accent-gold);
  box-shadow: 0 8px 20px rgba(200, 169, 126, 0.15);
  font-weight: 600;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.program-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.program-logo-small {
  font-size: 0.6rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  background: var(--text-dark);
  color: var(--white);
  padding: 2px 6px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 5px;
  align-self: flex-start;
}

.program-card-logo {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.program-card-logo img {
  height: 12px;
  margin-bottom: 4px;
  object-fit: contain;
  align-self: flex-start;
}

.program-card-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.4;
  margin-top: auto;
}

@media (max-width: 1200px) {
  .programs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .programs-bg {
    width: 100%;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  }

  .programs-layout {
    flex-direction: column;
  }

  .programs-sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }

  .filter-btn {
    width: auto;
    flex: 1;
    text-align: center;
  }

  .programs-main-title {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .programs-grid {
    grid-template-columns: 1fr;
  }
}

/* Уменьшаем отступ у всей секции */
.hero-section {
  padding-bottom: 2rem !important;
  margin-bottom: 0 !important;
}

/* Убираем лишнее пространство под самими карточками */
.hero-metrics {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* ==========================================
   SERVICES PAGE
   ========================================== */

.services-hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: visible;
  background-color: #F8F5F1;
}

.services-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 100%;
  z-index: 1;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.15) 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.15) 0%, transparent 80%);
}

.services-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  mix-blend-mode: multiply;
}

.services-hero-content {
  position: relative;
  z-index: 2;
  width: 50%;
  padding: 6rem 3% 6rem 5%;
  text-align: left;
}

.services-eyebrow {
  display: none;
}

.services-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 400;
  color: var(--primary-navy);
  line-height: 0.9;
  margin-bottom: 2.5rem;
  letter-spacing: -2px;
}

.services-hero-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 420px;
}

/* Circular scroll element — responsive via clamp */
.svc-circular-wrap {
  position: absolute;
  right: clamp(-500px, -25vw, -300px);
  bottom: clamp(-420px, -22vw, -250px);
  z-index: 3;
  width: clamp(600px, 48vw, 900px);
  height: clamp(600px, 48vw, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.svc-circular-ring {
  position: relative;
  width: 100%;
  height: 100%;
  will-change: transform;
}

.svc-circular-ring svg {
  width: 100%;
  height: 100%;
}

.svc-circle-text {
  font-family: var(--font-sans);
  font-size: clamp(10px, 1.2vw, 17px);
  font-weight: 600;
  letter-spacing: 3px;
  fill: var(--primary-navy);
  text-transform: uppercase;
}

.svc-circle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(60px, 6vw, 100px);
  height: clamp(60px, 6vw, 100px);
  background: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-circle-center svg {
  width: clamp(24px, 2.5vw, 40px);
  height: clamp(24px, 2.5vw, 40px);
  color: var(--white);
  stroke: var(--white);
}

/* Services Content Section */
.services-section {
  background-color: var(--white);
  padding: 6rem 5%;
  position: relative;
  overflow: visible;
}

.services-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Individual Service Block */
.service-block {
  padding: 4rem 0;
}

.service-block-header {
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
  margin-bottom: 1.5rem;
}

.service-block-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #FBF6EF, #F0E6D3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.service-block-icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent-gold);
}

.service-block-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary-navy);
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

.service-block-badge {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-gold);
  letter-spacing: 0.5px;
}

.service-block-intro {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 760px;
  padding-left: calc(52px + 1.8rem);
}

.service-items-placeholder {
  padding-left: calc(52px + 1.8rem);
  margin-top: 1.5rem;
  min-height: 8px;
}

/* Divider between blocks */
.service-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--border-light), transparent);
}

/* CTA Section */
.services-cta {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
  padding: 6rem 5%;
  text-align: center;
}

.services-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.services-cta-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
}

.services-cta-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .services-hero-content {
    width: 60%;
  }

  .services-bg {
    width: 100%;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  }

  .svc-circular-wrap {
    right: clamp(-350px, -30vw, -150px);
    bottom: clamp(-300px, -28vw, -150px);
    width: clamp(400px, 55vw, 650px);
    height: clamp(400px, 55vw, 650px);
  }
}

@media (max-width: 768px) {
  .services-hero {
    min-height: 60vh;
  }

  .services-hero-content {
    width: 100%;
    padding: 4rem 5%;
    text-align: left;
  }

  .svc-circular-wrap {
    display: none;
  }

  .service-block-title {
    font-size: 1.5rem;
  }

  .service-block-intro,
  .service-items-placeholder {
    padding-left: 0;
  }

  .services-cta-title {
    font-size: 2rem;
  }
}

/* ==========================================
   SERVICES ACCORDION
   ========================================== */

.svc-accordion {
  border-bottom: 1px solid var(--border-light);
}

.svc-accordion:first-child {
  border-top: 1px solid var(--border-light);
}

.svc-accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  text-align: left;
  transition: all 0.3s ease;
}

.svc-accordion-trigger:hover .svc-title {
  color: var(--accent-gold);
}

.svc-trigger-left {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.svc-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #FBF6EF, #F0E6D3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.svc-open .svc-icon {
  background: linear-gradient(135deg, var(--accent-gold), #b0936b);
}

.svc-icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent-gold);
  transition: color 0.3s ease;
}

.svc-open .svc-icon svg {
  color: var(--white);
}

.svc-trigger-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.svc-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-navy);
  line-height: 1.2;
  transition: color 0.3s ease;
  margin: 0;
}

.svc-badge {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-gold);
  letter-spacing: 0.5px;
}

.svc-chevron {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--text-light);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.3s ease;
}

.svc-open .svc-chevron {
  transform: rotate(180deg);
  color: var(--accent-gold);
}

/* Accordion Body */
.svc-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.svc-body-inner {
  padding: 0 0 3rem calc(52px + 1.8rem);
}

.svc-intro {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.8rem;
  max-width: 680px;
}

.svc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.svc-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.svc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--accent-gold);
}

/* Inline list for exam names */
.svc-list-inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.svc-list-inline li {
  font-weight: 600;
  color: var(--primary-navy);
}

/* ── Inline 'View Training Plans' link in accordions ── */
.svc-plans-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
  padding: 0.85rem 1.8rem;
  background: transparent;
  border: 1px solid var(--accent-gold);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-navy);
  text-decoration: none;
  transition: all 0.3s ease;
}

.svc-plans-link span {
  transition: transform 0.3s ease;
}

.svc-plans-link:hover {
  background: var(--accent-gold);
  color: var(--white);
  border-color: var(--accent-gold);
  box-shadow: 0 6px 20px rgba(200, 169, 126, 0.35);
  transform: translateY(-2px);
}

.svc-plans-link:hover span {
  transform: translateX(4px);
}

/* Sub-groups inside accordion body */
.svc-sub-group {
  margin-bottom: 2rem;
}

.svc-sub-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Highlight box */
.svc-highlight-box {
  background: linear-gradient(135deg, #FBF6EF, #F5EDE0);
  border-left: 3px solid var(--accent-gold);
  border-radius: 0 12px 12px 0;
  padding: 2rem 2rem 2rem 2rem;
  margin-top: 1rem;
}

.svc-highlight-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 1.2rem;
}

@media (max-width: 768px) {
  .svc-title {
    font-size: 1.5rem;
  }

  .svc-accordion-trigger {
    padding: 2rem 0;
  }

  .svc-body-inner {
    padding: 0 0 2rem 0;
  }
}

/* ── Pricing CTA button in accordion ── */
.svc-pricing-cta {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.svc-pricing-cta-text {
  font-size: 1rem;
  color: var(--text-light);
}

.svc-pricing-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(90deg, #E6D0A7, #C8A97E);
  color: var(--primary-navy);
  border-radius: 10px;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #C8A97E;
  white-space: nowrap;
}

.svc-pricing-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.svc-pricing-btn:hover {
  background: linear-gradient(90deg, #F0DFBF, #D4A96A);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 169, 126, 0.35);
}

.svc-pricing-btn:hover svg {
  transform: translateX(4px);
}

/* Scaling for 1080p displays (approx 1920x1080, factoring in scaling) */
@media (min-width: 1440px) and (max-width: 2100px) {
  html {
    font-size: 85%;
  }
}

/* Reset scaling for 2K (2560x1440) and above */
@media (min-width: 2101px) {
  html {
    font-size: 100%;
  }
}