/* Metrix Mind - Homepage Specific Styles */
/* Extracted from inline <style> block for performance */
    /* Page Specific Styles */
    /* NOISE OVERLAY */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 1000;
      opacity: 0.35;
    }

    /* PRELOADER */
    .preloader {
      position: fixed;
      inset: 0;
      background: var(--bg-primary);
      z-index: 99999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: var(--text-primary);
    }

    .preloader-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 40px;
      letter-spacing: 4px;
      overflow: hidden;
      margin-bottom: 20px;
    }

    .preloader-text {
      display: inline-block;
      transform: translateY(100%);
    }

    .preloader-bar-wrap {
      width: 200px;
      height: 2px;
      background: rgba(255, 255, 255, 0.1);
      position: relative;
      overflow: hidden;
    }

    .preloader-bar {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 0%;
      background: var(--gold);
    }

    .nav-logo, .footer-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      letter-spacing: 3px;
      color: var(--text-primary) !important;
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .nav-logo span {
      color: var(--gold);
    }

    .nav-logo-img {
      height: 60px;
      width: auto;
      vertical-align: middle;
      margin-right: 10px;
    }

    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
    }

    .nav-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 700;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--gold);
    }

    .nav-cta {
      background: var(--gold);
      color: var(--black);
      padding: 10px 24px;
      font-weight: 800;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
      transition: background 0.3s, transform 0.2s;
    }

    .nav-cta:hover {
      background: var(--orange);
      transform: scale(1.04);
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 60px 80px;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(123, 47, 255, 0.12) 0%, transparent 65%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(255, 92, 26, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 50% 10%, rgba(255, 212, 94, 0.05) 0%, transparent 60%);
      transition: opacity 0.3s;
    }

    body.light-mode .hero-bg {
      opacity: 0.5;
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(var(--gold-rgb), 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--gold-rgb), 0.03) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 0%, transparent 80%);
    }
    
    body.light-mode .hero-grid {
      opacity: 0.4;
    }

    /* BLOBS */
    .hero-blob {
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      filter: blur(120px);
      z-index: 1;
      opacity: 0.4;
      pointer-events: none;
    }
    .glow-purple { background: var(--purple); top: -10%; left: -10%; animation: floatBlob 20s infinite alternate; }
    .glow-orange { background: var(--orange); bottom: -10%; right: -10%; animation: floatBlob 15s infinite alternate-reverse; }

    @keyframes floatBlob {
      0% { transform: translate(0, 0) scale(1); }
      100% { transform: translate(100px, 50px) scale(1.1); }
    }

    /* GLASSMORPHISM */
    .glass {
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--glass-border);
      box-shadow: 0 8px 32px 0 var(--glass-shadow);
    }

    .floating-card {
      position: absolute;
      padding: 24px;
      border-radius: 20px;
      z-index: 5;
      width: 180px;
      text-align: center;
      box-shadow: 20px 20px 60px rgba(0,0,0,0.5);
    }
    .card-icon { font-size: 32px; margin-bottom: 8px; }
    .card-val { font-family: 'Bebas Neue'; font-size: 32px; color: var(--gold); }
    .card-txt { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); }

    /* ASYMMETRIC GRID */
    .asymmetric-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 30px;
      margin-top: 60px;
    }
    .big-card { grid-column: span 7; position: relative; padding: 60px; border-radius: 30px; overflow: hidden; min-height: 400px; display: flex; align-items: flex-end; }
    .small-card { grid-column: span 5; position: relative; padding: 40px; border-radius: 30px; overflow: hidden; min-height: 350px; }
    
    .card-content { position: relative; z-index: 2; }
    .card-tag { display: inline-block; padding: 4px 12px; border: 1px solid var(--gold); border-radius: 20px; font-size: 10px; color: var(--gold); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
    .card-title { font-family: 'Bebas Neue'; font-size: 44px; line-height: 1; margin-bottom: 15px; }
    .card-desc { color: var(--text-muted); font-size: 15px; line-height: 1.6; max-width: 400px; }
    .card-stats { display: flex; gap: 30px; margin-top: 30px; }
    .c-stat span { display: block; font-family: 'Bebas Neue'; font-size: 24px; color: var(--gold); }
    
    .card-bg-icon { position: absolute; right: -30px; bottom: -30px; font-size: 200px; opacity: 0.03; color: var(--text-primary); pointer-events: none; transition: 0.5s; }
    .glass:hover .card-bg-icon { transform: scale(1.1) rotate(-10deg); opacity: 0.08; color: var(--gold); }

    /* METHODOLOGY FLOW */
    .method-flow {
      display: flex;
      flex-direction: column;
      gap: 100px;
      margin-top: 80px;
      padding-left: 50px;
    }
    .method-item { position: relative; display: flex; gap: 40px; align-items: flex-start; }
    .method-line { position: absolute; left: 24px; top: 50px; width: 2px; height: 100px; background: linear-gradient(var(--gold), transparent); }
    .method-circle { width: 50px; height: 50px; border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue'; font-size: 24px; z-index: 2; background: var(--bg-primary); box-shadow: 0 0 20px rgba(var(--gold-rgb), 0.2); }
    .method-content h3 { font-family: 'Bebas Neue'; font-size: 36px; color: var(--gold); margin-bottom: 10px; }
    .method-content p { color: var(--text-muted); max-width: 500px; line-height: 1.6; }

    .method-glow { position: absolute; top:0; left:0; width:100%; height:100%; background: radial-gradient(circle at 10% 30%, rgba(112, 0, 255, 0.1), transparent 50%); pointer-events: none; }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 212, 94, 0.08);
      border: 1px solid rgba(255, 212, 94, 0.25);
      padding: 8px 16px;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      font-family: 'Space Mono', monospace;
      margin-bottom: 32px;
      animation: fadeUp 0.8s ease both;
    }

    .hero-tag::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.4;
        transform: scale(0.7);
      }
    }

    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(72px, 12vw, 160px);
      line-height: 0.9;
      letter-spacing: 2px;
      animation: fadeUp 0.8s 0.15s ease both;
    }

    .hero-title .line2 {
      color: transparent;
      -webkit-text-stroke: 1.5px var(--gold);
      display: block;
    }

    .hero-title .line3 {
      color: var(--orange);
      display: block;
    }

    .hero-sub {
      font-size: 17px;
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 480px;
      margin-top: 28px;
      animation: fadeUp 0.8s 0.3s ease both;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      align-items: center;
      margin-top: 44px;
      animation: fadeUp 0.8s 0.45s ease both;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--black);
      padding: 16px 36px;
      font-weight: 800;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 50px; /* Replaced clip-path for premium curve */
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(255, 212, 94, 0.2);
    }

    .btn-primary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .btn-primary:hover {
      background: var(--orange);
      transform: translateY(-2px);
    }

    .btn-primary:hover::after {
      opacity: 1;
    }

    .btn-ghost {
      color: var(--text-primary);
      text-decoration: none;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: color 0.3s;
    }

    .btn-ghost:hover {
      color: var(--gold);
    }

    .btn-ghost span {
      width: 36px;
      height: 1px;
      background: currentColor;
      transition: width 0.3s;
    }

    .btn-ghost:hover span {
      width: 54px;
    }

    /* FLOATING NUMBERS */
    .hero-stats {
      position: absolute;
      right: 60px;
      bottom: 80px;
      display: flex;
      flex-direction: column;
      gap: 32px;
      animation: fadeUp 0.8s 0.6s ease both;
    }

    .stat-item {
      text-align: right;
    }

    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 48px;
      color: var(--gold);
      line-height: 1;
    }

    .stat-label {
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
      font-family: 'Space Mono', monospace;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .marquee-wrap {
      background: var(--gold);
      padding: 16px 0;
      overflow: hidden;
      position: relative;
      border-top: 1px solid rgba(0,0,0,0.1);
      border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .marquee-track {
      display: flex;
      gap: 0;
      animation: marquee 20s linear infinite;
      width: max-content;
    }

    .marquee-item {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 20px;
      letter-spacing: 4px;
      color: #000;
      padding: 0 32px;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .marquee-item::after {
      content: 'âœ¦';
      font-size: 14px;
      opacity: 0.5;
    }

    @keyframes marquee {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    /* SERVICES */
    .section {
      padding: 120px 60px;
    }

    .section-label {
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .section-label::before {
      content: '';
      width: 40px;
      height: 1px;
      background: var(--gold);
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(48px, 7vw, 96px);
      line-height: 0.95;
      letter-spacing: 1px;
      margin-bottom: 16px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px; /* Changed from 2px */
      margin-top: 60px;
    }

    .service-card {
      background: rgba(255, 212, 94, 0.03); /* Softer premium background */
      border: 1px solid rgba(255, 212, 94, 0.05); /* Soft border */
      border-radius: 24px; /* Curved edges */
      padding: 48px 40px;
      position: relative;
      overflow: hidden;
      transition: background 0.4s, transform 0.4s, border-color 0.4s;
      cursor: none;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--orange));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s;
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

    .service-card:hover {
      background: rgba(255, 212, 94, 0.06);
      border-color: rgba(255, 212, 94, 0.15);
      transform: translateY(-5px); /* Soft float effect */
    }

    .service-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 72px;
      color: rgba(255, 212, 94, 0.08);
      line-height: 1;
      position: absolute;
      top: 24px;
      right: 32px;
      transition: color 0.4s;
    }

    .service-card:hover .service-num {
      color: rgba(255, 212, 94, 0.15);
    }

    .service-icon {
      font-size: 36px;
      margin-bottom: 24px;
      display: block;
    }

    .service-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 32px;
      letter-spacing: 1px;
      margin-bottom: 14px;
      color: var(--text-primary);
    }

    .service-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .service-arrow {
      margin-top: 32px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 700;
      opacity: 0;
      transform: translateX(-10px);
      transition: all 0.3s;
    }

    .service-card:hover .service-arrow {
      opacity: 1;
      transform: translateX(0);
    }

    /* WHY US */
    .why-section {
      padding: 120px 60px;
      background: var(--bg-primary);
      position: relative;
      overflow: hidden;
    }

    .why-section::before {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(123, 47, 255, 0.12) 0%, transparent 70%);
      top: -100px;
      right: -100px;
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-top: 60px;
    }

    .why-left {
      position: relative;
    }

    .big-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(100px, 16vw, 220px);
      line-height: 1;
      color: transparent;
      -webkit-text-stroke: 1px rgba(255, 212, 94, 0.1);
      position: absolute;
      top: -40px;
      left: -20px;
      pointer-events: none;
      user-select: none;
    }

    .why-points {
      display: flex;
      flex-direction: column;
      gap: 24px;
      position: relative;
      z-index: 2;
    }

    .why-point {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      padding: 28px;
      background: rgba(255, 212, 94, 0.03);
      border: 1px solid rgba(255, 212, 94, 0.05);
      border-radius: 24px; /* Curved edges */
      transition: border-color 0.4s, background 0.4s, transform 0.4s;
    }

    .why-point:hover {
      border-color: rgba(255, 212, 94, 0.2);
      background: rgba(255, 212, 94, 0.06);
      transform: translateX(10px);
    }

    .why-icon {
      width: 48px;
      height: 48px;
      background: rgba(255, 212, 94, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
      border-radius: 50%; /* Fully round icon box */
      border: 1px solid rgba(255, 212, 94, 0.2);
    }

    .why-point-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px;
      letter-spacing: 1px;
      margin-bottom: 6px;
      color: var(--text-primary);
    }

    .why-point-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* PROCESS */
    .process-section {
      padding: 120px 60px;
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px; /* Increased gap */
      margin-top: 60px;
    }

    .process-step {
      padding: 48px 32px;
      background: rgba(255, 212, 94, 0.03); /* Soft BG */
      border: 1px solid rgba(255, 212, 94, 0.05); /* Soft border */
      border-radius: 24px; /* Curves */
      position: relative;
      overflow: hidden;
      transition: background 0.3s, border-color 0.3s, transform 0.3s;
    }

    .process-step:hover {
      background: rgba(255, 212, 94, 0.06);
      border-color: rgba(255, 212, 94, 0.15);
      transform: translateY(-5px);
    }

    .process-step::after {
      content: '';
      position: absolute;
      top: 50%;
      right: -1px;
      width: 2px;
      height: 40%;
      background: var(--gold);
      transform: translateY(-50%);
      opacity: 0.3;
    }

    .process-step:last-child::after {
      display: none;
    }

    .step-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 80px;
      color: rgba(255, 212, 94, 0.06);
      line-height: 1;
      position: absolute;
      top: 16px;
      right: 16px;
    }

    .step-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      margin-bottom: 12px;
      color: var(--gold);
    }

    .step-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .results-section {
      padding: 160px 60px;
      background: var(--bg-primary);
      position: relative;
      overflow: hidden;
    }

    .results-section::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 150%;
      height: 150%;
      background: radial-gradient(circle at center, rgba(112, 0, 255, 0.08) 0%, transparent 60%);
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .results-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      margin-top: 80px;
    }

    .result-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 212, 94, 0.12);
      border-radius: 24px;
      padding: 48px 36px;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(20px);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .result-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--orange), var(--purple));
      background-size: 200% 100%;
      animation: gradientSlide 3s ease infinite;
      opacity: 0.7;
    }
    @keyframes gradientSlide {
      0%,100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }
    .result-card:hover {
      background: rgba(255, 212, 94, 0.04);
      border-color: rgba(255, 212, 94, 0.3);
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(255, 212, 94, 0.08);
    }
    .result-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, transparent, rgba(255, 212, 94, 0.04), transparent);
      transform: translateX(-100%);
      transition: transform 0.8s;
    }
    .result-card:hover::after {
      transform: translateX(100%);
    }
    .result-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 72px;
      color: var(--gold);
      line-height: 0.9;
      margin-bottom: 16px;
      transition: all 0.4s;
      text-shadow: 0 0 40px rgba(255, 212, 94, 0.15);
    }
    .result-card:hover .result-num {
      transform: scale(1.08);
      text-shadow: 0 0 60px rgba(255, 212, 94, 0.3);
    }
    .result-label {
      font-size: 11px;
      color: var(--text-muted);
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-family: 'Space Mono', monospace;
    }
    .result-detail {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 212, 94, 0.1);
        font-size: 12px;
        color: var(--text-muted);
        line-height: 1.8;
    }
    .result-detail strong {
        color: var(--gold);
    }

    /* TESTIMONIALS */
    .testimonials {
      padding: 120px 60px;
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px; /* Increased gap */
      margin-top: 60px;
    }

    .testi-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 212, 94, 0.08);
      border-radius: 20px;
      padding: 40px 36px;
      position: relative;
      transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
    }
    .testi-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255, 212, 94, 0.2);
      box-shadow: 0 16px 40px rgba(0,0,0,0.2);
    }
    .testi-card::before {
      content: 'â';
      font-size: 60px;
      color: rgba(255, 212, 94, 0.1);
      position: absolute;
      top: 16px; right: 24px;
      line-height: 1;
    }
    .testi-text {
      font-size: 14px;
      color: var(--text-primary);
      line-height: 1.8;
      margin-bottom: 28px;
    }
    .testi-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .testi-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--purple), var(--orange));
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 14px; color: white;
      flex-shrink: 0;
    }
    .testi-name {
      font-weight: 800;
      font-size: 14px;
      letter-spacing: 1px;
      color: var(--gold);
    }
    .testi-role {
      font-size: 11px;
      color: var(--text-muted);
      margin-top: 2px;
    }
    .stars {
      color: var(--gold);
      font-size: 14px;
      letter-spacing: 2px;
      margin-bottom: 16px;
    }

    /* CTA */
    .cta-section {
      padding: 140px 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
      background: var(--bg-primary);
    }

    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(123, 47, 255, 0.15) 0%, transparent 60%);
    }

    .cta-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(60px, 10vw, 140px);
      line-height: 0.9;
      letter-spacing: 2px;
      position: relative;
      z-index: 2;
    }

    .cta-title span {
      color: var(--gold);
    }

    .cta-sub {
      font-size: 16px;
      color: var(--text-muted);
      max-width: 480px;
      margin: 24px auto 48px;
      line-height: 1.7;
      position: relative;
      z-index: 2;
    }

    .cta-actions {
      display: flex;
      justify-content: center;
      gap: 16px;
      position: relative;
      z-index: 2;
    }

    .btn-big {
      background: var(--gold);
      color: var(--black);
      padding: 20px 52px;
      font-weight: 800;
      font-size: 14px;
      letter-spacing: 3px;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 50px; /* Pill shape */
      transition: all 0.3s;
      box-shadow: 0 4px 20px rgba(255, 212, 94, 0.2);
    }

    .btn-big:hover {
      background: var(--orange);
      transform: translateY(-3px);
      box-shadow: 0 6px 25px rgba(255, 92, 26, 0.3);
    }

    /* FOOTER */
    footer {
      padding: 60px;
      border-top: 1px solid rgba(255, 212, 94, 0.08);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer-logo {
      color: var(--text-primary) !important;
    }

    .footer-logo span {
      color: var(--gold);
    }

    .footer-links {
      display: flex;
      gap: 32px;
    }

    .footer-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: color 0.3s;
    }

    .footer-links a:hover {
      color: var(--gold);
    }

    .footer-copy {
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      color: var(--text-muted);
    }

    /* SCROLL REVEAL */
    .reveal {
      opacity: 0;
      visibility: hidden;
      transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s ease;
    }

    .reveal.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    /* GLITCH EFFECT */
    .glitch {
      position: relative;
    }

    .glitch::before,
    .glitch::after {
      content: attr(data-text);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: transparent;
    }

    .glitch::before {
      color: var(--orange);
      animation: glitch1 3s infinite;
      clip-path: polygon(0 30%, 100% 30%, 100% 50%, 0 50%);
    }

    .glitch::after {
      color: var(--purple);
      animation: glitch2 3s infinite;
      clip-path: polygon(0 55%, 100% 55%, 100% 75%, 0 75%);
    }

    @keyframes glitch1 {

      0%,
      90%,
      100% {
        transform: translate(0);
      }

      92% {
        transform: translate(-3px, 1px);
      }

      94% {
        transform: translate(3px, -1px);
      }

      96% {
        transform: translate(-2px, 0);
      }
    }

    @keyframes glitch2 {

      0%,
      90%,
      100% {
        transform: translate(0);
      }

      92% {
        transform: translate(3px, -1px);
      }

      94% {
        transform: translate(-3px, 1px);
      }

      96% {
        transform: translate(2px, 0);
      }
    }

    /* RESPONSIVE â€” Tablet */
    @media (max-width: 1024px) {
      .nav-links {
        display: flex;
      }

      .hero {
        padding: 100px 30px 60px;
      }

      .hero-stats {
        right: 30px;
        bottom: 60px;
      }

      .section,
      .why-section,
      .process-section,
      .results-section,
      .testimonials,
      .cta-section {
        padding: 80px 30px;
      }

      .services-grid,
      .process-steps {
        grid-template-columns: 1fr 1fr;
      }

      .results-grid {
        grid-template-columns: 1fr 1fr;
      }

      .testi-grid {
        grid-template-columns: 1fr;
      }

      .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      footer {
        padding: 40px 30px;
        flex-direction: column;
        gap: 24px;
        text-align: center;
      }

      .footer-links {
        flex-wrap: wrap;
        justify-content: center;
      }
    }

    /* RESPONSIVE â€” Mobile */
    @media (max-width: 640px) {
      .hero-stats {
        display: none;
      }

      .cta-actions {
        flex-direction: column;
        align-items: center;
      }

      /* ROI Calculator mobile fix */
      #calculator > div {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
      }
    }

    /* HAMBURGER MENU */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 200;
      background: none;
      border: none;
      padding: 8px
    }

    .hamburger span {
      width: 28px;
      height: 2px;
      background: var(--gold);
      transition: all .3s;
      display: block
    }

    .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 {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--bg-primary);
      backdrop-filter: blur(20px);
      z-index: 150;
      padding: 100px 40px 40px;
      transition: right .4s cubic-bezier(.4, 0, .2, 1);
      border-left: 1px solid rgba(255, 212, 94, .1)
    }

    .mobile-menu.active {
      right: 0
    }

    .mobile-menu a {
      display: block;
      color: var(--text-primary);
      text-decoration: none;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255, 212, 94, .08);
      transition: color .3s, padding-left .3s
    }

    .mobile-menu a:hover {
      color: var(--gold);
      padding-left: 12px
    }

    .mobile-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .6);
      z-index: 140;
      opacity: 0;
      pointer-events: none;
      transition: opacity .4s
    }

    .mobile-overlay.active {
      opacity: 1;
      pointer-events: auto
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px; /* Increased gap */
      margin-top: 60px
    }

    .portfolio-card {
      background: var(--dim);
      border: 1px solid rgba(255, 212, 94, 0.08);
      border-radius: 20px;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
    }
    .portfolio-card:hover {
      transform: translateY(-8px);
      border-color: rgba(255, 212, 94, 0.25);
      box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    }
    .portfolio-img {
      width: 100%;
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 56px;
    }
    .portfolio-overlay {
      background: linear-gradient(180deg, transparent 0%, rgba(5,5,8,0.95) 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 28px;
      position: relative;
    }
    .portfolio-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 24px;
      letter-spacing: 1px;
      color: var(--text-primary);
      margin-bottom: 6px;
    }
    .portfolio-cat {
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      font-family: 'Space Mono', monospace;
      margin-bottom: 10px;
    }
    .portfolio-metrics {
      display: flex;
      gap: 20px;
      margin-top: 12px;
    }
    .portfolio-metric {
      font-size: 11px;
      color: var(--text-muted);
    }
    .portfolio-metric strong {
      display: block;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 26px;
      color: var(--gold);
      line-height: 1;
    }

    /* ROI CALCULATOR STYLES */
    #calculator {
      background: rgba(255, 215, 0, 0.02);
      border-color: rgba(255, 215, 0, 0.1);
    }
    input[type="range"] {
      -webkit-appearance: none;
      appearance: none;
      height: 4px;
      background: rgba(255, 212, 94, 0.1);
      border-radius: 5px;
      outline: none;
      margin: 15px 0;
      width: 100%;
    }
    input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 20px;
      height: 20px;
      background: var(--gold);
      border-radius: 50%;
      cursor: pointer;
      box-shadow: 0 0 15px rgba(255, 212, 94, 0.4);
      transition: transform 0.2s;
    }
    input[type="range"]::-webkit-slider-thumb:hover {
      transform: scale(1.2);
    }
    .calc-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 212, 94, 0.1);
      padding: 30px;
      border-radius: 20px;
    }
    .calc-val {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 48px;
      color: var(--gold);
      line-height: 1;
    }

    /* CEO SPOTLIGHT */
    .ceo-spotlight {
      display: flex;
      align-items: center;
      gap: 80px;
      margin-top: 60px;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }
    .ceo-photo-wrap {
      position: relative;
      flex-shrink: 0;
    }
    .ceo-photo-ring {
      width: 320px;
      height: 400px;
      padding: 3px;
      background: linear-gradient(135deg, var(--gold), var(--orange), var(--purple), var(--gold));
      background-size: 300% 300%;
      animation: borderShift 4s ease infinite;
      border-radius: 20px;
      position: relative;
    }
    @keyframes borderShift {
      0%,100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }
    .ceo-photo {
      width: 100%;
      height: 100%;
      border-radius: 18px;
      background-size: cover;
      background-position: center top;
      border: 3px solid var(--bg-primary);
    }
    .ceo-photo-glow {
      position: absolute;
      inset: -40px;
      background: radial-gradient(circle, rgba(255,212,94,0.1) 0%, transparent 70%);
      z-index: -1;
      animation: pulseGlow 3s ease-in-out infinite;
    }
    @keyframes pulseGlow {
      0%,100% { opacity: 0.3; transform: scale(1); }
      50% { opacity: 0.8; transform: scale(1.1); }
    }
    .ceo-badge {
      position: absolute;
      bottom: 20px;
      right: -14px;
      background: var(--gold);
      color: #000;
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      font-weight: 800;
      padding: 8px 20px;
      border-radius: 4px;
      letter-spacing: 2px;
      box-shadow: 0 8px 24px rgba(255,212,94,0.3);
      z-index: 3;
    }
    .ceo-info {
      flex: 1;
    }
    .ceo-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 64px;
      letter-spacing: 2px;
      color: var(--text-primary);
      line-height: 1;
      margin-bottom: 6px;
    }
    .ceo-title {
      font-size: 13px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      font-family: 'Space Mono', monospace;
      margin-bottom: 24px;
    }
    .ceo-bio {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 28px;
      max-width: 480px;
    }
    .ceo-achievements {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }
    .ceo-ach {
      background: rgba(255, 212, 94, 0.08);
      border: 1px solid rgba(255, 212, 94, 0.15);
      border-radius: 30px;
      padding: 8px 18px;
      font-size: 12px;
      font-weight: 700;
      color: var(--gold);
      font-family: 'Space Mono', monospace;
      letter-spacing: 0.5px;
    }
    .ceo-socials {
      display: flex;
      gap: 12px;
      align-items: center;
    }
    .ceo-social-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(255, 212, 94, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-size: 16px;
      transition: all 0.3s;
      text-decoration: none;
    }
    .ceo-social-link:hover {
      background: var(--gold);
      color: #000;
      border-color: var(--gold);
      transform: translateY(-3px);
    }
    .ceo-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--gold);
      color: #000;
      font-weight: 800;
      font-size: 13px;
      padding: 14px 32px;
      border-radius: 50px;
      text-decoration: none;
      letter-spacing: 1px;
      margin-left: 16px;
      transition: all 0.3s;
    }
    .ceo-cta:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 12px 30px rgba(255, 212, 94, 0.3);
    }
    @media (max-width: 768px) {
      .ceo-spotlight { flex-direction: column; text-align: center; gap: 40px; }
      .ceo-photo-ring { width: 260px; height: 320px; margin: 0 auto; }
      .ceo-name { font-size: 48px; }
      .ceo-achievements { justify-content: center; }
      .ceo-socials { justify-content: center; }
      .ceo-bio { margin-left: auto; margin-right: auto; }
    }

    .faq-list {
      max-width: 800px;
      margin: 60px auto 0;
      display: flex;
      flex-direction: column;
      gap: 16px; /* Spaced out items instead of stacked box */
    }

    .faq-item {
      background: rgba(255, 212, 94, 0.02);
      border: 1px solid rgba(255, 212, 94, 0.05);
      border-radius: 16px;
      overflow: hidden;
      transition: background 0.3s, border-color 0.3s;
    }

    .faq-item:hover {
       background: rgba(255, 212, 94, 0.04);
       border-color: rgba(255, 212, 94, 0.1);
    }

    .faq-q {
      padding: 24px 32px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px;
      letter-spacing: 1px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none
    }

    .faq-q::after {
      content: '+';
      font-size: 28px;
      color: var(--gold);
      transition: transform .3s
    }

    .faq-item.active .faq-q::after {
      transform: rotate(45deg)
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease
    }

    .faq-a-inner {
      padding: 0 32px 24px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.8
    }

    .faq-item.active .faq-a {
      max-height: 200px
    }

    .contact-form {
      max-width: 600px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      position: relative;
      z-index: 2
    }

    .contact-form .full-width {
      grid-column: 1/-1
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
      width: 100%;
      background: rgba(255, 212, 94, .02);
      border: 1px solid rgba(255, 212, 94, .08);
      border-radius: 12px; /* Curves for inputs */
      color: var(--text-primary);
      padding: 16px 20px;
      font-family: 'Syne', sans-serif;
      font-size: 14px;
      outline: none;
      transition: border-color .3s, background 0.3s;
    }

    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form select:focus {
      border-color: var(--gold);
      background: rgba(255, 212, 94, .05);
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
      color: var(--text-muted)
    }

    .contact-form textarea {
      resize: vertical;
      min-height: 120px
    }

    .contact-form select {
      appearance: none;
      cursor: pointer
    }

    .contact-form select option {
      background: var(--bg-primary);
      color: var(--text-primary)
    }

    .form-btn {
      background: var(--gold);
      color: var(--black);
      padding: 18px 40px;
      font-weight: 800;
      font-size: 14px;
      letter-spacing: 2px;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      border-radius: 50px; /* Pill shape */
      transition: all .3s;
      font-family: 'Syne', sans-serif;
      box-shadow: 0 4px 15px rgba(255, 212, 94, 0.2);
    }

    .form-btn:hover {
      background: var(--orange);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255, 92, 26, 0.3);
    }

    .form-status {
      text-align: center;
      font-size: 14px;
      color: var(--gold);
      margin-top: 16px;
      min-height: 24px
    }

    .whatsapp-btn {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 60px;
      height: 60px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 28px;
      text-decoration: none;
      z-index: 99;
      box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
      transition: all .3s;
      animation: waPulse 2s infinite
    }

    .whatsapp-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 30px rgba(37, 211, 102, .6)
    }

    @keyframes waPulse {

      0%,
      100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, .4)
      }

      50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, .7)
      }
    }

    .back-top {
      position: fixed;
      bottom: 100px;
      right: 28px;
      width: 44px;
      height: 44px;
      background: rgba(255, 212, 94, .1);
      border: 1px solid rgba(255, 212, 94, .2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 18px;
      text-decoration: none;
      z-index: 99;
      opacity: 0;
      pointer-events: none;
      transition: all .3s
    }

    .back-top.visible {
      opacity: 1;
      pointer-events: auto
    }

    .back-top:hover {
      background: var(--gold);
      color: var(--black)
    }

    .portfolio-grid {
      grid-template-columns: 1fr 1fr
    }

    .team-grid {
      grid-template-columns: 1fr 1fr
    }

    .contact-form {
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .nav-logo-img {
      height: 44px !important;
      width: auto;
      vertical-align: middle;
      margin-right: 12px;
      filter: drop-shadow(0 0 8px rgba(255, 212, 94, .3));
    }

    .footer-logo-img {
      height: 40px;
      width: auto;
      vertical-align: middle;
      margin-right: 8px
    }

    .nav-logo,
    .footer-logo {
      display: flex;
    }

    /* ========== CLEAN RESPONSIVE ENGINE ========== */

    /* Desktop Adjustments */
    .hamburger { display: none !important; }

    /* TABLET (1024px & below) */
    @media screen and (max-width: 1024px) {
      nav { padding: 15px 25px !important; }
      .nav-links { display: none !important; }
      .hamburger { display: flex !important; }
      .nav-logo-img { height: 44px !important; }
      
      .hero { padding: 100px 30px 60px !important; min-height: auto !important; }
      .hero-title { font-size: clamp(50px, 9vw, 90px) !important; }
      .hero-stats { position: relative !important; right: auto !important; bottom: auto !important; flex-direction: row !important; gap: 30px !important; margin-top: 40px !important; }
      
      .section, .why-section, .process-section, .results-section, .testimonials, .cta-section { padding: 80px 30px !important; }
      
      .services-grid, .portfolio-grid, .team-grid { grid-template-columns: 1fr 1fr !important; gap: 20px !important; }
      .process-steps, .results-grid { grid-template-columns: 1fr 1fr !important; }
    }

    /* MOBILE (640px & below) */
    @media screen and (max-width: 640px) {
      .hero-title { font-size: clamp(40px, 11vw, 65px) !important; }
      .section-title { font-size: clamp(34px, 8vw, 52px) !important; }
      
      .asymmetric-grid { grid-template-columns: 1fr !important; }
      .big-card, .small-card { grid-column: span 1 !important; margin: 0 !important; padding: 40px 30px !important; min-height: auto !important; }
      
      .hero-side-cards { display: none !important; }
      .contact-form { grid-template-columns: 1fr !important; }
      
      .footer-links { flex-direction: column !important; align-items: center !important; gap: 15px !important; }
      .cta-title { font-size: clamp(48px, 10vw, 80px) !important; }
    }

    /* SMALL MOBILE (380px & below) */
    @media screen and (max-width: 380px) {
      .hero-title { font-size: 38px !important; }
      .nav-logo { font-size: 18px !important; }
      .nav-logo-img { height: 32px !important; }
      .btn-primary { width: 100% !important; text-align: center !important; }
    }

/* ======================================== */
/* CLIENT LOGOS MARQUEE */
/* ======================================== */
.client-logos-section {
  padding: 60px 60px 80px;
  overflow: hidden;
  position: relative;
}

.client-logos-section .section-label {
  text-align: center;
  justify-content: center;
  margin-bottom: 40px;
}

.logos-marquee {
  display: flex;
  gap: 60px;
  animation: logosScroll 25s linear infinite;
  width: max-content;
}

.logos-marquee:hover {
  animation-play-state: paused;
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 70px;
  padding: 16px 28px;
  background: rgba(255, 212, 94, 0.03);
  border: 1px solid rgba(255, 212, 94, 0.08);
  border-radius: 16px;
  transition: all 0.4s;
  flex-shrink: 0;
}

.client-logo-item:hover {
  background: rgba(255, 212, 94, 0.08);
  border-color: rgba(255, 212, 94, 0.2);
  transform: translateY(-3px);
}

.client-logo-item img {
  max-height: 40px;
  max-width: 130px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: all 0.4s;
}

body.light-mode .client-logo-item img {
  filter: brightness(0);
}

.client-logo-item:hover img {
  opacity: 1;
  filter: none;
}

.client-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--text-muted);
  opacity: 0.5;
  transition: all 0.4s;
  white-space: nowrap;
}

.client-logo-item:hover .client-logo-text {
  opacity: 1;
  color: var(--gold);
}

@keyframes logosScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ======================================== */
/* HERO BACKGROUND IMAGE */
/* ======================================== */
.hero-premium {
  position: relative;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: blur(2px);
}

body.light-mode .hero-bg-image img {
  opacity: 0.1;
  filter: blur(3px) brightness(0.8);
}

/* ======================================== */
/* CASE STUDY IMAGE CARDS */
/* ======================================== */
.portfolio-img {
  overflow: hidden;
  border-radius: 16px;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-img img {
  transform: scale(1.08);
}

.portfolio-img .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,8,0.9) 0%, rgba(5,5,8,0.3) 50%, transparent 100%);
  z-index: 1;
}

body.light-mode .portfolio-img .img-overlay {
  background: linear-gradient(to top, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
}

/* ======================================== */
/* TESTIMONIAL PHOTOS */
/* ======================================== */
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255, 212, 94, 0.3);
}

/* ======================================== */
/* RESPONSIVE - LOGOS */
/* ======================================== */
@media (max-width: 768px) {
  .client-logos-section {
    padding: 40px 20px 60px;
  }
  .client-logo-item {
    min-width: 120px;
    height: 55px;
    padding: 12px 20px;
  }
  .client-logo-text {
    font-size: 16px;
  }
  .logos-marquee {
    gap: 30px;
  }
}