/* Global Styles */
:root {
  --primary: #000000;
  --accent: #c20000;
  --text: #1a1a2e;
  --text-light: #ffffff;
  --bg: #ffffff;
  --bg-alt: #f7f8fa;
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* Force all inline SVG icons to sane sizes */
svg {
  flex-shrink: 0;
}

svg:not([width]) {
  width: 24px;
  height: 24px;
}

/* Ensure sections don't break layout */
section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Consistent container widths */
section > div,
section > .container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Scroll Animations — JS adds .animate-ready to enable (progressive enhancement) */
.animate-on-scroll.animate-ready {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-child.animate-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-child.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Nav scroll state */
.nav-scrolled {
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 20px rgba(0,0,0,0.06) !important;
  border-bottom-color: transparent !important;
}

/* Mobile nav body lock */
body.nav-mobile-open {
  overflow: hidden;
}

/* Selection color */
::selection {
  background: color-mix(in srgb, var(--accent) 25%, transparent);
}

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

#navigation_1 {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
    padding: 0;
  }

  #navigation_1.nav-scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    position: relative;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    z-index: 10;
  }

  .nav-logo-img {
    height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
  }

  .nav-logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    text-decoration: none;
  }

  .nav-menu {
    display: none;
  }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
  }

  .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    opacity: 0.7;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.3s ease;
  }

  .nav-link:hover {
    opacity: 1;
    color: var(--primary);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .nav-cta {
    display: none;
    background: var(--accent);
    color: #fff;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.01em;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(194, 0, 0, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .nav-cta:hover {
    background: #a50000;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(194, 0, 0, 0.3);
    color: #fff;
  }

  /* Toggle input hidden */
  .nav-toggle-input {
    display: none;
  }

  /* Hamburger */
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    z-index: 10;
    border-radius: 6px;
    transition: background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    width: 36px;
    height: 36px;
    align-items: center;
  }

  .nav-hamburger:hover {
    background: rgba(0, 0, 0, 0.05);
  }

  .nav-hamburger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }

  .nav-close-icon {
    display: none;
    color: var(--text);
  }

  /* Hamburger animation on open */
  .nav-toggle-input:checked ~ .nav-inner .nav-hamburger .nav-hamburger-bar {
    display: none;
  }

  .nav-toggle-input:checked ~ .nav-inner .nav-hamburger .nav-close-icon {
    display: block;
  }

  /* Mobile overlay */
  .nav-mobile-overlay {
    display: none;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }

  .nav-toggle-input:checked ~ .nav-mobile-overlay {
    display: block;
    max-height: 500px;
    padding: 12px 0 24px;
  }

  .nav-mobile-links {
    list-style: none;
    margin: 0;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .nav-mobile-link {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color 0.2s ease, padding-left 0.2s ease;
    opacity: 0.8;
  }

  .nav-mobile-link:hover {
    color: var(--primary);
    opacity: 1;
    padding-left: 6px;
  }

  .nav-mobile-links li:last-child .nav-mobile-link {
    border-bottom: none;
  }

  .nav-mobile-cta {
    display: inline-block;
    margin-top: 12px;
    background: var(--accent);
    color: #fff;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(194, 0, 0, 0.22);
    letter-spacing: 0.01em;
  }

  .nav-mobile-cta:hover {
    background: #a50000;
    box-shadow: 0 4px 18px rgba(194, 0, 0, 0.32);
    color: #fff;
  }

  /* Tablet and up */
  @media (min-width: 768px) {
    .nav-inner {
      padding: 18px 0;
    }
  }

  /* Desktop */
  @media (min-width: 1024px) {
    .nav-menu {
      display: flex;
      align-items: center;
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
    }

    .nav-hamburger {
      display: none;
    }

    .nav-mobile-overlay {
      display: none !important;
    }

    .nav-toggle-input:checked ~ .nav-mobile-overlay {
      display: none !important;
    }
  }

#hero_1 {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: scale(1.04);
    transition: transform 8s ease-out;
  }

  #hero_1:hover .hero-bg {
    transform: scale(1.0);
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      170deg,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.62) 55%,
      rgba(0, 0, 0, 0.78) 100%
    );
    z-index: 2;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    width: 100%;
    padding: 80px 20px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-accent-line {
    width: 48px;
    height: 3px;
    background: #c20000;
    border-radius: 2px;
    margin-bottom: 28px;
    position: relative;
  }

  .hero-accent-line::after {
    content: '';
    position: absolute;
    left: 56px;
    top: 0;
    width: 12px;
    height: 3px;
    background: #c20000;
    border-radius: 2px;
    opacity: 0.45;
  }

  .hero-content h1 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 22px;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
    color: #ffffff;
    max-width: 820px;
  }

  .hero-content p {
    font-size: 17px;
    opacity: 0.88;
    max-width: 580px;
    margin: 0 auto 38px;
    line-height: 1.65;
    font-weight: 400;
    letter-spacing: 0.005em;
  }

  .hero-cta {
    display: inline-block;
    background: #c20000;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.02em;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(194, 0, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
  }

  .hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 60%);
    pointer-events: none;
  }

  .hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(194, 0, 0, 0.5), 0 4px 16px rgba(0, 0, 0, 0.3);
    background: #d40000;
  }

  .hero-cta:active {
    transform: translateY(-1px);
  }

  .hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  .hero-badge svg {
    color: #c20000;
    flex-shrink: 0;
  }

  .hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: hero-bounce 2.2s ease-in-out infinite;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
  }

  .hero-scroll-indicator:hover {
    opacity: 1;
  }

  .hero-scroll-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  @keyframes hero-bounce {
    0%, 100% {
      transform: translateX(-50%) translateY(0);
    }
    50% {
      transform: translateX(-50%) translateY(8px);
    }
  }

  .hero-corner-decoration {
    position: absolute;
    top: -80px;
    right: -80px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.7;
  }

  .hero-geo-accent {
    position: absolute;
    bottom: 60px;
    left: 48px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.6;
    display: none;
  }

  @media (min-width: 768px) {
    #hero_1 {
      min-height: 82vh;
    }

    .hero-content {
      padding: 100px 40px 140px;
    }

    .hero-content h1 {
      font-size: 52px;
    }

    .hero-content p {
      font-size: 19px;
    }

    .hero-geo-accent {
      display: block;
    }
  }

  @media (min-width: 1024px) {
    #hero_1 {
      min-height: 90vh;
    }

    .hero-content h1 {
      font-size: 64px;
    }

    .hero-content p {
      font-size: 20px;
      max-width: 640px;
    }

    .hero-content {
      padding: 120px 40px 160px;
    }
  }

  @media (min-width: 1280px) {
    .hero-content h1 {
      font-size: 72px;
    }
  }

#about_1 {
    padding: 60px 0;
    background: var(--bg);
    overflow: hidden;
  }

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

  .about-image-wrap {
    position: relative;
  }

  .about-image-wrap img {
    border-radius: var(--radius);
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    position: relative;
    z-index: 2;
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 12px 40px rgba(0,0,0,0.10);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .about-image-wrap:hover img {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08), 0 20px 60px rgba(0,0,0,0.14);
  }

  .about-image-accent {
    position: absolute;
    top: 20px;
    left: -16px;
    right: 16px;
    bottom: -20px;
    background: var(--accent);
    opacity: 0.10;
    border-radius: var(--radius);
    z-index: 1;
    transition: opacity 0.3s ease;
  }

  .about-image-wrap:hover .about-image-accent {
    opacity: 0.16;
  }

  .about-image-wrap::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    width: 72px;
    height: 72px;
    border-top: 3px solid var(--accent);
    border-left: 3px solid var(--accent);
    border-radius: 2px;
    z-index: 3;
    opacity: 0.5;
    pointer-events: none;
  }

  .about-image-wrap::after {
    content: '';
    position: absolute;
    bottom: -28px;
    right: 8px;
    width: 52px;
    height: 52px;
    border-bottom: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    border-radius: 2px;
    z-index: 3;
    opacity: 0.12;
    pointer-events: none;
  }

  .about-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .about-accent-line {
    width: 48px;
    height: 3px;
    background: var(--accent);
    margin-bottom: 20px;
    border-radius: 2px;
    flex-shrink: 0;
  }

  .about-text h2 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text);
  }

  .about-body {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 36px;
  }

  .about-body p {
    margin-bottom: 16px;
  }

  .about-body p:last-child {
    margin-bottom: 0;
  }

  .about-stats {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 8px;
    border-top: 1px solid rgba(0,0,0,0.07);
    width: 100%;
  }

  .about-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 80px;
  }

  .about-stat-value {
    font-size: 30px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.03em;
    line-height: 1;
    display: block;
  }

  .about-stat-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.4;
    font-weight: 500;
    display: block;
  }

  .about-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,0.10);
    flex-shrink: 0;
    display: none;
  }

  @media (min-width: 600px) {
    .about-stat-divider {
      display: block;
    }

    .about-stats {
      gap: 24px;
      flex-wrap: nowrap;
    }

    .about-stat {
      flex: unset;
    }
  }

  @media (min-width: 768px) {
    #about_1 {
      padding: 80px 0;
    }

    .about-text h2 {
      font-size: 32px;
    }

    .about-stat-value {
      font-size: 32px;
    }

    .about-image-accent {
      left: -20px;
      right: 20px;
    }
  }

  @media (min-width: 1024px) {
    #about_1 {
      padding: 100px 0;
    }

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

    .about-text h2 {
      font-size: 36px;
    }

    .about-stats {
      gap: 32px;
    }

    .about-stat-value {
      font-size: 34px;
    }

    .about-stat-label {
      font-size: 13px;
    }

    .about-body {
      font-size: 17px;
    }
  }

#services_grid_1 {
    padding: 60px 0;
  }

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

  .services-header h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text);
    margin: 0;
  }

  .services-header-accent {
    width: 48px;
    height: 3px;
    background: var(--accent);
    margin: 16px auto 0;
    border-radius: 2px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-card {
    background: #ffffff;
    border-radius: calc(var(--radius) + 4px);
    overflow: hidden;
    box-shadow:
      0 1px 3px rgba(0, 0, 0, 0.04),
      0 6px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .services-card:hover {
    transform: translateY(-6px);
    box-shadow:
      0 4px 8px rgba(0, 0, 0, 0.05),
      0 12px 40px rgba(0, 0, 0, 0.10);
  }

  .services-card > img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
  }

  .services-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .services-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #ffffff;
    flex-shrink: 0;
  }

  .services-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
  }

  .services-card-body h3 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: var(--text);
    margin: 0 0 10px 0;
  }

  .services-card-body p {
    font-size: 15px;
    color: #666666;
    line-height: 1.7;
    margin: 0;
    flex: 1;
  }

  @media (min-width: 768px) {
    #services_grid_1 {
      padding: 80px 0;
    }

    .services-header {
      margin-bottom: 52px;
    }

    .services-header h2 {
      font-size: 32px;
    }

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

  @media (min-width: 1024px) {
    #services_grid_1 {
      padding: 100px 0;
    }

    .services-header {
      margin-bottom: 56px;
    }

    .services-header h2 {
      font-size: 36px;
    }

    .services-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
    }
  }

#pricing_1 {
  padding: 60px 0;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

#pricing_1::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.03;
  pointer-events: none;
}

#pricing_1::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.04;
  pointer-events: none;
}

.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}

.pricing-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 16px;
}

.pricing-header-accent {
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.pricing-subheading {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: calc(var(--radius) + 4px);
  padding: 0;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 24px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 16px 48px rgba(0, 0, 0, 0.09);
  transform: translateY(-2px);
}

.pricing-card-inner {
  padding: 36px 28px;
}

.pricing-highlighted {
  border-color: var(--accent);
  border-top: 3px solid var(--accent);
  box-shadow: 0 8px 40px rgba(194, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.pricing-highlighted:hover {
  box-shadow: 0 12px 56px rgba(194, 0, 0, 0.14), 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.pricing-badge {
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: calc(var(--radius) + 4px) calc(var(--radius) + 4px) 0 0;
  display: block;
  text-align: center;
}

.pricing-plan-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}

.pricing-highlighted .pricing-plan-label {
  color: var(--accent);
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  margin-bottom: 4px;
  line-height: 1;
}

.pricing-currency {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 8px;
  line-height: 1;
}

.pricing-amount {
  font-size: 52px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-period {
  font-size: 14px;
  color: #999;
  font-weight: 400;
  align-self: flex-end;
  margin-bottom: 6px;
}

.pricing-divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.07);
  margin: 24px 0;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 0 0 8px;
  padding: 0;
}

.pricing-features li {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li svg {
  color: var(--accent);
  flex-shrink: 0;
}

.pricing-features li span {
  flex: 1;
}

.pricing-cta {
  display: block;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  margin-top: 24px;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.pricing-cta:hover {
  background: var(--primary);
  color: white;
}

.pricing-highlighted .pricing-cta {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  box-shadow: 0 4px 16px rgba(194, 0, 0, 0.25);
}

.pricing-highlighted .pricing-cta:hover {
  background: #a50000;
  border-color: #a50000;
  box-shadow: 0 6px 24px rgba(194, 0, 0, 0.35);
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  #pricing_1 {
    padding: 80px 0;
  }

  .pricing-header {
    margin-bottom: 56px;
  }

  .pricing-header h2 {
    font-size: 32px;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }

  .pricing-highlighted {
    transform: scale(1.03);
  }

  .pricing-highlighted:hover {
    transform: scale(1.03) translateY(-2px);
  }
}

@media (min-width: 1024px) {
  #pricing_1 {
    padding: 100px 0;
  }

  .pricing-header h2 {
    font-size: 36px;
  }

  .pricing-card-inner {
    padding: 40px 32px;
  }
}

#team_1 {
  padding: 60px 0;
  background-color: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

#team_1::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.04;
  pointer-events: none;
}

#team_1::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.05;
  pointer-events: none;
}

.team-header {
  text-align: center;
  margin-bottom: 52px;
}

.team-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.team-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.team-header-accent {
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto 18px;
}

.team-subheading {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.team-card {
  text-align: center;
  padding: 8px;
  background: var(--bg);
  border-radius: calc(var(--radius) + 10px);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 6px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.05),
    0 16px 48px rgba(0, 0, 0, 0.10);
}

.team-photo {
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  margin-bottom: 0;
  position: relative;
}

.team-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.04);
}

.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.18) 45%,
    rgba(0, 0, 0, 0) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.team-card:hover .team-photo-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.team-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.team-social-link:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.1);
}

.team-card-body {
  padding: 20px 16px 22px;
}

.team-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 5px;
  line-height: 1.3;
}

.team-role {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  display: block;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-divider {
  width: 28px;
  height: 2px;
  background: var(--primary);
  opacity: 0.18;
  border-radius: 2px;
  margin: 0 auto 14px;
}

.team-card-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

@media (min-width: 480px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 768px) {
  #team_1 {
    padding: 80px 0;
  }

  .team-header h2 {
    font-size: 32px;
  }

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

@media (min-width: 1024px) {
  #team_1 {
    padding: 100px 0;
  }

  .team-header {
    margin-bottom: 60px;
  }

  .team-header h2 {
    font-size: 40px;
  }

  .team-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }

  .team-card-body h3 {
    font-size: 19px;
  }
}

#testimonials_1 {
  padding: 60px 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 44px;
}

.testimonials-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}

.testimonials-header-accent {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 16px auto 0;
  border-radius: 2px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.testimonials-card {
  background: #ffffff;
  border-radius: calc(var(--radius) + 4px);
  padding: 32px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 6px 24px rgba(0, 0, 0, 0.06);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonials-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.05),
    0 12px 36px rgba(0, 0, 0, 0.1);
}

.testimonials-quote-icon {
  position: absolute;
  top: 24px;
  right: 28px;
  opacity: 0.08;
  color: var(--primary);
  pointer-events: none;
  line-height: 1;
}

.testimonials-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonials-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 24px;
  font-style: italic;
  flex: 1;
}

.testimonials-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: auto;
}

.testimonials-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(0, 0, 0, 0.06);
}

.testimonials-author div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonials-author strong {
  font-size: 15px;
  font-weight: 600;
  display: block;
  color: var(--text);
  letter-spacing: -0.01em;
}

.testimonials-author span {
  font-size: 13px;
  color: #888888;
  display: block;
}

@media (min-width: 768px) {
  #testimonials_1 {
    padding: 80px 0;
  }

  .testimonials-header {
    margin-bottom: 52px;
  }

  .testimonials-header h2 {
    font-size: 32px;
  }

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

@media (min-width: 1024px) {
  #testimonials_1 {
    padding: 100px 0;
  }

  .testimonials-header {
    margin-bottom: 56px;
  }

  .testimonials-header h2 {
    font-size: 36px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .testimonials-card {
    padding: 36px;
  }
}

#contact_1 {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

#contact_1::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.03;
  pointer-events: none;
}

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

.contact-accent-line {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 20px;
  border-radius: 2px;
}

.contact-info h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
  margin-top: 0;
}

.contact-intro-text {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 32px;
  margin-top: 0;
}

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

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 10px 0;
}

.contact-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-detail-item:hover .contact-icon-wrap {
  background: color-mix(in srgb, var(--accent) 20%, transparent);
  transform: scale(1.06);
}

.contact-detail-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-detail-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
}

.contact-detail-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.contact-decorative-block {
  margin-top: 40px;
  color: var(--accent);
  opacity: 0.55;
}

.contact-form-wrap {
  background: white;
  border-radius: calc(var(--radius) + 4px);
  padding: 32px 24px;
  box-shadow:
    0 1px 3px rgba(0,0,0,0.04),
    0 6px 24px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 40%, transparent));
  border-radius: calc(var(--radius) + 4px) calc(var(--radius) + 4px) 0 0;
}

.contact-form-header {
  margin-bottom: 28px;
}

.contact-form-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin: 0 0 4px 0;
}

.contact-form-subtitle {
  font-size: 14px;
  color: #999;
  margin: 0;
}

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

.contact-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.contact-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.contact-input,
.contact-textarea {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  padding: 14px 18px;
  width: 100%;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg-alt);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #bbb;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: var(--primary);
  outline: none;
  background: white;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 10%, transparent);
}

.contact-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.contact-submit {
  width: 100%;
  background: var(--accent);
  color: white;
  padding: 15px 32px;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.01em;
  margin-top: 4px;
}

.contact-submit:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent) 35%, transparent);
}

.contact-submit:active {
  transform: translateY(0);
  filter: brightness(0.97);
}

@media (min-width: 768px) {
  #contact_1 {
    padding: 80px 0;
  }

  .contact-form-wrap {
    padding: 40px 36px;
  }

  .contact-info h2 {
    font-size: 32px;
  }
}

@media (min-width: 1024px) {
  #contact_1 {
    padding: 100px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }

  .contact-info h2 {
    font-size: 36px;
  }

  .contact-form-wrap {
    padding: 48px 44px;
  }

  .contact-detail-item {
    margin: 14px 0;
  }
}

#footer_1 {
  background: var(--primary);
  color: var(--text-light);
  padding: 72px 0 28px;
  position: relative;
  overflow: hidden;
}

#footer_1::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

#footer_1::after {
  content: '';
  position: absolute;
  bottom: 60px;
  left: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1;
}

.footer-description {
  font-size: 14px;
  opacity: 0.65;
  line-height: 1.75;
  max-width: 300px;
  margin: 0 0 28px 0;
  color: var(--text-light);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.footer-social-link:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

.footer-col-heading {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.45;
  color: #ffffff;
  position: relative;
  padding-bottom: 12px;
}

.footer-col-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  padding: 0;
}

.footer-nav-link {
  display: block;
  padding: 6px 0;
  opacity: 0.65;
  font-size: 14px;
  color: var(--text-light);
  text-decoration: none;
  transition: opacity 0.3s ease, padding-left 0.3s ease;
  line-height: 1.5;
}

.footer-nav-link:hover {
  opacity: 1;
  padding-left: 6px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  opacity: 0.65;
  line-height: 1.5;
  color: var(--text-light);
  transition: opacity 0.3s ease;
}

.footer-contact-item:hover {
  opacity: 0.9;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.8;
}

.footer-contact-item span {
  color: var(--text-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  font-size: 13px;
  opacity: 0.45;
  text-align: center;
  color: var(--text-light);
}

.footer-bottom p {
  margin: 0;
  letter-spacing: 0.01em;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 56px;
  }

  .footer-about {
    grid-column: auto;
  }
}