﻿:root {
      --color-bg: #0a0a0b;
      --color-bg-elevated: #141416;
      --color-bg-card: #1a1a1e;
      --color-text: #f5f5f4;
      --color-text-muted: #b3b3b8;
      --color-accent: #f59e0b;
      --color-accent-soft: rgba(245, 158, 11, 0.15);
      --color-border: rgba(255, 255, 255, 0.08);
      --font-display: 'DM Serif Display', Georgia, serif;
      --font-body: 'Outfit', -apple-system, sans-serif;
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    }

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

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      font-family: var(--font-body);
      background: var(--color-bg);
      color: var(--color-text);
      line-height: 1.6;
      overflow-x: hidden;
      width: 100%;
      max-width: 100vw;
    }

    /* Geometric Background Pattern */
    .bg-pattern {
      position: fixed;
      inset: 0;
      z-index: -1;
      opacity: 0.4;
      background-image:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(245, 158, 11, 0.12), transparent),
        radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.05), transparent 40%);
    }

    .bg-grid {
      position: fixed;
      inset: 0;
      z-index: -1;
      background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 1.5rem 4rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(10, 10, 11, 0.8);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--color-border);
      transition: all 0.3s var(--ease-out);
    }

    .logo {
      font-family: var(--font-display);
      font-size: 1.5rem;
      color: var(--color-text);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .logo-mark {
      width: 32px;
      height: 32px;
      background: linear-gradient(135deg, var(--color-accent), #fbbf24);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-family: var(--font-body);
      font-size: 0.9rem;
      color: var(--color-bg);
    }

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

    .nav-links a {
      color: var(--color-text-muted);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 400;
      transition: color 0.2s;
      position: relative;
    }

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

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

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

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

    .lang-switch {
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }

    .lang-btn {
      background: none;
      border: none;
      color: var(--color-text-muted);
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 500;
      cursor: pointer;
      padding: 0.25rem 0.5rem;
      transition: color 0.2s;
    }

    .lang-btn:hover {
      color: var(--color-text);
    }

    .lang-btn.active {
      color: var(--color-accent);
    }

    .lang-divider {
      color: var(--color-text-muted);
      font-size: 0.85rem;
      opacity: 0.5;
    }

    .nav-cta {
      background: var(--color-accent);
      color: var(--color-bg);
      padding: 0.6rem 1.25rem;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.85rem;
      transition: all 0.3s var(--ease-out);
      opacity: 0;
      transform: translateX(10px);
      pointer-events: none;
    }

    .nav-cta.visible {
      opacity: 1;
      transform: translateX(0);
      pointer-events: auto;
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(245, 158, 11, 0.3);
    }

    .nav-cta.visible:hover {
      transform: translateY(-2px);
    }

    /* Mobile Menu */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 28px;
      height: 28px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 101;
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--color-text);
      border-radius: 2px;
      transition: all 0.3s var(--ease-out);
    }

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

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

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

    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--color-bg);
      z-index: 99;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s var(--ease-out);
    }

    .mobile-menu.active {
      opacity: 1;
      visibility: visible;
    }

    .mobile-menu-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }

    .mobile-menu-links a {
      color: var(--color-text);
      text-decoration: none;
      font-size: 1.5rem;
      font-family: var(--font-display);
      transition: color 0.2s;
    }

    .mobile-menu-links a:hover {
      color: var(--color-accent);
    }

    .mobile-menu-cta {
      background: var(--color-accent);
      color: var(--color-bg);
      padding: 1rem 2rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 500;
      font-size: 1rem;
      transition: all 0.2s var(--ease-out);
    }

    .mobile-menu-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(245, 158, 11, 0.3);
    }

    .mobile-lang-switch {
      display: flex;
      gap: 0.5rem;
      margin-top: 1rem;
    }

    .mobile-lang-switch .lang-btn {
      font-size: 1rem;
      padding: 0.5rem 1rem;
    }

    @media (max-width: 1024px) {
      .hamburger {
        display: flex;
      }

      .nav-links {
        display: none !important;
      }

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

    /* Trust Badges */
    .trust-badges {
      display: flex;
      gap: 2rem;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid var(--color-border);
      animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
    }

    .trust-badge {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .trust-badge-icon {
      width: 40px;
      height: 40px;
      background: var(--color-accent-soft);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .trust-badge-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--color-accent);
    }

    .trust-badge-text {
      font-size: 0.9rem;
      color: var(--color-text-muted);
      font-weight: 400;
    }

    .trust-badge-text strong {
      display: block;
      color: var(--color-text);
      font-weight: 500;
      margin-bottom: 0.1rem;
    }

    @media (max-width: 768px) {
      .trust-badges {
        flex-direction: column;
        gap: 1rem;
      }
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 8rem 4rem 6rem;
      position: relative;
    }

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

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--color-text-muted);
      margin-bottom: 2rem;
      font-weight: 500;
      animation: fadeInUp 0.8s var(--ease-out) both;
    }

    .hero-badge::before {
      content: '';
      width: 40px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--color-accent));
    }

    .hero-badge::after {
      content: '';
      width: 40px;
      height: 1px;
      background: linear-gradient(90deg, var(--color-accent), transparent);
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(3rem, 7vw, 5rem);
      line-height: 1.1;
      margin-bottom: 1.5rem;
      animation: fadeInUp 0.8s var(--ease-out) 0.1s both;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--color-accent);
    }

    .hero-description {
      font-size: 1.25rem;
      color: var(--color-text-muted);
      max-width: 600px;
      margin-bottom: 2.5rem;
      font-weight: 300;
      animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
    }

    .hero-ctas {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
    }

    .btn-primary {
      background: var(--color-accent);
      color: var(--color-bg);
      padding: 1rem 2rem;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.2s var(--ease-out);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(245, 158, 11, 0.35);
    }

    .btn-secondary {
      background: transparent;
      color: var(--color-text);
      padding: 1rem 2rem;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 400;
      border: 1px solid var(--color-border);
      transition: all 0.2s var(--ease-out);
    }

    .btn-secondary:hover {
      border-color: var(--color-text-muted);
      background: var(--color-bg-elevated);
    }

    .hero-visual {
      position: absolute;
      right: 4rem;
      top: 50%;
      transform: translateY(-50%);
      width: 400px;
      height: 400px;
      opacity: 0.8;
    }

    .hero-shape {
      position: absolute;
      border: 1px solid var(--color-border);
      border-radius: 20px;
      animation: float 6s ease-in-out infinite;
    }

    .hero-shape-1 {
      width: 300px;
      height: 300px;
      top: 50px;
      left: 50px;
      animation-delay: 0s;
    }

    .hero-shape-2 {
      width: 200px;
      height: 200px;
      top: 100px;
      left: 150px;
      border-color: rgba(245, 158, 11, 0.3);
      animation-delay: -2s;
    }

    .hero-shape-3 {
      width: 100px;
      height: 100px;
      top: 150px;
      left: 200px;
      background: var(--color-accent-soft);
      animation-delay: -4s;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(2deg); }
    }

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

    /* Section Styles */
    section {
      padding: 8rem 4rem;
    }

    .section-label {
      display: inline-block;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--color-accent);
      margin-bottom: 1rem;
      font-weight: 500;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 1rem;
    }

    .section-description {
      color: var(--color-text-muted);
      max-width: 600px;
      font-size: 1.1rem;
      font-weight: 300;
    }

    /* Validation Section */
    .validation {
      background: var(--color-bg-elevated);
      border-top: 1px solid var(--color-border);
      border-bottom: 1px solid var(--color-border);
      text-align: center;
    }

    .validation-content {
      max-width: 700px;
      margin: 0 auto 4rem;
    }

    .validation-content .section-description {
      margin: 0 auto;
    }

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

    .validation-card {
      background: var(--color-bg-card);
      border: 1px solid var(--color-border);
      border-radius: 16px;
      padding: 2rem 1.5rem;
      text-align: center;
      transition: all 0.3s var(--ease-out);
    }

    .validation-card:hover {
      transform: translateY(-4px);
      border-color: rgba(245, 158, 11, 0.3);
    }

    .validation-icon {
      width: 60px;
      height: 60px;
      background: var(--color-accent-soft);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.25rem;
    }

    .validation-icon svg {
      width: 28px;
      height: 28px;
      stroke: var(--color-accent);
    }

    .validation-card h3 {
      font-family: var(--font-display);
      font-size: 1.2rem;
      margin-bottom: 0.75rem;
    }

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

    .validation-cta {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }

    .validation-cta p {
      color: var(--color-text-muted);
      font-size: 1.1rem;
      font-weight: 300;
    }

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

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

    /* Services Section */
    .services {
      border-bottom: 1px solid var(--color-border);
    }

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

    .service-card {
      background: var(--color-bg-card);
      border: 1px solid var(--color-border);
      border-radius: 16px;
      padding: 2rem;
      transition: all 0.3s var(--ease-out);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .service-card:hover {
      transform: translateY(-4px);
      border-color: rgba(245, 158, 11, 0.3);
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-level {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--color-accent);
      color: var(--color-bg);
      padding: 0.4rem 0.8rem;
      border-radius: 100px;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 1.25rem;
    }

    .service-level-num {
      background: rgba(0,0,0,0.2);
      width: 20px;
      height: 20px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
    }

    /* Step progress colors - outline to solid progression */
    .services-grid .service-card:nth-child(1) .service-level {
      background: transparent;
      border: 2px solid var(--color-accent);
      color: var(--color-accent);
    }
    .services-grid .service-card:nth-child(1) .service-level-num {
      background: var(--color-accent);
      color: var(--color-bg);
    }
    .services-grid .service-card:nth-child(2) .service-level {
      background: rgba(232, 180, 77, 0.3);
      border: 2px solid var(--color-accent);
      color: var(--color-accent);
    }
    .services-grid .service-card:nth-child(2) .service-level-num {
      background: var(--color-accent);
      color: var(--color-bg);
    }
    .services-grid .service-card:nth-child(3) .service-level {
      background: var(--color-accent);
      border: 2px solid var(--color-accent);
      color: var(--color-bg);
    }

    .service-card h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }

    .service-subtitle {
      color: var(--color-accent);
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
      font-weight: 500;
    }

    .service-price {
      font-family: var(--font-display);
      font-size: 1.5rem;
      color: var(--color-text);
      margin-bottom: 0.25rem;
      font-weight: 400;
    }

    .service-price-vat {
      font-size: 0.8rem;
      color: var(--color-text-muted);
      margin-bottom: 1rem;
      font-weight: 300;
    }

    .service-card p {
      color: var(--color-text-muted);
      font-weight: 300;
      line-height: 1.7;
      margin-bottom: 1.25rem;
    }

    .service-features {
      list-style: none;
      border-top: 1px solid var(--color-border);
      padding-top: 1.25rem;
      margin-top: auto;
    }

    .service-features li {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      color: var(--color-text-muted);
      font-size: 0.85rem;
      margin-bottom: 0.6rem;
      font-weight: 300;
    }

    .service-features li::before {
      content: '';
      width: 14px;
      height: 14px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f59e0b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
      background-size: contain;
      flex-shrink: 0;
    }

    .service-note {
      margin-top: 1.5rem;
      padding: 1rem 1.25rem;
      background: linear-gradient(135deg, rgba(232, 180, 77, 0.12) 0%, rgba(232, 180, 77, 0.04) 100%);
      border: 1px solid rgba(232, 180, 77, 0.25);
      border-radius: 10px;
      font-size: 0.85rem;
      color: var(--color-text);
      font-weight: 400;
      line-height: 1.6;
      text-align: center;
    }

    .services-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      margin-top: 4rem;
      padding-top: 3rem;
      border-top: 1px solid var(--color-border);
    }

    .services-cta p {
      color: var(--color-text-muted);
      font-size: 1.1rem;
      margin: 0;
    }

    .services-cta-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--color-accent);
      text-decoration: none;
      font-weight: 500;
      font-size: 1rem;
      transition: all 0.2s var(--ease-out);
    }

    .services-cta-link:hover {
      gap: 0.75rem;
    }

    .services-cta-link svg {
      transition: transform 0.2s var(--ease-out);
    }

    .services-cta-link:hover svg {
      transform: translateX(3px);
    }

    @media (max-width: 640px) {
      .services-cta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
      }
    }

    .service-decision {
      margin-top: 1.25rem;
      padding-top: 1rem;
      border-top: 1px dashed var(--color-border);
      font-size: 0.85rem;
      color: var(--color-accent);
      font-weight: 400;
    }

    .service-card.featured {
      border-color: var(--color-accent);
      position: relative;
    }

    .service-card.featured::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--color-accent);
      border-radius: 16px 16px 0 0;
    }

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

    .process-steps::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 10%;
      right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--color-border), var(--color-border), transparent);
    }

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

    .step-number {
      width: 80px;
      height: 80px;
      background: var(--color-bg-card);
      border: 1px solid var(--color-border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-family: var(--font-display);
      font-size: 1.5rem;
      color: var(--color-accent);
      position: relative;
      z-index: 1;
      transition: all 0.3s var(--ease-out);
    }

    .process-step:hover .step-number {
      background: var(--color-accent);
      color: var(--color-bg);
      transform: scale(1.1);
    }

    .process-step h3 {
      font-size: 1.1rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
    }

    .process-step p {
      color: var(--color-text-muted);
      font-size: 0.9rem;
      font-weight: 300;
    }

    /* Results Section */
    .results {
      background: var(--color-bg-elevated);
      border-top: 1px solid var(--color-border);
      border-bottom: 1px solid var(--color-border);
    }

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

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

    .result-value {
      font-family: var(--font-display);
      font-size: 3.5rem;
      color: var(--color-accent);
      line-height: 1;
      margin-bottom: 0.5rem;
    }

    .result-label {
      color: var(--color-text-muted);
      font-size: 0.95rem;
      font-weight: 300;
    }

    /* Portfolio Modal */
    .portfolio-modal {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, 0.9);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s var(--ease-out);
    }

    .portfolio-modal.active {
      opacity: 1;
      visibility: visible;
    }

    .portfolio-modal-content {
      position: relative;
      max-width: 90vw;
      max-height: 85vh;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .portfolio-modal-slider {
      display: flex;
      max-width: 100%;
      max-height: 75vh;
      overflow: hidden;
      border-radius: 12px;
    }

    .portfolio-modal-image {
      min-width: 100%;
      max-height: 75vh;
      object-fit: contain;
      transition: transform 0.5s var(--ease-out);
    }

    .portfolio-modal-dots {
      display: flex;
      gap: 0.75rem;
      margin-top: 1.5rem;
    }

    .portfolio-modal-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      border: none;
      cursor: pointer;
      transition: all 0.3s var(--ease-out);
      padding: 0;
    }

    .portfolio-modal-dot:hover {
      background: rgba(255, 255, 255, 0.6);
    }

    .portfolio-modal-dot.active {
      background: var(--color-accent);
      transform: scale(1.2);
    }

    .portfolio-modal-close {
      position: absolute;
      top: -50px;
      right: 0;
      background: none;
      border: none;
      color: var(--color-text);
      cursor: pointer;
      padding: 0.5rem;
      transition: color 0.2s;
    }

    .portfolio-modal-close:hover {
      color: var(--color-accent);
    }

    .portfolio-modal-close svg {
      width: 32px;
      height: 32px;
    }

    .portfolio-modal-title {
      color: var(--color-text);
      font-family: var(--font-display);
      font-size: 1.5rem;
      margin-top: 1rem;
      text-align: center;
    }

    .portfolio-modal-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
      color: var(--color-text);
    }

    .portfolio-modal-nav:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: var(--color-accent);
    }

    .portfolio-modal-nav.prev {
      left: -70px;
    }

    .portfolio-modal-nav.next {
      right: -70px;
    }

    .portfolio-modal-nav svg {
      width: 24px;
      height: 24px;
    }

    @media (max-width: 768px) {
      .portfolio-modal-nav {
        display: none;
      }

      .portfolio-modal-content {
        max-width: 95vw;
      }
    }

    .portfolio-card {
      cursor: pointer;
    }

    /* Iframe Preview Modal */
    .iframe-modal {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.95);
      z-index: 1000;
      display: flex;
      flex-direction: column;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s var(--ease-out);
    }

    .iframe-modal.active {
      opacity: 1;
      visibility: visible;
    }

    .iframe-modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 1.5rem;
      background: var(--color-bg-card);
      border-bottom: 1px solid var(--color-border);
    }

    .iframe-modal-tabs {
      display: flex;
      gap: 0.5rem;
    }

    .iframe-tab {
      padding: 0.5rem 1rem;
      background: transparent;
      border: 1px solid var(--color-border);
      border-radius: 6px;
      color: var(--color-text-muted);
      font-size: 0.85rem;
      cursor: pointer;
      transition: all 0.2s var(--ease-out);
    }

    .iframe-tab:hover {
      border-color: var(--color-accent);
      color: var(--color-text);
    }

    .iframe-tab.active {
      background: var(--color-accent);
      border-color: var(--color-accent);
      color: var(--color-bg);
    }

    .iframe-modal-close {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      border: 1px solid var(--color-border);
      border-radius: 8px;
      color: var(--color-text-muted);
      cursor: pointer;
      transition: all 0.2s var(--ease-out);
    }

    .iframe-modal-close:hover {
      background: rgba(239, 68, 68, 0.2);
      border-color: #ef4444;
      color: #ef4444;
    }

    .iframe-modal-close svg {
      width: 20px;
      height: 20px;
    }

    .iframe-modal-content {
      flex: 1;
      padding: 1rem;
      overflow: hidden;
    }

    .iframe-modal-content iframe {
      width: 100%;
      height: 100%;
      border: none;
      border-radius: 8px;
      background: #fff;
    }

    @media (max-width: 768px) {
      .iframe-modal-header {
        flex-wrap: wrap;
        gap: 1rem;
      }
      .iframe-modal-tabs {
        order: 2;
        width: 100%;
        justify-content: center;
      }
      .iframe-modal-close {
        order: 1;
        margin-left: auto;
      }
      .iframe-tab {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
      }
    }

    /* Legal Modals */
    .legal-modal {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.9);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s var(--ease-out);
    }

    .legal-modal.active {
      opacity: 1;
      visibility: visible;
    }

    .legal-modal-content {
      background: var(--color-bg-card);
      border: 1px solid var(--color-border);
      border-radius: 16px;
      max-width: 800px;
      width: 100%;
      max-height: 85vh;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .legal-modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      border: 1px solid var(--color-border);
      border-radius: 8px;
      color: var(--color-text-muted);
      cursor: pointer;
      transition: all 0.2s var(--ease-out);
      z-index: 10;
    }

    .legal-modal-close:hover {
      background: rgba(239, 68, 68, 0.2);
      border-color: #ef4444;
      color: #ef4444;
    }

    .legal-modal-close svg {
      width: 20px;
      height: 20px;
    }

    .legal-modal-body {
      padding: 2.5rem;
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: var(--color-border) transparent;
    }

    .legal-modal-body::-webkit-scrollbar {
      width: 8px;
    }

    .legal-modal-body::-webkit-scrollbar-track {
      background: transparent;
    }

    .legal-modal-body::-webkit-scrollbar-thumb {
      background: var(--color-border);
      border-radius: 4px;
    }

    .legal-modal-body::-webkit-scrollbar-thumb:hover {
      background: var(--color-accent);
    }

    .legal-modal-body h2 {
      font-family: var(--font-display);
      font-size: 1.75rem;
      margin-bottom: 0.5rem;
    }

    .legal-date {
      color: var(--color-text-muted);
      font-size: 0.85rem;
      margin-bottom: 2rem;
    }

    .legal-section h3 {
      font-size: 1.1rem;
      margin: 1.5rem 0 0.75rem;
      color: var(--color-accent);
    }

    .legal-section h3:first-child {
      margin-top: 0;
    }

    .legal-section p {
      color: var(--color-text-muted);
      line-height: 1.7;
      margin-bottom: 0.75rem;
    }

    .legal-section ul {
      color: var(--color-text-muted);
      margin: 0.5rem 0 1rem 1.5rem;
      line-height: 1.7;
    }

    .legal-section li {
      margin-bottom: 0.35rem;
    }

    .legal-section strong {
      color: var(--color-text);
    }

    @media (max-width: 768px) {
      .legal-modal {
        padding: 1rem;
      }
      .legal-modal-content {
        max-height: 90vh;
      }
      .legal-modal-body {
        padding: 1.5rem;
      }
      .legal-modal-body h2 {
        font-size: 1.4rem;
        padding-right: 2rem;
      }
    }

    /* Trust & Transparency Section */
    .trust-section {
      background: var(--color-bg-elevated);
      border-top: 1px solid var(--color-border);
      border-bottom: 1px solid var(--color-border);
    }

    .trust-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .trust-header .section-description {
      margin: 0 auto;
      max-width: 600px;
    }

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

    .trust-item {
      display: flex;
      gap: 1.25rem;
      padding: 1.5rem;
      background: var(--color-bg-card);
      border: 1px solid var(--color-border);
      border-radius: 12px;
      transition: all 0.3s var(--ease-out);
    }

    .trust-item:hover {
      border-color: rgba(245, 158, 11, 0.3);
      transform: translateY(-2px);
    }

    .trust-item-icon {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      background: var(--color-accent-soft);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .trust-item-icon svg {
      width: 24px;
      height: 24px;
      stroke: var(--color-accent);
    }

    .trust-item-content h3 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }

    .trust-item-content p {
      color: var(--color-text-muted);
      font-size: 0.9rem;
      font-weight: 300;
      line-height: 1.6;
    }

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

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

      .trust-item {
        flex-direction: column;
        text-align: center;
      }

      .trust-item-icon {
        margin: 0 auto;
      }
    }

    /* Compliance Section */
    .compliance-section {
      border-bottom: 1px solid var(--color-border);
    }

    .compliance-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .compliance-header .section-description {
      margin: 0 auto;
      max-width: 600px;
    }

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

    .compliance-item {
      display: flex;
      gap: 1.25rem;
      padding: 1.5rem;
      background: var(--color-bg-card);
      border: 1px solid var(--color-border);
      border-radius: 12px;
      transition: all 0.3s var(--ease-out);
    }

    .compliance-item:hover {
      border-color: rgba(245, 158, 11, 0.3);
      transform: translateY(-2px);
    }

    .compliance-item-icon {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      background: var(--color-accent-soft);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .compliance-item-icon svg {
      width: 24px;
      height: 24px;
      stroke: var(--color-accent);
    }

    .compliance-item-content h3 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }

    .compliance-item-content p {
      color: var(--color-text-muted);
      font-size: 0.9rem;
      font-weight: 300;
      line-height: 1.6;
    }

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

      .compliance-item {
        flex-direction: column;
        text-align: center;
      }

      .compliance-item-icon {
        margin: 0 auto;
      }
    }

    /* Portfolio Section */
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 4rem;
    }

    .portfolio-card {
      background: var(--color-bg-card);
      border: 1px solid var(--color-border);
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.3s var(--ease-out);
    }

    .portfolio-card:hover {
      transform: translateY(-6px);
      border-color: rgba(245, 158, 11, 0.4);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .portfolio-image-wrapper::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s var(--ease-out);
      pointer-events: none;
    }

    .portfolio-card:hover .portfolio-image-wrapper::after {
      background: rgba(0, 0, 0, 0.3);
    }

    .portfolio-expand-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.8);
      opacity: 0;
      z-index: 2;
      width: 48px;
      height: 48px;
      background: var(--color-accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s var(--ease-out);
      pointer-events: none;
    }

    .portfolio-card:hover .portfolio-expand-icon {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    .portfolio-expand-icon svg {
      width: 24px;
      height: 24px;
      stroke: var(--color-bg);
    }

    .portfolio-image-wrapper {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      border-bottom: 1px solid var(--color-border);
    }

    .portfolio-slider {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 0.5s var(--ease-out);
    }

    .portfolio-image {
      min-width: 100%;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      background: var(--color-bg-elevated);
      cursor: pointer;
    }

    .portfolio-iframe {
      min-width: 100%;
      width: 100%;
      height: 100%;
      border: none;
      background: var(--color-bg-elevated);
      pointer-events: none;
      transform-origin: 0 0;
      transform: scale(0.25);
      width: 400%;
      height: 400%;
    }

    .portfolio-card.iframe-card .portfolio-image-wrapper {
      overflow: hidden;
    }

    /* Full-width portfolio showcase */
    .portfolio-showcase {
      grid-column: 1 / -1;
      background: var(--color-bg-card);
      border: 1px solid var(--color-border);
      border-radius: 16px;
      padding: 2rem;
      transition: all 0.4s var(--ease-out);
    }

    .portfolio-showcase:hover {
      border-color: rgba(245, 158, 11, 0.4);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .portfolio-showcase-header {
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .portfolio-showcase-header h3 {
      font-family: var(--font-display);
      font-size: 1.35rem;
      margin: 0.5rem 0;
    }

    .portfolio-showcase-header p {
      color: var(--color-text-muted);
      font-size: 0.9rem;
      font-weight: 300;
      max-width: 600px;
      margin: 0 auto;
    }

    .portfolio-showcase-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .portfolio-showcase-item {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      cursor: pointer;
      transition: transform 0.3s var(--ease-out);
    }

    .portfolio-showcase-item:hover {
      transform: translateY(-4px);
    }

    .portfolio-showcase-item:hover .showcase-iframe-wrapper {
      border-color: var(--color-accent);
    }

    .showcase-label {
      font-size: 0.75rem;
      color: var(--color-text-muted);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      text-align: center;
    }

    .showcase-iframe-wrapper {
      position: relative;
      height: 500px;
      overflow: hidden;
      border-radius: 8px;
      border: 1px solid var(--color-border);
      background: var(--color-bg-elevated);
      transition: border-color 0.3s var(--ease-out);
    }

    .showcase-iframe-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 200%;
      height: 200%;
      border: none;
      transform: scale(0.5);
      transform-origin: 0 0;
      pointer-events: none;
    }

    @media (max-width: 1024px) {
      .portfolio-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
      }
    }

    @media (max-width: 768px) {
      .portfolio-showcase {
        padding: 1.5rem;
      }
      .portfolio-showcase-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
      }
      .showcase-iframe-wrapper {
        height: 400px;
      }
    }

    .portfolio-dots {
      position: absolute;
      bottom: 0.75rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 0.5rem;
      z-index: 2;
    }

    .portfolio-pause {
      position: absolute;
      bottom: 0.75rem;
      right: 0.75rem;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.6);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      opacity: 0;
      transition: opacity 0.2s;
    }

    .portfolio-image-wrapper:hover .portfolio-pause,
    .portfolio-pause:focus {
      opacity: 1;
    }

    .portfolio-pause:focus {
      outline: 2px solid var(--color-accent);
      outline-offset: 2px;
    }

    .portfolio-pause svg {
      width: 10px;
      height: 10px;
      stroke: white;
      fill: white;
    }

    .portfolio-pause .pause-icon {
      display: block;
    }

    .portfolio-pause .play-icon {
      display: none;
    }

    .portfolio-pause.paused .pause-icon {
      display: none;
    }

    .portfolio-pause.paused .play-icon {
      display: block;
    }

    .portfolio-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      border: none;
      cursor: pointer;
      transition: all 0.3s var(--ease-out);
      padding: 0;
    }

    .portfolio-dot:hover {
      background: rgba(255, 255, 255, 0.6);
    }

    .portfolio-dot.active {
      background: var(--color-accent);
      transform: scale(1.2);
    }

    .portfolio-placeholder {
      width: 100%;
      aspect-ratio: 16 / 10;
      background: linear-gradient(135deg, var(--color-bg-elevated) 0%, var(--color-bg-card) 100%);
      border-bottom: 1px solid var(--color-border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-text-muted);
      font-size: 0.85rem;
    }

    .portfolio-placeholder svg {
      width: 48px;
      height: 48px;
      stroke: var(--color-accent);
      opacity: 0.5;
    }

    .portfolio-content {
      padding: 1.5rem;
    }

    .portfolio-tag {
      display: inline-block;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--color-accent);
      background: var(--color-accent-soft);
      padding: 0.3rem 0.6rem;
      border-radius: 4px;
      margin-bottom: 0.75rem;
      font-weight: 500;
    }

    .portfolio-card h3 {
      font-family: var(--font-display);
      font-size: 1.35rem;
      margin-bottom: 0.5rem;
    }

    .portfolio-card p {
      color: var(--color-text-muted);
      font-size: 0.9rem;
      font-weight: 300;
      line-height: 1.6;
    }

    .portfolio-link-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 1rem;
      padding: 0.5rem 1rem;
      background: var(--color-accent);
      color: var(--color-bg);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      border-radius: 6px;
      transition: all 0.2s var(--ease-out);
    }

    .portfolio-link-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
    }

    .portfolio-link-btn svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }

    @media (max-width: 1024px) {
      .portfolio-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
      }
    }

    /* Team Section */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2.5rem;
      margin-top: 4rem;
    }

    .team-card {
      text-align: center;
    }

    .team-image {
      position: relative;
      width: 180px;
      height: 180px;
      margin: 0 auto 1.5rem;
    }

    .team-image a {
      display: block;
      width: 100%;
      height: 100%;
      cursor: pointer;
      position: relative;
      z-index: 2;
      border-radius: 50%;
      overflow: hidden;
    }

    .team-image a::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(245, 158, 11, 0.3);
      opacity: 0;
      transition: opacity 0.3s var(--ease-out);
      border-radius: 50%;
      pointer-events: none;
    }

    .team-image a:hover::after {
      opacity: 1;
    }

    .team-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      border: 2px solid var(--color-border);
      filter: grayscale(20%);
      transition: all 0.3s var(--ease-out);
    }

    .team-card:hover .team-photo {
      filter: grayscale(0%);
      border-color: var(--color-accent);
      transform: scale(1.05);
    }

    .team-photo-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--color-bg-elevated);
      border: 2px dashed var(--color-accent);
      filter: none;
    }

    .team-photo-icon svg {
      width: 60%;
      height: 60%;
      color: var(--color-accent);
      opacity: 0.7;
    }

    .team-card:hover .team-photo-icon {
      filter: none;
      border-style: solid;
    }

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

    .team-image::after {
      content: '';
      position: absolute;
      inset: -6px;
      border: 1px solid var(--color-accent);
      border-radius: 50%;
      opacity: 0;
      transition: opacity 0.3s var(--ease-out);
      pointer-events: none;
    }

    .team-card:hover .team-image::after {
      opacity: 0.4;
    }

    .team-card h3 {
      font-family: var(--font-display);
      font-size: 1.4rem;
      margin-bottom: 0.35rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .team-linkedin {
      color: var(--color-text-muted);
      transition: color 0.2s ease, transform 0.2s ease;
      display: inline-flex;
      align-items: center;
    }

    .team-linkedin:hover {
      color: #0a66c2;
      transform: scale(1.1);
    }

    .team-linkedin svg {
      display: block;
    }

    .team-role {
      color: var(--color-accent);
      font-size: 0.95rem;
      margin-bottom: 0.75rem;
    }

    .team-bio {
      color: var(--color-text-muted);
      font-size: 0.9rem;
      font-weight: 300;
      line-height: 1.7;
    }

    @media (max-width: 1024px) {
      .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
      }
    }

    @media (max-width: 640px) {
      .team-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
      }
    }

    /* Contact Section */
    .contact {
      position: relative;
    }

    .contact::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(245, 158, 11, 0.1), transparent 60%);
      pointer-events: none;
    }

    .contact-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .contact-header .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
    }

    .contact-header .section-description {
      margin: 1rem auto 0;
      max-width: 500px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      max-width: 900px;
      margin: 0 auto;
    }

    .contact-option {
      background: var(--color-bg-card);
      border: 1px solid var(--color-border);
      border-radius: 16px;
      padding: 2.5rem;
      transition: all 0.3s var(--ease-out);
    }

    .contact-option:hover {
      border-color: rgba(245, 158, 11, 0.3);
    }

    .contact-option-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .contact-option-icon {
      width: 48px;
      height: 48px;
      background: var(--color-accent-soft);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .contact-option-icon svg {
      width: 24px;
      height: 24px;
      stroke: var(--color-accent);
    }

    .contact-option h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
    }

    .contact-option > p {
      color: var(--color-text-muted);
      font-size: 0.95rem;
      font-weight: 300;
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }

    .schedule-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      width: 100%;
      background: var(--color-accent);
      color: var(--color-bg);
      border: none;
      padding: 1rem 2rem;
      border-radius: 8px;
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s var(--ease-out);
    }

    .schedule-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(245, 158, 11, 0.35);
    }

    .schedule-coming-soon {
      display: inline-block;
      background: rgba(245, 158, 11, 0.15);
      border: 1px solid rgba(245, 158, 11, 0.3);
      color: var(--color-accent);
      font-size: 0.75rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 0.35rem 0.75rem;
      border-radius: 4px;
      margin-top: 0.75rem;
    }

    .schedule-info {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1rem;
      color: var(--color-text-muted);
      font-size: 0.85rem;
    }

    .schedule-info svg {
      width: 16px;
      height: 16px;
      stroke: var(--color-accent);
    }

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

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

    /* Skip to main content link */
    .skip-link {
      position: fixed;
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--color-accent);
      color: var(--color-bg);
      padding: 0.75rem 1.5rem;
      border-radius: 0 0 8px 8px;
      text-decoration: none;
      font-weight: 500;
      z-index: 1001;
      transition: top 0.2s;
    }

    .skip-link:focus {
      top: 0;
      outline: none;
    }

    /* Visually hidden but accessible to screen readers */
    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .contact-form input:not([type="checkbox"]):not([type="radio"]),
    .contact-form textarea {
      width: 100%;
      background: var(--color-bg-elevated);
      border: 1px solid var(--color-border);
      border-radius: 8px;
      padding: 0.875rem 1rem;
      color: var(--color-text);
      font-family: var(--font-body);
      font-size: 0.95rem;
      transition: border-color 0.2s;
      box-sizing: border-box;
    }

    .contact-form input:not([type="checkbox"]):not([type="radio"]):focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: var(--color-accent);
    }

    .contact-form input:not([type="checkbox"]):not([type="radio"])::placeholder,
    .contact-form textarea::placeholder {
      color: var(--color-text-muted);
    }

    .contact-form textarea {
      resize: vertical;
      min-height: 150px;
    }

    .contact-preference {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .contact-preference-label {
      font-size: 0.85rem;
      color: var(--color-text-muted);
    }

    .preference-options {
      display: flex;
      gap: 1rem;
    }

    .preference-option {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1rem;
      background: var(--color-bg-elevated);
      border: 1px solid var(--color-border);
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .preference-option:hover {
      border-color: var(--color-text-muted);
    }

    .preference-option.selected {
      border-color: var(--color-accent);
      background: var(--color-accent-soft);
    }

    .preference-option input {
      display: none;
    }

    .preference-radio {
      width: 18px;
      height: 18px;
      border: 2px solid var(--color-border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }

    .preference-option.selected .preference-radio {
      border-color: var(--color-accent);
    }

    .preference-radio::after {
      content: '';
      width: 8px;
      height: 8px;
      background: var(--color-accent);
      border-radius: 50%;
      opacity: 0;
      transition: opacity 0.2s;
    }

    .preference-option.selected .preference-radio::after {
      opacity: 1;
    }

    .preference-option svg {
      width: 18px;
      height: 18px;
      stroke: var(--color-text-muted);
    }

    .preference-option.selected svg {
      stroke: var(--color-accent);
    }

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

    .preference-option.selected .preference-text {
      color: var(--color-text);
    }

    /* GDPR Consent Checkbox */
    .gdpr-consent {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      margin-top: 0.5rem;
    }

    .gdpr-consent input[type="checkbox"] {
      appearance: none;
      -webkit-appearance: none;
      flex-shrink: 0;
      width: 18px;
      height: 18px;
      min-width: 18px;
      border: 1.5px solid var(--color-border);
      border-radius: 4px;
      background: var(--color-bg-elevated);
      cursor: pointer;
      margin-top: 1px;
      transition: all 0.2s;
      position: relative;
    }

    .gdpr-consent input[type="checkbox"]:checked {
      background: var(--color-accent);
      border-color: var(--color-accent);
    }

    .gdpr-consent input[type="checkbox"]:checked::after {
      content: '';
      position: absolute;
      left: 5px;
      top: 1px;
      width: 5px;
      height: 10px;
      border: solid var(--color-bg);
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
    }

    .gdpr-consent input[type="checkbox"]:focus {
      outline: none;
      border-color: var(--color-accent);
      box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
    }

    .gdpr-consent input[type="checkbox"].error {
      border-color: #ef4444;
    }

    .gdpr-consent-label {
      font-size: 0.85rem;
      color: var(--color-text-muted);
      line-height: 1.5;
      cursor: pointer;
    }

    .gdpr-consent-label a {
      color: var(--color-accent);
      text-decoration: underline;
    }

    .gdpr-consent-label a:hover {
      color: var(--color-text);
    }

    .gdpr-consent .field-error {
      margin-top: 0.5rem;
    }

    .contact-form button {
      background: var(--color-accent);
      color: var(--color-bg);
      border: none;
      padding: 1rem 2rem;
      border-radius: 8px;
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s var(--ease-out);
    }

    .contact-form button:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(245, 158, 11, 0.35);
    }

    .contact-form button:disabled {
      opacity: 0.7;
      cursor: not-allowed;
      transform: none;
    }

    .form-field {
      position: relative;
      width: 100%;
    }

    .contact-form input:not([type="checkbox"]):not([type="radio"]).error,
    .contact-form textarea.error {
      border-color: #ef4444;
    }

    .field-error {
      color: #ef4444;
      font-size: 0.8rem;
      margin-top: 0.35rem;
      display: flex;
      align-items: center;
      gap: 0.35rem;
    }

    .field-error svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }

    .toast {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1rem 1.5rem;
      border-radius: 10px;
      font-size: 0.95rem;
      z-index: 1000;
      animation: toastIn 0.3s ease, toastOut 0.3s ease 4.7s forwards;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .toast-success {
      background: rgba(34, 197, 94, 0.95);
      color: #fff;
    }

    .toast-error {
      background: rgba(239, 68, 68, 0.95);
      color: #fff;
    }

    .toast-info {
      background: rgba(245, 158, 11, 0.95);
      color: #000;
    }

    /* Auto-dismissable popup */
    .popup-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1100;
      padding: 1rem;
      animation: popupFadeIn 0.3s ease;
      cursor: pointer;
    }

    .popup-overlay.fade-out {
      animation: popupFadeOut 0.3s ease forwards;
    }

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

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

    .popup-content {
      background: var(--color-bg-card);
      border: 1px solid var(--color-border);
      border-radius: 16px;
      padding: 2rem;
      max-width: 400px;
      text-align: center;
      position: relative;
      overflow: hidden;
      animation: popupSlideIn 0.3s ease;
    }

    @keyframes popupSlideIn {
      from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
      }
      to {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }

    .popup-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 1.25rem;
      background: rgba(245, 158, 11, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .popup-icon svg {
      width: 30px;
      height: 30px;
      stroke: var(--color-accent);
    }

    .popup-title {
      font-family: var(--font-display);
      font-size: 1.35rem;
      margin-bottom: 0.75rem;
      color: var(--color-text);
    }

    .popup-message {
      color: var(--color-text-muted);
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .popup-progress {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      background: var(--color-accent);
      animation: popupProgress 4s linear forwards;
    }

    @keyframes popupProgress {
      from { width: 100%; }
      to { width: 0%; }
    }

    .toast svg {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
    }

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

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

    @media (max-width: 640px) {
      .toast {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
      }
    }

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

    /* Footer */
    footer {
      padding: 4rem;
      border-top: 1px solid var(--color-border);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .footer-links a {
      color: var(--color-text-muted);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--color-text);
    }

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

    /* Responsive */
    @media (max-width: 1024px) {
      nav {
        padding: 1.25rem 2rem;
      }

      .nav-links {
        display: none;
      }

      section, .hero {
        padding: 5rem 2rem;
      }

      .hero-visual {
        display: none;
      }

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

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

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

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

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

      footer {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
      }
    }

    @media (max-width: 640px) {
      /* Global mobile centering */
      html, body {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        text-align: center;
      }

      section {
        padding: 4rem 1rem;
        width: 100%;
        max-width: 100vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
      }

      .hero {
        padding: 6rem 1rem 4rem;
        width: 100%;
        max-width: 100vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
        min-height: auto;
      }

      nav {
        padding: 1rem 1.25rem;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
      }

      footer {
        padding: 3rem 1.25rem;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
      }

      /* Section headers */
      .section-label,
      .section-title,
      .section-description,
      .hero h1,
      .hero-description {
        text-align: center;
        width: 100%;
      }

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

      .hero-description {
        font-size: 1.05rem;
      }

      .hero-ctas {
        flex-direction: column;
        align-items: center;
        width: 100%;
      }

      .hero-ctas .btn {
        width: 100%;
        justify-content: center;
      }

      /* Grids - center items */
      .services-grid,
      .validation-grid,
      .trust-grid,
      .team-grid,
      .process-steps,
      .portfolio-grid,
      .contact-grid {
        width: 100%;
        max-width: 100%;
        justify-items: center;
        box-sizing: border-box;
      }

      /* Cards */
      .service-card,
      .validation-card,
      .trust-card,
      .team-card,
      .process-step,
      .portfolio-card {
        text-align: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
      }

      .service-card {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .service-features {
        text-align: left;
        display: inline-block;
      }

      .service-note,
      .service-decision {
        text-align: center;
        width: 100%;
      }

      .process-steps {
        grid-template-columns: 1fr;
      }

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

      .result-value {
        font-size: 2.5rem;
      }

      .contact-grid {
        width: 100%;
      }

      .contact-info {
        align-items: center;
      }
    }

    /* Cookie Consent Banner */
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--color-bg-card);
      border-top: 1px solid var(--color-border);
      padding: 1.25rem 2rem;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      flex-wrap: wrap;
      box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
      transform: translateY(100%);
      transition: transform 0.4s var(--ease-out);
    }

    .cookie-banner.visible {
      transform: translateY(0);
    }

    .cookie-banner.hidden {
      display: none;
    }

    .cookie-text {
      flex: 1;
      min-width: 280px;
      color: var(--color-text-muted);
      font-size: 0.9rem;
      line-height: 1.6;
    }

    .cookie-text a {
      color: var(--color-accent);
      text-decoration: underline;
    }

    .cookie-text a:hover {
      color: var(--color-text);
    }

    .cookie-buttons {
      display: flex;
      gap: 0.75rem;
      flex-shrink: 0;
    }

    .cookie-btn {
      padding: 0.6rem 1.25rem;
      border-radius: 6px;
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s var(--ease-out);
      border: none;
    }

    .cookie-btn-accept {
      background: var(--color-accent);
      color: var(--color-bg);
    }

    .cookie-btn-accept:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    }

    .cookie-btn-reject {
      background: transparent;
      color: var(--color-text-muted);
      border: 1px solid var(--color-border);
    }

    .cookie-btn-reject:hover {
      border-color: var(--color-text-muted);
      color: var(--color-text);
    }

    @media (max-width: 640px) {
      .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
      }

      .cookie-text {
        min-width: 100%;
      }

      .cookie-buttons {
        width: 100%;
        justify-content: center;
      }
    }

    /* Scroll animations */
    .fade-in {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s var(--ease-out);
    }

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

    /* Reduced motion for accessibility */
    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }

      .fade-in {
        opacity: 1;
        transform: none;
      }

      .hero-shapes .shape {
        animation: none;
      }

      .portfolio-slider {
        transition: none;
      }
    }