:root {
      --cyan: #1EBBD7;
      --teal-deep: #1699A8;
      --aqua: #1699A8;
      --gold: #3DD4E0;
      --teal: #14B8A6;
      --bg: #0A0A0A;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      background-color: var(--bg);
      color: #fff;

      overflow-x: hidden;
    }

    /* ── GRADIENT MESH HERO ── */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex; align-items: center;
      overflow: hidden;
      padding-top: 80px;
    }

    .gradient-mesh {
      position: absolute; inset: 0; z-index: 0;
      background: var(--bg);
    }

    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.35;
      animation: blobFloat 12s ease-in-out infinite alternate;
    }
    .blob-1 { width: 600px; height: 600px; background: #1EBBD7; top: -150px; left: -100px; animation-duration: 14s; }
    .blob-2 { width: 500px; height: 500px; background: #1699A8; top: 50%; right: -100px; animation-duration: 18s; animation-delay: -4s; }
    .blob-3 { width: 400px; height: 400px; background: #06B6D4; bottom: -100px; left: 35%; animation-duration: 16s; animation-delay: -8s; }
    .blob-4 { width: 300px; height: 300px; background: #3DD4E0; top: 30%; left: 40%; animation-duration: 20s; animation-delay: -2s; opacity: 0.2; }

    @keyframes blobFloat {
      0%   { transform: translate(0, 0) scale(1); }
      33%  { transform: translate(40px, -30px) scale(1.08); }
      66%  { transform: translate(-20px, 40px) scale(0.95); }
      100% { transform: translate(30px, 20px) scale(1.05); }
    }

    .hero-content {
      position: relative; z-index: 2;
      max-width: 1400px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: center;
      padding: 4rem 2rem;
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(30, 187, 215, 0.15);
      border: 1px solid rgba(30, 187, 215, 0.35);
      border-radius: 50px; padding: 0.4rem 1rem;
      font-size: 0.8rem; color: var(--color-primary); 
      margin-bottom: 1.5rem;
    }
    .badge-dot {
      width: 6px; height: 6px; border-radius: 50%; background: #1EBBD7;
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

    .hero-headline {

      font-size: clamp(2.8rem, 5vw, 4.5rem);
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }
    .hero-headline .thin {  font-style: italic; color: rgba(255,255,255,0.6); }
    .hero-headline .bold {  color: #fff; }
    .hero-headline .accent { color: var(--color-primary); }

    .hero-sub {
      color: rgba(255,255,255,0.6);
      font-size: 1.05rem; line-height: 1.7;
      margin-bottom: 2.5rem; max-width: 480px;
    }
    .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
    .btn-primary {
      background: linear-gradient(135deg, #1EBBD7, #1699A8);
      color: #fff; padding: 0.85rem 2rem; border-radius: 50px;
      text-decoration: none;  font-size: 0.9rem;
      transition: transform 0.3s, box-shadow 0.3s;
      box-shadow: 0 0 30px rgba(30, 187, 215,0.4);
    }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(30, 187, 215,0.5); }
    .btn-outline {
      border: 1px solid rgba(30, 187, 215,0.5);
      color: var(--color-primary); padding: 0.85rem 2rem; border-radius: 50px;
      text-decoration: none;  font-size: 0.9rem;
      transition: all 0.3s;
    }
    .btn-outline:hover { background: rgba(30, 187, 215,0.1); border-color: var(--color-primary); }

    .hero-stats {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }
    .stat-item { text-align: center; }
    .stat-num {
      font-size: 1.6rem; 
      background: linear-gradient(135deg, #1EBBD7, #1699A8);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    .stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }

    /* ── BRAND MARK SVG SIDE ── */
    .hero-right {
      display: flex; flex-direction: column; align-items: center;
      gap: 2rem; position: relative;
    }

    .brand-mark-wrap {
      position: relative; width: 320px; height: 320px;
    }
    .brand-mark-bg {
      position: absolute; inset: 0; border-radius: 50%;
      background: radial-gradient(circle, rgba(30, 187, 215,0.12) 0%, transparent 70%);
      animation: rotateSlow 20s linear infinite;
    }
    @keyframes rotateSlow { to { transform: rotate(360deg); } }

    .brand-mark-svg {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 220px; height: 220px;
    }
    .brand-mark-svg path, .brand-mark-svg circle, .brand-mark-svg polygon {
      stroke-dasharray: 800;
      stroke-dashoffset: 800;
      animation: drawPath 2.5s ease forwards;
    }
    .brand-mark-svg path:nth-child(2) { animation-delay: 0.4s; }
    .brand-mark-svg path:nth-child(3) { animation-delay: 0.8s; }
    .brand-mark-svg path:nth-child(4) { animation-delay: 1.2s; }
    .brand-mark-svg path:nth-child(5) { animation-delay: 1.6s; }
    @keyframes drawPath {
      to { stroke-dashoffset: 0; }
    }

    /* Floating swatches */
    .swatch-ring {
      position: absolute; inset: -30px;
      pointer-events: none;
    }
    .swatch {
      position: absolute;
      border-radius: 50%;
      animation: swatchFloat 4s ease-in-out infinite alternate;
    }
    .swatch-1 { width: 40px; height: 40px; background: #1EBBD7; top: 5%; left: 50%; animation-delay: 0s; box-shadow: 0 0 20px rgba(30, 187, 215,0.6); }
    .swatch-2 { width: 30px; height: 30px; background: #1699A8; top: 20%; right: 5%; animation-delay: 0.5s; box-shadow: 0 0 15px rgba(22, 153, 168,0.6); }
    .swatch-3 { width: 35px; height: 35px; background: #3DD4E0; bottom: 20%; right: 8%; animation-delay: 1s; box-shadow: 0 0 15px rgba(61, 212, 224,0.5); }
    .swatch-4 { width: 28px; height: 28px; background: #14B8A6; bottom: 10%; left: 50%; animation-delay: 1.5s; box-shadow: 0 0 15px rgba(20,184,166,0.5); }
    .swatch-5 { width: 22px; height: 22px; background: #1699A8; top: 50%; left: 5%; animation-delay: 2s; box-shadow: 0 0 12px rgba(22,153,168,0.5); }

    @keyframes swatchFloat {
      0%   { transform: translateY(0) rotate(0deg); }
      100% { transform: translateY(-20px) rotate(20deg); }
    }

    /* Floating type samples */
    .type-samples {
      display: flex; flex-direction: column; gap: 0.8rem; width: 100%;
    }
    .type-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px; padding: 0.8rem 1.2rem;
      backdrop-filter: blur(10px);
      animation: typeFloat 5s ease-in-out infinite alternate;
    }
    .type-card:nth-child(2) { animation-delay: -2s; margin-left: 1.5rem; }
    .type-card:nth-child(3) { animation-delay: -4s; margin-left: 0.8rem; }
    @keyframes typeFloat {
      0%   { transform: translateY(0); }
      100% { transform: translateY(-8px); }
    }
    .type-name { font-size: 0.65rem; color: rgba(30, 187, 215,0.8); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.3rem; }
    .type-sample-bold {  font-size: 1.2rem;  color: #fff; }
    .type-sample-light {  font-size: 0.9rem;  color: rgba(255,255,255,0.6); }
    .type-sample-mid {  font-size: 1rem;  letter-spacing: 0.15em; color: rgba(255,255,255,0.8); }

    /* ── SECTION STYLES ── */
    section { padding: 7rem 2rem; position: relative; }
    .section-inner { max-width: 1400px; margin: 0 auto; }
    .section-eyebrow {
      font-size: 0.75rem;  letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--color-primary); margin-bottom: 1rem;
    }
    .section-title {

      font-size: clamp(2rem, 4vw, 3.2rem);
       line-height: 1.2; margin-bottom: 1.2rem;
    }
    .section-title span { color: var(--color-primary); }
    .section-sub { color: rgba(255,255,255,0.55); font-size: 1rem; line-height: 1.7; max-width: 560px; }

    /* ── SERVICES MASONRY ── */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto;
      gap: 1.2rem;
      margin-top: 4rem;
    }
    .svc-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 20px;
      padding: 2.2rem;
      position: relative; overflow: hidden;
      cursor: default;
      transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
    }
    .svc-card::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(30, 187, 215,0.08), transparent 60%);
      ; transition: opacity 0.4s;
      border-radius: 20px;
    }
    .svc-card:hover { transform: translateY(-6px); border-color: rgba(30, 187, 215,0.35); box-shadow: 0 20px 60px rgba(30, 187, 215,0.12); }
    .svc-card:hover::before { opacity: 1; }

    .svc-card.large-row { grid-row: span 2; }
    .svc-card.large-col { grid-column: span 2; }

    .svc-icon-wrap {
      width: 52px; height: 52px; border-radius: 14px;
      background: rgba(30, 187, 215,0.12);
      border: 1px solid rgba(30, 187, 215,0.2);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.4rem; transition: background 0.4s;
    }
    .svc-card:hover .svc-icon-wrap { background: rgba(30, 187, 215,0.22); }
    .svc-icon-wrap svg { width: 24px; height: 24px; color: var(--color-primary); stroke: #1EBBD7; }

    .svc-card-title {

      font-size: 1.3rem; 
      margin-bottom: 0.8rem; color: #fff;
    }
    .svc-card.large-row .svc-card-title { font-size: 1.8rem; }
    .svc-card-text { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; }

    .svc-card-tag {
      display: inline-block; margin-top: 1.2rem;
      background: rgba(30, 187, 215,0.1); border: 1px solid rgba(30, 187, 215,0.25);
      color: var(--color-primary); font-size: 0.72rem; padding: 0.25rem 0.75rem;
      border-radius: 50px; 
    }
    .svc-card-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }

    .svc-card-img {
      width: 100%; height: 160px; object-fit: cover;
      border-radius: 12px; margin-top: 1.5rem;
      transition: transform 0.4s;
    }
    .svc-card:hover .svc-card-img { transform: scale(1.03); }

    .large-card-accent {
      position: absolute; top: -20px; right: -20px;
      width: 140px; height: 140px; border-radius: 50%;
      background: radial-gradient(circle, rgba(30, 187, 215,0.2), transparent 70%);
      pointer-events: none;
    }

    /* ── BRAND SHOWCASE ── */
    .brand-showcase { background: rgba(255,255,255,0.01); }
    .showcase-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 2rem; margin-top: 4rem;
    }
    .showcase-card {
      background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
      border-radius: 24px; padding: 2.5rem;
      transition: border-color 0.4s, transform 0.4s;
    }
    .showcase-card:hover { border-color: rgba(30, 187, 215,0.3); transform: translateY(-4px); }

    .showcase-card-title {

      font-size: 1.1rem;  margin-bottom: 1.5rem; color: #fff;
    }

    /* Palette swatches */
    .palette-row { display: flex; gap: 0.6rem; margin-bottom: 1rem; }
    .palette-swatch {
      height: 60px; border-radius: 10px; flex: 1;
      transition: transform 0.3s;
      cursor: pointer;
    }
    .palette-swatch:hover { transform: scaleY(1.15); }
    .p1 { background: #1EBBD7; }
    .p2 { background: #1699A8; }
    .p3 { background: #3DD4E0; }
    .p4 { background: #14B8A6; }
    .p5 { background: #1E293B; }
    .palette-labels { display: flex; gap: 0.6rem; }
    .palette-label { flex: 1; text-align: center; font-size: 0.55rem; color: rgba(255,255,255,0.4); }

    /* Typography scale */
    .type-scale { display: flex; flex-direction: column; gap: 0.6rem; }
    .type-scale-row { display: flex; align-items: baseline; gap: 1rem; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 0.5rem; }
    .type-scale-size { font-size: 0.6rem; color: rgba(30, 187, 215,0.7); min-width: 30px; }
    .ts-display {  font-size: 2rem;  color: #fff; line-height: 1; }
    .ts-h1 {  font-size: 1.4rem;  color: #fff; }
    .ts-h2 {  font-size: 1.1rem;  color: #fff; }
    .ts-body {  font-size: 0.85rem; color: rgba(255,255,255,0.7); }
    .ts-caption {  font-size: 0.7rem; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; }

    /* Logo variations */
    .logo-vars { display: flex; flex-direction: column; gap: 1rem; }
    .logo-var {
      border-radius: 12px; padding: 1.5rem; display: flex;
      align-items: center; justify-content: center;
    }
    .logo-var-light { background: #fff; }
    .logo-var-dark { background: #0A0A0A; border: 1px solid rgba(255,255,255,0.1); }
    .logo-var-color { background: linear-gradient(135deg, #1EBBD7, #1699A8); }
    .logo-svg-inner { display: flex; align-items: center; gap: 0.6rem; }
    .logo-mark-mini { width: 32px; height: 32px; }
    .logo-text-mini {   font-size: 1rem; }
    .logo-var-light .logo-text-mini { color: #0A0A0A; }
    .logo-var-dark .logo-text-mini { color: #fff; }
    .logo-var-color .logo-text-mini { color: #fff; }

    /* ── PROCESS ── */
    .process-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 0; margin-top: 4rem;
    }
    .process-step {
      position: relative; padding: 3rem 2.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .process-step:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
    .process-step:nth-last-child(-n+2) { border-bottom: none; }

    .process-bg-num {
      position: absolute; top: 50%; right: 1.5rem;
      transform: translateY(-50%);

      font-size: 8rem;  line-height: 1;
      color: transparent;
      -webkit-text-stroke: 1px rgba(30, 187, 215,0.12);
      transition: -webkit-text-stroke 0.5s;
      pointer-events: none;
      user-select: none;
    }
    .process-step.active .process-bg-num,
    .process-step:hover .process-bg-num {
      -webkit-text-stroke: 2px rgba(30, 187, 215,0.5);
    }
    .process-num-label {
      font-size: 0.7rem;  letter-spacing: 0.15em;
      color: rgba(30, 187, 215,0.6); text-transform: uppercase;
      margin-bottom: 0.8rem;
    }
    .process-step-title {

      font-size: 1.8rem;  color: #fff; margin-bottom: 0.8rem;
    }
    .process-step-text { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; max-width: 340px; }
    .process-icon-sm {
      width: 40px; height: 40px; border-radius: 10px;
      background: rgba(30, 187, 215,0.1); border: 1px solid rgba(30, 187, 215,0.2);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.2rem;
    }
    .process-icon-sm svg { width: 18px; height: 18px; color: var(--color-primary); stroke: #1EBBD7; }

    .process-fill-bar {
      height: 3px; width: 0; border-radius: 2px;
      background: linear-gradient(90deg, #1EBBD7, #1699A8);
      margin-top: 1.5rem; transition: width 0.8s ease;
    }
    .process-step.in-view .process-fill-bar { width: 60px; }

    /* ── PORTFOLIO ── */
    .portfolio-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem; margin-top: 4rem;
    }
    .port-card {
      border-radius: 20px; overflow: hidden; position: relative;
      aspect-ratio: 4/3; cursor: pointer;
    }
    .port-img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.6s ease;
    }
    .port-card:hover .port-img { transform: scale(1.08); }
    .port-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(30, 187, 215,0.85), rgba(22, 153, 168,0.75));
      ; transition: opacity 0.4s;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 0.5rem;
      padding: 1.5rem;
    }
    .port-card:hover .port-overlay { opacity: 1; }
    .port-title {

      font-size: 1.3rem;  color: #fff; text-align: center;
    }
    .port-cat { font-size: 0.75rem; color: rgba(255,255,255,0.8); letter-spacing: 0.1em; text-transform: uppercase; }
    .port-arrow {
      width: 40px; height: 40px; border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.6);
      display: flex; align-items: center; justify-content: center;
      margin-top: 0.5rem;
    }
    .port-arrow svg { width: 16px; height: 16px; stroke: #fff; }

    /* ── STATS ROW ── */
    .stats-row {
      background: rgba(30, 187, 215,0.05);
      border-top: 1px solid rgba(30, 187, 215,0.12);
      border-bottom: 1px solid rgba(30, 187, 215,0.12);
      padding: 4rem 2rem;
    }
    .stats-inner {
      max-width: 1400px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
      text-align: center;
    }
    .stats-num {

      font-size: 3rem; 
      background: linear-gradient(135deg, #1EBBD7, #1699A8);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    .stats-label { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-top: 0.4rem; }

    /* ── CTA ── */
    .cta-section {
      padding: 8rem 2rem;
      position: relative; overflow: hidden;
    }
    .cta-mesh {
      position: absolute; inset: 0; z-index: 0;
    }
    .cta-blob {
      position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.3;
      animation: blobFloat 10s ease-in-out infinite alternate;
    }
    .cta-blob-1 { width: 500px; height: 500px; background: #1EBBD7; top: -100px; left: -100px; }
    .cta-blob-2 { width: 400px; height: 400px; background: #1699A8; bottom: -80px; right: -60px; animation-delay: -5s; }
    .cta-blob-3 { width: 250px; height: 250px; background: #3DD4E0; top: 40%; left: 45%; opacity: 0.15; animation-delay: -3s; }

    .cta-inner {
      position: relative; z-index: 2;
      max-width: 900px; margin: 0 auto; text-align: center;
    }
    .cta-title {

      font-size: clamp(2.2rem, 5vw, 4rem);
       line-height: 1.15; margin-bottom: 1.5rem;
    }
    .cta-sub { color: rgba(255,255,255,0.6); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2.5rem; }
    .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    /* Floating brand shapes in CTA */
    .cta-shapes { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
    .cta-shape {
      position: absolute; border-radius: 50%;
      border: 1px solid rgba(30, 187, 215,0.2);
      animation: shapePulse 4s ease-in-out infinite alternate;
    }
    .cs-1 { width: 200px; height: 200px; top: 10%; left: 5%; animation-delay: 0s; }
    .cs-2 { width: 120px; height: 120px; bottom: 15%; left: 15%; animation-delay: 1s; }
    .cs-3 { width: 160px; height: 160px; top: 20%; right: 8%; animation-delay: 2s; }
    .cs-4 { width: 80px; height: 80px; bottom: 20%; right: 18%; animation-delay: 0.5s; }
    @keyframes shapePulse {
      0%   { transform: scale(1) rotate(0deg); opacity: 0.3; }
      100% { transform: scale(1.2) rotate(15deg); opacity: 0.7; }
    }

    /* ── TOOLS SECTION ── */
    .tools-section { padding: 5rem 2rem; background: rgba(255,255,255,0.01); }
    .tools-inner { max-width: 1400px; margin: 0 auto; text-align: center; }
    .tools-grid {
      display: flex; flex-wrap: wrap; gap: 1rem;
      justify-content: center; margin-top: 3rem;
    }
    .tool-pill {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
      border-radius: 50px; padding: 0.6rem 1.4rem;
      font-size: 0.85rem; color: rgba(255,255,255,0.7);
      transition: all 0.3s;
    }
    .tool-pill:hover { border-color: rgba(30, 187, 215,0.4); color: var(--color-primary); background: rgba(30, 187, 215,0.08); }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid rgba(255,255,255,0.07);
      padding: 4rem 2rem 2rem;
      background: rgba(0,0,0,0.3);
    }
    .footer-inner { max-width: 1400px; margin: 0 auto; }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem; margin-bottom: 3rem;
    }
    .footer-brand img { height: 32px; margin-bottom: 1rem; }
    .footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.7; max-width: 300px; }
    .footer-col h4 { font-size: 0.8rem;  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 1.2rem; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
    .footer-col ul a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
    .footer-col ul a:hover { color: var(--color-primary); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; }
    .footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
    .footer-socials { display: flex; gap: 1rem; }
    .footer-socials a {
      width: 36px; height: 36px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      transition: all 0.3s;
    }
    .footer-socials a:hover { border-color: var(--color-primary); background: rgba(30, 187, 215,0.1); }
    .footer-socials svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.5); }

    /* ── MOBILE ── */
    @media (max-width: 1024px) {
      .hero-content { grid-template-columns: 1fr; }
      .hero-right { display: none; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .svc-card.large-row { grid-row: span 1; }
      .process-grid { grid-template-columns: 1fr; }
      .process-step:nth-child(odd) { border-right: none; }
      .process-step:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.07); }
      .process-step:last-child { border-bottom: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .services-grid { grid-template-columns: 1fr; }
      .showcase-grid { grid-template-columns: 1fr; }
      .portfolio-grid { grid-template-columns: 1fr; }
      .stats-inner { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .hero-stats { grid-template-columns: repeat(2, 1fr); }
    }

    /* Scroll animations */
    .fade-up { /* Handled by GSAP */ }
    .scale-in { /* Handled by GSAP */ }
    .fade-left { /* Handled by GSAP */ }
    .fade-right { /* Handled by GSAP */ }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 220px;
            background: rgba(13, 13, 13, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 8px 0;
            ;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 100;
        }

.mobile-menu {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(100%);
}
.mobile-dropdown-content {
    display: none;
}
.mobile-dropdown.active .mobile-dropdown-content {
    display: flex;
}

/* Branding page hero repair */
body.branding-page .service-hero {
    min-height: calc(100vh - 110px);
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
}

body.branding-page .service-hero .gradient-mesh,
body.branding-page .service-hero .blob,
body.branding-page .service-hero .swatch-ring,
body.branding-page .service-hero .brand-mark-bg {
    pointer-events: none;
}

body.branding-page .hero-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 620px) minmax(320px, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    padding: clamp(3rem, 6vw, 5rem) 2rem;
    text-align: left;
}

body.branding-page .service-hero-content {
    max-width: 620px;
    min-width: 0;
    position: relative;
    z-index: 2;
}

body.branding-page .hero-headline {
    max-width: 100%;
    font-size: clamp(48px, 6vw, 88px);
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 24px;
    overflow-wrap: normal;
    word-break: normal;
}

body.branding-page .hero-headline .accent,
body.branding-page .service-hero .highlight {
    background: linear-gradient(135deg, #1EBBD7, #1699A8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #1EBBD7;
}

body.branding-page .hero-sub {
    max-width: 560px;
}

body.branding-page .hero-right {
    display: flex;
    justify-self: center;
    align-items: center;
    width: 100%;
    max-width: 520px;
    position: relative;
    z-index: 2;
}

body.branding-page .brand-mark-wrap {
    width: clamp(240px, 28vw, 360px);
    height: clamp(240px, 28vw, 360px);
}

body.branding-page .brand-mark-svg {
    width: 70%;
    height: 70%;
}

body.branding-page .fade-up,
body.branding-page .scale-in,
body.branding-page .fade-left,
body.branding-page .fade-right {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1024px) {
    body.branding-page .service-hero {
        min-height: auto;
        padding: 72px 0;
    }

    body.branding-page .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    body.branding-page .service-hero-content,
    body.branding-page .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    body.branding-page .hero-ctas {
        justify-content: center;
    }

    body.branding-page .hero-right {
        display: flex;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    body.branding-page .service-hero {
        padding: 60px 0 72px;
    }

    body.branding-page .hero-content {
        padding: 3rem 1.25rem;
        gap: 2rem;
    }

    body.branding-page .hero-headline {
        font-size: 42px;
        line-height: 1.15;
    }

    body.branding-page .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.branding-page .brand-mark-wrap {
        width: 220px;
        height: 220px;
    }

    body.branding-page .type-samples {
        display: none;
    }
}

@media (max-width: 420px) {
    body.branding-page .hero-headline {
        font-size: 36px;
    }

    body.branding-page .hero-ctas {
        flex-direction: column;
    }

    body.branding-page .hero-ctas a {
        width: 100%;
        text-align: center;
    }
}

/* Branding services section repair */
body.branding-page .branding-services-section {
    padding: 7rem 2rem;
    overflow: visible;
    background: #0A0A0A;
}

body.branding-page .branding-services-section .section-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

body.branding-page .branding-services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: dense;
    grid-auto-rows: minmax(260px, auto);
    gap: 1.2rem;
    margin-top: 4rem;
    align-items: stretch;
}

body.branding-page .branding-services-section .svc-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 260px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: clamp(1.5rem, 2vw, 2.2rem);
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

body.branding-page .branding-services-section .svc-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 187, 215,0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    pointer-events: none;
}

body.branding-page .branding-services-section .svc-card > * {
    position: relative;
    z-index: 1;
}

body.branding-page .branding-services-section .svc-card:hover {
    transform: translateY(-6px);
    border-color: rgba(30, 187, 215,0.35);
    box-shadow: 0 20px 60px rgba(30, 187, 215,0.12);
}

body.branding-page .branding-services-section .svc-card:hover::before {
    opacity: 1;
}

body.branding-page .branding-services-section .svc-card.large-row {
    grid-row: span 2;
}

body.branding-page .branding-services-section .svc-card.large-col {
    grid-column: span 2;
}

body.branding-page .branding-services-section .svc-icon-wrap {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(30, 187, 215,0.12);
    border: 1px solid rgba(30, 187, 215,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
}

body.branding-page .branding-services-section .svc-icon-wrap svg {
    width: 24px;
    height: 24px;
    color: #1EBBD7;
    stroke: #1EBBD7;
}

body.branding-page .branding-services-section .svc-card-title {
    color: #fff;
    font-size: clamp(1.15rem, 1.6vw, 1.3rem);
    line-height: 1.25;
    margin-bottom: 0.8rem;
    overflow-wrap: anywhere;
}

body.branding-page .branding-services-section .svc-card.large-row .svc-card-title {
    font-size: clamp(1.45rem, 2.2vw, 1.8rem);
}

body.branding-page .branding-services-section .svc-card-text {
    color: rgba(255,255,255,0.68);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

body.branding-page .branding-services-section .svc-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.2rem;
}

body.branding-page .branding-services-section .svc-card-tag {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    margin-top: 1.2rem;
    background: rgba(30, 187, 215,0.1);
    border: 1px solid rgba(30, 187, 215,0.25);
    color: #1EBBD7;
    font-size: 0.72rem;
    line-height: 1.3;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

body.branding-page .branding-services-section .svc-card-tags .svc-card-tag {
    margin-top: 0;
}

body.branding-page .branding-services-section .svc-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 1.5rem;
    transition: transform 0.4s ease;
}

body.branding-page .branding-services-section .large-card-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 187, 215,0.2), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 1024px) {
    body.branding-page .branding-services-section .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: auto;
    }

    body.branding-page .branding-services-section .svc-card.large-row {
        grid-row: span 1;
    }

    body.branding-page .branding-services-section .svc-card.large-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    body.branding-page .branding-services-section {
        padding: 5rem 1.25rem;
    }

    body.branding-page .branding-services-section .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 3rem;
    }

    body.branding-page .branding-services-section .svc-card,
    body.branding-page .branding-services-section .svc-card.large-col {
        grid-column: auto;
    }

    body.branding-page .branding-services-section .svc-card {
        min-height: auto;
    }

    body.branding-page .branding-services-section .svc-card-img {
        height: 160px;
        margin-top: 1.5rem;
        padding-top: 0;
    }
}

/* Branding stats/counter row repair */
body.branding-page .branding-stats-row {
    display: block;
    width: 100%;
    background: rgba(30, 187, 215,0.05);
    border-top: 1px solid rgba(30, 187, 215,0.12);
    border-bottom: 1px solid rgba(30, 187, 215,0.12);
    padding: clamp(3rem, 6vw, 4rem) 2rem;
    margin: 0;
    overflow: visible;
    position: relative;
    z-index: 2;
}

body.branding-page .branding-stats-row .stats-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1rem, 3vw, 2rem);
    align-items: stretch;
    text-align: center;
}

body.branding-page .branding-stats-row .stat-block {
    display: flex;
    min-width: 0;
    min-height: 132px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    opacity: 1;
    visibility: visible;
    transform: none;
}

body.branding-page .branding-stats-row .stats-num {
    display: block;
    min-height: 1.1em;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    line-height: 1;
    font-weight: 700;
    background: linear-gradient(135deg, #1EBBD7, #1699A8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #1EBBD7;
}

body.branding-page .branding-stats-row .stats-label {
    color: rgba(255,255,255,0.72);
    font-size: 0.88rem;
    line-height: 1.45;
    margin-top: 0.7rem;
}

@media (max-width: 768px) {
    body.branding-page .branding-stats-row {
        padding: 3rem 1.25rem;
    }

    body.branding-page .branding-stats-row .stats-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 420px) {
    body.branding-page .branding-stats-row .stats-inner {
        grid-template-columns: 1fr;
    }
}
