/* =============================================
   InterpretersNYC — Global Styles
   ============================================= */

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

:root {
  --gold: #C5992E;
  --gold-light: #D4A84B;
  --gold-dark: #B8891F;
  --gold-pale: #f5f0e4;
  --gold-glow: rgba(197, 153, 46, 0.08);
  --black: #1a1a1a;
  --dark: #2a2a2a;
  --gray-800: #333333;
  --gray-600: #555555;
  --gray-400: #999999;
  --gray-200: #e0e0e0;
  --gray-100: #f4f4f4;
  --warm-white: #faf9f7;
  --white: #ffffff;
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1200px;
  --transition: 0.3s ease;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.04), 0 10px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.06), 0 20px 48px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.08), 0 30px 64px rgba(0,0,0,0.12);
}

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

/* Gold selection highlight */
::selection {
  background: var(--gold-pale);
  color: var(--black);
}

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.3;
  color: var(--black);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* =============================================
   Header / Navigation
   ============================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom-color: transparent;
}

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

.logo {
  display: flex;
  align-items: center;
}

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

/* Header phone number */
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  letter-spacing: 0.5px;
  margin-right: auto;
  margin-left: 2rem;
}

.header-phone svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.header-phone a {
  color: var(--gray-600);
}

.header-phone a:hover {
  color: var(--gold);
}

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

.nav a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-600);
  position: relative;
  padding: 0.25rem 0;
}

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

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

.nav a:hover,
.nav a.active {
  color: var(--black);
}

.nav-cta {
  background: var(--black);
  color: var(--white) !important;
  padding: 0.6rem 1.5rem;
  border: 1.5px solid var(--black);
  letter-spacing: 1px;
  transition: all var(--transition);
}

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

.nav-cta:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all var(--transition);
}

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

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

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

/* =============================================
   Hero Section
   ============================================= */

.hero {
  padding: 10rem 0 6rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, var(--gold-pale) 100%);
  opacity: 0.5;
}

/* Subtle diagonal texture on hero */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C5992E' fill-opacity='0.03'%3E%3Cpath d='M5 0h1L0 5V4zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 580px;
}

.hero h1 {
  font-size: 3.1rem;
  font-style: italic;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.hero h1 span {
  color: var(--gold);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.02rem;
  color: var(--gray-600);
  margin-bottom: 1.75rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =============================================
   Buttons
   ============================================= */

.btn {
  display: inline-block;
  padding: 0.85rem 2.25rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid var(--black);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Focus ring for accessibility */
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(197, 153, 46, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(197, 153, 46, 0.3);
}

.btn-white {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
}

/* =============================================
   Hero Image
   ============================================= */

.hero-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.languages-bar {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--warm-white);
  border-left: 3px solid var(--gold);
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.languages-bar strong {
  color: var(--black);
  font-weight: 600;
}

/* =============================================
   Stats / Social Proof Bar
   ============================================= */

.stats-bar {
  padding: 3.5rem 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(197, 153, 46, 0.1) 0%, transparent 70%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  text-align: center;
}

.stat-item {
  padding: 0.5rem;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* Vertical dividers between stats */
.stat-item + .stat-item {
  border-left: 1px solid rgba(255,255,255,0.08);
}

/* =============================================
   Section Styles
   ============================================= */

.section {
  padding: 6rem 0;
}

.section-alt {
  background: var(--warm-white);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-style: italic;
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.section-header .gold-line {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem auto 0;
}

/* =============================================
   Service Cards (Home)
   ============================================= */

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

.service-card {
  padding: 2.5rem 2rem 2rem;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 6px 6px 0 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(197, 153, 46, 0.2);
}

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

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

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 1.75rem;
  line-height: 1.7;
  flex-grow: 1;
}

.service-card .btn {
  align-self: flex-start;
  margin-top: auto;
  font-size: 0.75rem;
  padding: 0.65rem 1.75rem;
}

/* Staggered card entrance */
.services-grid .service-card.fade-in:nth-child(2) {
  transition-delay: 0.1s;
}
.services-grid .service-card.fade-in:nth-child(3) {
  transition-delay: 0.2s;
}

/* =============================================
   Partners Section
   ============================================= */

.partners-section {
  padding: 5rem 0;
  background: var(--warm-white);
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.partner-logo {
  opacity: 0.5;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(30%);
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

.partner-logo img,
.partner-logo svg {
  height: 60px;
  width: auto;
  max-width: 200px;
}

/* =============================================
   Contact Section
   ============================================= */

.contact-section {
  padding: 6rem 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  font-size: 1.75rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding: 1.25rem;
  background: var(--warm-white);
  border-radius: 6px;
  transition: all var(--transition);
}

.contact-detail:hover {
  background: var(--gold-pale);
  transform: translateX(4px);
}

.contact-detail-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.contact-detail span,
.contact-detail a {
  font-size: 1.05rem;
  color: var(--gray-600);
}

.contact-detail a:hover {
  color: var(--gold);
}

.contact-form h3 {
  font-size: 1.75rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.15rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  background: var(--warm-white);
  color: var(--gray-800);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--gold-glow), 0 0 0 3px rgba(197, 153, 46, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

/* =============================================
   Footer
   ============================================= */

.footer {
  background: var(--black);
  color: var(--gray-400);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
  transition: all var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-contact {
  font-size: 0.85rem;
  color: var(--gray-400);
}

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

/* Legacy footer layout (fallback) */
.footer > .container > .footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gray-400);
}

/* =============================================
   Interior Page Hero
   ============================================= */

.page-hero {
  padding: 9rem 0 4rem;
  background: var(--black);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(197, 153, 46, 0.12) 0%, transparent 70%);
}

/* Subtle noise texture */
.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='4' height='4' viewBox='0 0 4 4' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3h1v1H1V3zm2-2h1v1H3V1z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero h1 {
  font-size: 2.75rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  letter-spacing: -0.3px;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.page-hero .gold-line {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem auto 0;
  position: relative;
}

/* =============================================
   Content Sections for Interior Pages
   ============================================= */

.content-block {
  padding: 5rem 0;
}

.content-block:nth-child(even) {
  background: var(--warm-white);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.content-text h2 {
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.content-text h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.content-text p {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.content-text ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.content-text li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
}

.content-text li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 2px;
  background: var(--gold);
}

/* Languages list with flags */
.languages-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 2rem;
}

.languages-list li {
  padding-left: 0;
  font-size: 1.05rem;
}

.languages-list li::before {
  display: none;
}

.content-image {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--warm-white) 100%);
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.04);
}

.content-image svg {
  width: 80px;
  height: 80px;
  color: var(--gold);
  opacity: 0.35;
}

/* =============================================
   Feature Cards
   ============================================= */

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  padding: 2.25rem;
  border: 1px solid var(--gray-200);
  background: var(--white);
  border-radius: 6px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

/* Gold left accent */
.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  border-radius: 6px 0 0 6px;
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(197, 153, 46, 0.15);
  transform: translateY(-2px);
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.feature-item p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Staggered feature entrance */
.feature-list .feature-item:nth-child(2) { transition-delay: 0.05s; }
.feature-list .feature-item:nth-child(3) { transition-delay: 0.1s; }
.feature-list .feature-item:nth-child(4) { transition-delay: 0.15s; }

/* =============================================
   Process Steps
   ============================================= */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

/* Connecting line behind steps */
.process-steps::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), var(--gray-200), transparent);
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1.25rem;
  background: var(--white);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.step:hover .step-number {
  background: var(--gold);
  color: var(--white);
}

.step h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* =============================================
   CTA Banner
   ============================================= */

.cta-banner {
  padding: 5rem 0;
  background: var(--black);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(197, 153, 46, 0.08) 0%, transparent 70%);
}

.cta-banner h2 {
  font-size: 2rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.cta-banner p {
  font-size: 1.05rem;
  color: var(--gray-400);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-banner .btn {
  position: relative;
}

/* =============================================
   Interpreter Network Page Specifics
   ============================================= */

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.requirement-card {
  padding: 2.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.requirement-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.requirement-card:hover::after {
  width: 60%;
}

.requirement-card h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.requirement-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* =============================================
   Animations
   ============================================= */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   Back to Top Button
   ============================================= */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--black);
  color: var(--gold);
  border: 1px solid rgba(197, 153, 46, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

/* =============================================
   Responsive
   ============================================= */

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-image {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

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

  .content-grid.reverse {
    direction: ltr;
  }

  .content-image {
    display: none;
  }

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

  .process-steps::before {
    display: none;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .requirements-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 768px) {
  .header .container {
    height: 70px;
  }

  .logo img {
    height: 50px;
  }

  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    font-size: 1.1rem;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding: 8rem 0 4rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .page-hero {
    padding: 7rem 0 3rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .partners-grid {
    gap: 2.5rem;
  }

  .content-block {
    padding: 3.5rem 0;
  }

  .cta-banner {
    padding: 3.5rem 0;
  }

  .cta-banner h2 {
    font-size: 1.6rem;
  }

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

  .stat-number {
    font-size: 2rem;
  }

  .stat-item + .stat-item {
    border-left: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .languages-list {
    grid-template-columns: 1fr;
  }
}
