:root {
      --primary: #bc3383;
      --primary-dark: #8f2362;
      --secondary: #d95da1;
      --secondary-light: #f7d8ea;
      --accent: #bc3383;
      --accent-dark: #8f2362;
      --bg: #fff7fb;
      --bg-alt: #fbeaf4;
      --surface: #ffffff;
      --text: #35142a;
      --text-muted: #70415e;
      --text-light: #9b6b88;
      --border: #efd2e2;
      --border-dark: #dca9c6;
      --shadow: rgba(88, 24, 64, 0.08);
      --shadow-lg: rgba(88, 24, 64, 0.14);

      --font-display: 'Playfair Display', Georgia, serif;
      --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

      --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      color: var(--text);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
    }

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

    a {
      color: inherit;
      text-decoration: none;
    }

    ul { list-style: none; }

    h1, h2, h3, h4 {
      font-family: var(--font-display);
      font-weight: 600;
      line-height: 1.2;
      color: var(--text);
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* Animations */
    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes shimmer {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

    @keyframes slideInLeft {
      from { opacity: 0; transform: translateX(-40px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes slideInRight {
      from { opacity: 0; transform: translateX(40px); }
      to { opacity: 1; transform: translateX(0); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
    }

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

    .reveal-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
    }

    .reveal-left.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
    }

    .reveal-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    /* Skeleton Loader */
    .skeleton-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: inherit;
    }

    .skeleton-wrapper.loading {
      background: linear-gradient(90deg, #efd2e2 25%, #fff7fb 50%, #efd2e2 75%);
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
    }

    .skeleton-wrapper img {
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .skeleton-wrapper.loaded img {
      opacity: 1;
    }

    /* NAV */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: var(--surface);
      transition: background 0.3s ease, box-shadow 0.3s ease;
    }

    header.scrolled {
      background: var(--surface);
      box-shadow: 0 2px 20px var(--shadow);
    }

    nav {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      align-items: center;
      column-gap: 32px;
      padding: 16px 24px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--text);
      animation: fadeSlideUp 0.6s var(--ease-out) both;
    }

    .logo-img {
      height: 84px;
      width: auto;
    }

    .logo-img-inverted {
      filter: brightness(0) invert(1);
    }

    .logo-icon {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
    }

    .nav-links a {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-muted);
      transition: color 0.2s ease;
      position: relative;
      animation: fadeSlideUp 0.6s var(--ease-out) both;
    }

    .nav-links a:nth-child(1) { animation-delay: 50ms; }
    .nav-links a:nth-child(2) { animation-delay: 100ms; }
    .nav-links a:nth-child(3) { animation-delay: 150ms; }
    .nav-links a:nth-child(4) { animation-delay: 200ms; }
    .nav-links a:nth-child(5) { animation-delay: 250ms; }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width 0.3s ease;
    }

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

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 600;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-full {
      width: 100%;
    }

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

    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(188, 51, 131, 0.4);
    }

    .btn:disabled {
      cursor: not-allowed;
      opacity: 0.65;
      transform: none;
      box-shadow: none;
    }

    .btn-secondary {
      background: transparent;
      color: var(--text);
      border: 2px solid var(--border-dark);
    }

    .btn-secondary:hover {
      background: var(--primary-dark);
      color: white;
      border-color: var(--primary-dark);
    }

    .nav-cta {
      justify-self: end;
      animation: fadeSlideUp 0.6s var(--ease-out) 300ms both;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 8px;
      background: none;
      border: none;
      cursor: pointer;
    }

    .hamburger span {
      width: 24px;
      height: 2px;
      background: var(--primary-dark);
      transition: all 0.3s ease;
    }

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

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

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

    .mobile-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 999;
      background: var(--surface);
      padding: 24px;
      box-shadow: 0 8px 24px var(--shadow-lg);
      transform: translateY(-100%);
      opacity: 0;
      pointer-events: none;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .mobile-menu.active {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-menu a {
      display: block;
      padding: 12px 0;
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--text);
      border-bottom: 1px solid var(--border);
    }

    .mobile-menu .btn {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      margin-top: 16px;
      color: white;
      text-align: center;
      border-bottom: none;
    }

    .mobile-menu .btn:hover,
    .mobile-menu .btn:focus {
      color: white;
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 24px 80px;
      background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 52%, rgba(188, 51, 131, 0.1) 100%);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 80%;
      height: 150%;
      background: radial-gradient(ellipse, rgba(188, 51, 131, 0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
    }

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

    .hero h1 {
      font-size: clamp(2.5rem, 5vw, 3.75rem);
      margin-bottom: 24px;
      animation: fadeSlideUp 0.8s var(--ease-out) both;
    }

    .hero-subtitle {
      font-size: 1.25rem;
      color: var(--text-muted);
      margin-bottom: 32px;
      line-height: 1.7;
      animation: fadeSlideUp 0.8s var(--ease-out) 150ms both;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      animation: fadeSlideUp 0.8s var(--ease-out) 300ms both;
    }

    .hero-image {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      aspect-ratio: 4/5;
      animation: fadeIn 0.8s var(--ease-out) 200ms both;
    }

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

    /* TRUST BAR */
    .trust-bar {
      background: var(--bg-alt);
      padding: 48px 24px;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .trust-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .stat-item {
      text-align: center;
    }

    .stat-icon {
      width: 48px;
      height: 48px;
      margin: 0 auto 12px;
      background: var(--surface);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px var(--shadow);
    }

    .stat-icon svg {
      width: 24px;
      height: 24px;
      stroke: var(--primary);
    }

    .stat-number {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 4px;
    }

    .stat-label {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    /* ABOUT */
    .about {
      padding: 100px 24px;
    }

    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .about-image {
      border-radius: 20px;
      overflow: hidden;
      aspect-ratio: 3/4;
    }

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

    .about-content h2 {
      font-size: clamp(2rem, 4vw, 2.75rem);
      margin-bottom: 24px;
    }

    .about-content p {
      color: var(--text-muted);
      margin-bottom: 16px;
      font-size: 1.05rem;
    }

    .oncology-highlight {
      display: grid;
      grid-template-columns: 132px 1fr;
      gap: 18px;
      align-items: center;
      margin: 28px 0 32px;
      padding: 18px;
      border: 1px solid rgba(188, 51, 131, 0.22);
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(188, 51, 131, 0.08), rgba(255, 255, 255, 0.92));
    }

    .oncology-highlight img {
      width: 132px;
      aspect-ratio: 1;
      border-radius: 10px;
      object-fit: cover;
    }

    .oncology-highlight span {
      display: block;
      margin-bottom: 6px;
      color: var(--primary);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .oncology-highlight h3 {
      margin-bottom: 8px;
      font-size: 1.2rem;
    }

    .oncology-highlight p {
      margin-bottom: 0;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 32px;
    }

    .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .feature-icon {
      width: 40px;
      height: 40px;
      background: rgba(188, 51, 131, 0.15);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .feature-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--primary);
    }

    .feature-item strong {
      display: block;
      font-size: 0.95rem;
      margin-bottom: 2px;
    }

    .feature-item span {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    /* SERVICES */
    .services {
      padding: 100px 24px;
      background: var(--bg-alt);
    }

    .section-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 60px;
    }

    .section-header h2 {
      font-size: clamp(2rem, 4vw, 2.75rem);
      margin-bottom: 16px;
    }

    .section-header p {
      color: var(--text-muted);
      font-size: 1.1rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .service-card {
      background: var(--surface);
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px var(--shadow-lg);
    }

    .services-grid .service-card:nth-child(1) { transition-delay: 0ms; }
    .services-grid .service-card:nth-child(2) { transition-delay: 80ms; }
    .services-grid .service-card:nth-child(3) { transition-delay: 160ms; }
    .services-grid .service-card:nth-child(4) { transition-delay: 240ms; }
    .services-grid .service-card:nth-child(5) { transition-delay: 320ms; }
    .services-grid .service-card:nth-child(6) { transition-delay: 400ms; }
    .services-grid .service-card:nth-child(7) { transition-delay: 480ms; }

    .service-card-img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .oncology-service-card {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: minmax(280px, 420px) 1fr;
      align-items: center;
      max-width: 920px;
      width: 100%;
      margin: 8px auto;
    }

    .oncology-service-card .service-card-img {
      height: 320px;
      object-fit: contain;
      background: rgba(188, 51, 131, 0.06);
    }

    .oncology-service-card .service-card-content {
      padding: 32px;
    }

    .oncology-service-card h3 {
      font-size: 1.55rem;
    }

    .service-card-content {
      padding: 24px;
    }

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

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

    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--primary);
      font-weight: 600;
      font-size: 0.9rem;
      transition: gap 0.2s ease;
    }

    .service-link:hover {
      gap: 10px;
    }

    .service-promos {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 28px auto 0;
    }

    .service-promo-card {
      display: flex;
      flex-direction: column;
      gap: 8px;
      min-height: 150px;
      padding: 28px;
      border: 1px solid rgba(188, 51, 131, 0.22);
      border-radius: 12px;
      background:
        linear-gradient(135deg, rgba(188, 51, 131, 0.1), rgba(255, 255, 255, 0.88)),
        var(--surface);
      color: var(--text);
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .service-promo-card:hover {
      transform: translateY(-3px);
      border-color: rgba(188, 51, 131, 0.46);
      box-shadow: 0 12px 32px var(--shadow-lg);
    }

    .service-promo-kicker {
      color: var(--primary);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .service-promo-card strong {
      font-family: 'Playfair Display', serif;
      font-size: 1.65rem;
      line-height: 1.15;
    }

    .service-promo-card span:last-child {
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* PRICING */
    .pricing {
      padding: 100px 24px;
    }

    .pricing-table-wrapper {
      max-width: 1000px;
      margin: 0 auto;
      overflow-x: auto;
    }

    .pricing-table {
      width: 100%;
      border-collapse: collapse;
      background: var(--surface);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 24px var(--shadow);
    }

    .pricing-table thead {
      background: var(--primary-dark);
      color: white;
    }

    .pricing-table th {
      padding: 20px 16px;
      font-weight: 600;
      text-align: left;
      font-size: 0.9rem;
    }

    .pricing-table th:not(:first-child) {
      text-align: center;
    }

    .pricing-table td {
      padding: 16px;
      border-bottom: 1px solid var(--border);
      font-size: 0.95rem;
    }

    .pricing-table td:not(:first-child) {
      text-align: center;
      font-weight: 600;
      color: var(--text);
    }

    .pricing-table tbody tr:hover {
      background: rgba(188, 51, 131, 0.05);
    }

    .pricing-table .category-row {
      background: var(--bg-alt);
    }

    .pricing-table .category-row td {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 1rem;
      color: var(--primary-dark);
      padding: 12px 16px;
    }

    .popular-badge {
      display: inline-block;
      background: var(--accent);
      color: white;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 4px 8px;
      border-radius: 4px;
      margin-left: 8px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .pricing-note {
      text-align: center;
      margin-top: 24px;
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    /* HOW IT WORKS */
    .how-it-works {
      padding: 100px 24px;
      background: var(--bg-alt);
    }

    .steps-container {
      display: flex;
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
    }

    .steps-container::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 60px;
      right: 60px;
      height: 2px;
      background: var(--border-dark);
    }

    .step-item {
      flex: 1;
      text-align: center;
      position: relative;
    }

    .steps-container .step-item:nth-child(1) { transition-delay: 0ms; }
    .steps-container .step-item:nth-child(2) { transition-delay: 100ms; }
    .steps-container .step-item:nth-child(3) { transition-delay: 200ms; }
    .steps-container .step-item:nth-child(4) { transition-delay: 300ms; }

    .step-number {
      width: 80px;
      height: 80px;
      background: var(--surface);
      border: 3px solid var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary);
      position: relative;
      z-index: 1;
    }

    .step-item h3 {
      font-size: 1.1rem;
      margin-bottom: 8px;
    }

    .step-item p {
      color: var(--text-muted);
      font-size: 0.9rem;
      max-width: 200px;
      margin: 0 auto;
    }

    /* TESTIMONIALS */
    .testimonials {
      padding: 100px 24px;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .testimonial-card {
      background: var(--surface);
      border-radius: 16px;
      padding: 32px;
      border: 1px solid var(--border);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px var(--shadow-lg);
    }

    .testimonials-grid .testimonial-card:nth-child(1) { transition-delay: 0ms; }
    .testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 80ms; }
    .testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 160ms; }

    .testimonial-stars {
      color: var(--accent);
      font-size: 1.25rem;
      margin-bottom: 16px;
      letter-spacing: 2px;
    }

    .testimonial-card blockquote {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--text);
      margin-bottom: 20px;
      font-style: italic;
    }

    .testimonial-author {
      font-weight: 600;
      font-size: 0.9rem;
    }

    .testimonial-location {
      color: var(--text-muted);
      font-size: 0.85rem;
    }

    /* FAQ */
    .faq {
      padding: 100px 24px;
      background: var(--bg-alt);
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      background: var(--surface);
      border-radius: 12px;
      margin-bottom: 12px;
      border: 1px solid var(--border);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      padding: 20px 24px;
      background: none;
      border: none;
      text-align: left;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 600;
      color: var(--text);
      transition: background 0.2s ease;
    }

    .faq-question:hover {
      background: rgba(188, 51, 131, 0.05);
    }

    .faq-icon {
      width: 24px;
      height: 24px;
      position: relative;
      flex-shrink: 0;
    }

    .faq-icon::before,
    .faq-icon::after {
      content: '';
      position: absolute;
      background: var(--primary);
      transition: transform 0.3s ease;
    }

    .faq-icon::before {
      width: 14px;
      height: 2px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .faq-icon::after {
      width: 2px;
      height: 14px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .faq-item.active .faq-icon::after {
      transform: translate(-50%, -50%) rotate(90deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq-item.active .faq-answer {
      max-height: 320px;
    }

    .faq-answer-inner {
      padding: 0 24px 20px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* CONTACT */
    .contact {
      padding: 100px 24px;
    }

    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .contact-info h2 {
      font-size: clamp(1.75rem, 3vw, 2.25rem);
      margin-bottom: 24px;
    }

    .contact-details {
      margin-bottom: 32px;
    }

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

    .contact-icon {
      width: 44px;
      height: 44px;
      background: rgba(188, 51, 131, 0.15);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--primary);
    }

    .contact-item a {
      color: var(--text);
      transition: color 0.2s ease;
    }

    .contact-item a:hover {
      color: var(--primary);
    }

    .contact-item strong {
      display: block;
      margin-bottom: 4px;
    }

    .map-container {
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
    }

    .map-frame {
      display: block;
      width: 100%;
      height: 250px;
      border: 0;
    }

    .contact-form {
      background: var(--surface);
      border-radius: 20px;
      padding: 40px;
      border: 1px solid var(--border);
      box-shadow: 0 4px 24px var(--shadow);
    }

    .contact-form h3 {
      font-size: 1.5rem;
      margin-bottom: 24px;
    }

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

    .form-group label {
      display: block;
      font-weight: 500;
      margin-bottom: 8px;
      font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid var(--border);
      border-radius: 10px;
      font-family: var(--font-body);
      font-size: 1rem;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
      background: var(--bg);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(188, 51, 131, 0.2);
    }

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

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

    .form-error {
      color: #a6265f;
      font-size: 0.85rem;
      margin-top: 6px;
      display: none;
    }

    .form-group.error input,
    .form-group.error select,
    .form-group.error textarea {
      border-color: #a6265f;
    }

    .form-group.error .form-error {
      display: block;
    }

    .form-success {
      background: rgba(188, 51, 131, 0.12);
      color: var(--primary-dark);
      padding: 16px;
      border-radius: 10px;
      text-align: center;
      font-weight: 500;
      display: none;
    }

    .form-success.visible {
      display: block;
    }

    .form-status {
      display: none;
      margin-top: 12px;
      padding: 14px 16px;
      border-radius: 10px;
      font-size: 0.95rem;
      font-weight: 500;
      text-align: center;
    }

    .form-status.visible {
      display: block;
    }

    .form-status-error {
      background: rgba(166, 38, 95, 0.1);
      color: #a6265f;
    }

    /* FOOTER */
    footer {
      background: linear-gradient(135deg, #35142a 0%, var(--primary-dark) 100%);
      color: white;
      padding: 80px 24px 24px;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      max-width: 1200px;
      margin: 0 auto;
    }

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

    .footer-brand p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .footer-section h4 {
      color: white;
      font-size: 1rem;
      margin-bottom: 20px;
    }

    .footer-section ul li {
      margin-bottom: 12px;
    }

    .footer-section a {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.9rem;
      transition: color 0.2s ease;
    }

    .footer-section a:hover {
      color: white;
    }

    .social-links {
      display: flex;
      gap: 12px;
      margin-top: 24px;
    }

    .social-link {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease;
    }

    .social-link:hover {
      background: var(--primary);
    }

    .social-link svg {
      width: 20px;
      height: 20px;
      fill: white;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin-top: 48px;
      padding-top: 24px;
      text-align: center;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .footer-bottom p {
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.85rem;
      margin-bottom: 8px;
    }

    .footer-disclaimer {
      color: rgba(255, 255, 255, 0.4);
      font-size: 0.8rem;
      max-width: 600px;
      margin: 16px auto 0;
      line-height: 1.6;
    }

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

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

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

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

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

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

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

      .steps-container {
        flex-wrap: wrap;
        gap: 32px;
      }

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

      .step-item {
        flex: 0 0 calc(50% - 16px);
      }

      .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }

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

    @media (max-width: 768px) {
      nav {
        display: flex;
        justify-content: space-between;
      }

      .logo-img {
        height: 70px;
      }

      .nav-links {
        display: none;
      }

      .nav-cta {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .mobile-menu {
        display: block;
      }

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

      .oncology-highlight {
        grid-template-columns: 1fr;
      }

      .oncology-highlight img {
        width: 100%;
        height: auto;
        max-height: none;
      }

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

      .service-promos {
        grid-template-columns: 1fr;
      }

      .oncology-service-card {
        grid-template-columns: 1fr;
        max-width: 520px;
      }

      .oncology-service-card .service-card-img {
        height: 360px;
      }

      .step-item {
        flex: 0 0 100%;
      }

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

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

      .footer-brand {
        order: -1;
      }

      .social-links {
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      .logo-img {
        height: 62px;
      }

      .hero {
        padding: 100px 16px 60px;
      }

      .trust-stats {
        grid-template-columns: 1fr;
        gap: 24px;
      }

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

      .pricing-table th,
      .pricing-table td {
        padding: 12px 8px;
        font-size: 0.85rem;
      }

      .oncology-service-card .service-card-img {
        height: 300px;
      }
    }
