/* ===========================================================
       RASCON CONSTRUCTION — HOMEPAGE v3
       Design: Blueprint minimalism, light theme
       Typography: DM Serif Display + DM Sans + JetBrains Mono
       =========================================================== */

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    :root {
      --font-display: 'DM Serif Display', Georgia, serif;
      --font-body: 'DM Sans', -apple-system, sans-serif;
      --font-mono: 'JetBrains Mono', 'Courier New', monospace;

      --bg: #fbf8f2;
      --bg-soft: #f4f0e8;
      --bg-panel: #0d1419;
      --text: #0a1420;
      --text-soft: #5a6b7a;
      --text-muted: #9ba8b4;
      --text-on-dark: #e8f0f6;
      --accent: #6B9AB8;
      --accent-dark: #4a7a9a;
      --accent-light: #8bb4cc;
      --border: rgba(107, 154, 184, 0.22);
      --border-strong: rgba(107, 154, 184, 0.45);
      --grid-line: rgba(107, 154, 184, 0.08);
      --grid-line-major: rgba(107, 154, 184, 0.14);
      --shadow-soft: 0 1px 2px rgba(10, 20, 32, 0.04);
      --shadow-med: 0 13px 27px -5px rgba(10, 20, 32, 0.18);
    }

    body {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 16px;
      line-height: 1.65;
      color: var(--text);
      background-color: var(--bg);
      background-image:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
        linear-gradient(var(--grid-line-major) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line-major) 1px, transparent 1px);
      background-size: 24px 24px, 24px 24px, 120px 120px, 120px 120px;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      position: relative;
    }

    /* Grid applied directly to body background so it scrolls with content */

    main, nav, footer { position: relative; z-index: 1; }
    a { color: inherit; text-decoration: none; }

    /* ---- TYPOGRAPHY HELPERS ---- */
    .eyebrow {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      margin-bottom: 1.4rem;
    }
    .eyebrow::before {
      content: '';
      width: 28px;
      height: 1.5px;
      background: var(--accent);
    }

    .section-heading {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 4.2vw, 3.4rem);
      font-weight: 400;
      line-height: 1.08;
      letter-spacing: -0.01em;
      margin-bottom: 1.4rem;
      color: var(--text);
    }
    .section-heading em {
      font-style: italic;
      color: var(--accent);
    }

    .section-lead {
      font-size: 1.05rem;
      line-height: 1.75;
      color: var(--text-soft);
      max-width: 640px;
      margin-bottom: 3.5rem;
    }

    .container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    section { padding: 7rem 0; position: relative; }

    /* ===========================================================
       NAVIGATION
       =========================================================== */
    .site-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      height: 84px;
      display: flex;
      align-items: center;
      transition: box-shadow 0.25s ease;
    }
    .site-nav.is-scrolled { box-shadow: var(--shadow-soft); }
    .nav-inner {
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }
    .nav-brand { display: flex; align-items: center; flex-shrink: 0; }
    .nav-brand img {
      height: 56px;
      width: auto;
      display: block;
    }

    .nav-menu {
      display: flex;
      gap: 2.2rem;
      list-style: none;
    }
    .nav-menu a {
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--text-soft);
      position: relative;
      padding: 0.4rem 0;
      transition: color 0.2s ease;
    }
    .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1.5px;
      background: var(--accent);
      transition: width 0.25s ease;
    }
    .nav-menu a:hover { color: var(--text); }
    .nav-menu a:hover::after { width: 100%; }

    .nav-actions {
      display: flex;
      align-items: stretch;
      gap: 1rem;
    }

    /* Language switcher */
    .lang-switcher {
      display: flex;
      align-items: center;
      border: 1px solid var(--border);
      padding: 0;
      overflow: hidden;
    }
    .lang-switcher button {
      background: transparent;
      border: none;
      padding: 0.5rem 0.8rem;
      font-family: var(--font-mono);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      color: var(--text-soft);
      cursor: pointer;
      transition: all 0.2s ease;
      text-transform: uppercase;
    }
    .lang-switcher button:not(:last-child) {
      border-right: 1px solid var(--border);
    }
    .lang-switcher button.is-active {
      background: var(--accent);
      color: #fff;
    }
    .lang-switcher button:hover:not(.is-active) {
      color: var(--text);
      background: var(--bg-soft);
    }

    .nav-cta {
      padding: 0.5rem 1.1rem;
      background: var(--accent);
      color: #fff;
      font-family: var(--font-mono);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: 1px solid var(--accent);
      transition: background 0.2s ease, border-color 0.2s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      height: 100%;
    }
    .nav-cta:hover {
      background: var(--accent-dark);
      border-color: var(--accent-dark);
    }
    .nav-cta svg { width: 13px; height: 13px; }

    .mobile-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      width: 32px;
      height: 32px;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
    }
    .mobile-toggle span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--text);
      transition: all 0.25s ease;
    }
    .mobile-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
    .mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
    .mobile-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

    .mobile-menu {
      position: fixed;
      top: 84px;
      left: 0;
      right: 0;
      background: var(--bg);
      border-bottom: 1px solid var(--border);
      padding: 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      transform: translateY(-110%);
      transition: transform 0.3s ease;
      z-index: 99;
      max-height: calc(100vh - 84px);
      overflow-y: auto;
    }
    .mobile-menu.is-open { transform: translateY(0); }
    .mobile-menu a {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 400;
      color: var(--text);
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border);
    }
    .mobile-menu-lang {
      display: flex;
      gap: 1rem;
      padding-top: 1.2rem;
    }
    .mobile-menu-lang button {
      background: transparent;
      border: 1px solid var(--border);
      padding: 0.5rem 1rem;
      font-family: var(--font-mono);
      font-size: 0.8rem;
      cursor: pointer;
      color: var(--text-soft);
    }
    .mobile-menu-lang button.is-active {
      background: var(--accent);
      color: #fff;
      border-color: var(--accent);
    }

    /* ===========================================================
       HERO
       =========================================================== */
    .hero {
      display: flex;
      align-items: center;
      padding: 4rem 0 3rem;
    }
    .hero-grid {
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 2rem;
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: 5rem;
      align-items: start;
    }

    .hero-tag {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      display: flex;
      align-items: center;
      gap: 0.7rem;
      margin-bottom: 1.8rem;
      opacity: 0;
      transform: translateY(16px);
      animation: fade-up 0.7s 0.1s ease forwards;
    }
    .hero-tag::before {
      content: '';
      width: 32px;
      height: 1.5px;
      background: var(--accent);
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(3rem, 6vw, 5.2rem);
      font-weight: 400;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 2rem;
      color: var(--text);
      opacity: 0;
      transform: translateY(24px);
      animation: fade-up 0.8s 0.25s ease forwards;
    }
    .hero-title em {
      font-style: italic;
      color: var(--accent);
    }

    .hero-categories {
      display: flex;
      flex-wrap: wrap;
      gap: 0;
      margin-bottom: 2.5rem;
      opacity: 0;
      transform: translateY(20px);
      animation: fade-up 0.8s 0.4s ease forwards;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 1.2rem 0;
    }
    .hero-category {
      font-family: var(--font-mono);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text);
      padding: 0.2rem 1.2rem;
      border-right: 1px solid var(--border);
      white-space: nowrap;
    }
    .hero-category:first-child { padding-left: 0; }
    .hero-category:last-child { border-right: none; }

    .hero-cta-row {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(20px);
      animation: fade-up 0.8s 0.55s ease forwards;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.95rem 2rem;
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      cursor: pointer;
      transition: all 0.25s ease;
      border: 1.5px solid transparent;
    }
    .btn-primary {
      background: var(--accent);
      color: #fff;
      border-color: var(--accent);
    }
    .btn-primary:hover {
      background: var(--accent-dark);
      border-color: var(--accent-dark);
    }
    .btn-ghost {
      background: transparent;
      color: var(--text);
      border-color: var(--border-strong);
    }
    .btn-ghost:hover {
      border-color: var(--accent);
      color: var(--accent);
    }
    .btn svg { width: 14px; height: 14px; }

    /* ---- Hero Floor Plan SVG ---- */
    .hero-visual {
      opacity: 0;
      transform: translateX(30px);
      animation: fade-in 1s 0.5s ease forwards;
      padding-top: 3rem;
    }
    .hero-visual svg {
      width: 100%;
      height: auto;
      max-width: 640px;
    }

    /* Floor plan styling — Intersport-inspired */
    .fp-stamp-text {
      font-family: var(--font-mono);
      font-size: 7px;
      fill: var(--accent);
      letter-spacing: 0.1em;
    }
    .fp-stamp-text-lg {
      font-family: var(--font-mono);
      font-size: 9px;
      font-weight: 500;
      fill: var(--text);
      letter-spacing: 0.1em;
    }
    .fp-wall {
      fill: none;
      stroke: var(--text);
      stroke-width: 2.2;
      stroke-linecap: square;
    }
    .fp-wall-inner {
      fill: none;
      stroke: var(--text);
      stroke-width: 1.3;
      stroke-linecap: square;
    }
    .fp-fill { fill: var(--bg-soft); }
    .fp-fill-accent { fill: rgba(107, 154, 184, 0.1); }
    .fp-room-number {
      font-family: var(--font-mono);
      font-size: 6px;
      font-weight: 600;
      fill: var(--accent);
      letter-spacing: 0.05em;
    }
    .fp-room-label {
      font-family: var(--font-mono);
      font-size: 6.5px;
      font-weight: 500;
      fill: var(--text);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .fp-room-area {
      font-family: var(--font-mono);
      font-size: 5.5px;
      fill: var(--text-soft);
      letter-spacing: 0.04em;
    }
    .fp-dimension {
      stroke: var(--accent);
      stroke-width: 0.7;
      fill: none;
    }
    .fp-dimension-text {
      font-family: var(--font-mono);
      font-size: 7.5px;
      fill: var(--accent);
      letter-spacing: 0.05em;
    }
    .fp-detail {
      fill: none;
      stroke: var(--accent);
      stroke-width: 0.7;
      opacity: 0.55;
    }
    .fp-door {
      fill: none;
      stroke: var(--text);
      stroke-width: 0.9;
    }
    .fp-door-arc {
      fill: none;
      stroke: var(--accent);
      stroke-width: 0.6;
      opacity: 0.6;
      stroke-dasharray: 2 2;
    }
    .fp-stamp-box {
      fill: none;
      stroke: var(--accent);
      stroke-width: 0.8;
    }
    .fp-legend-box {
      fill: none;
      stroke: var(--accent);
      stroke-width: 0.6;
    }
    .fp-hatch {
      stroke: var(--accent);
      stroke-width: 0.4;
      opacity: 0.5;
    }

    /* Animations */
    .fp-draw {
      stroke-dasharray: 1400;
      stroke-dashoffset: 1400;
      animation: draw 2s ease forwards;
    }
    .fp-draw-1 { animation-delay: 0.6s; }
    .fp-draw-2 { animation-delay: 0.9s; }
    .fp-draw-3 { animation-delay: 1.1s; }
    .fp-draw-4 { animation-delay: 1.3s; }
    .fp-draw-5 { animation-delay: 1.5s; }

    .fp-fade {
      opacity: 0;
      animation: fade-in-simple 0.6s ease forwards;
    }
    .fp-fade-1 { animation-delay: 1.6s; }
    .fp-fade-2 { animation-delay: 1.8s; }
    .fp-fade-3 { animation-delay: 2.0s; }
    .fp-fade-4 { animation-delay: 2.2s; }
    .fp-fade-5 { animation-delay: 2.4s; }

    @keyframes draw { to { stroke-dashoffset: 0; } }
    @keyframes fade-in { to { opacity: 1; transform: translateX(0); } }
    @keyframes fade-in-simple { to { opacity: 1; } }
    @keyframes fade-up { to { opacity: 1; transform: translateY(0); } }

    /* ===========================================================
       STATS STRIP
       =========================================================== */
    .stats-strip {
      background-color: var(--bg-panel);
      background-image:
        linear-gradient(rgba(139, 180, 204, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 180, 204, 0.05) 1px, transparent 1px);
      background-size: 24px 24px;
      padding: 4rem 0;
      position: relative;
      overflow: hidden;
    }
    .stats-grid {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 2rem;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
      position: relative;
      z-index: 1;
    }
    .stat-item {
      text-align: center;
      padding: 0 1rem;
      border-right: 1px solid rgba(139, 180, 204, 0.12);
    }
    .stat-item:last-child { border-right: none; }
    .stat-number {
      font-family: var(--font-display);
      font-size: clamp(3rem, 5.5vw, 4.4rem);
      font-weight: 400;
      color: var(--text-on-dark);
      line-height: 1;
      margin-bottom: 0.8rem;
      letter-spacing: -0.02em;
    }
    .stat-number em {
      font-style: italic;
      color: var(--accent-light);
      font-size: 0.5em;
      margin-left: 0.1em;
    }
    .stat-label {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent-light);
    }

    /* ===========================================================
       ABOUT — O nás
       =========================================================== */
    .about {
      background: var(--bg);
    }
    .about-centered {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
    }
    .about-centered .eyebrow {
      display: inline-flex;
      justify-content: center;
    }
    .about-centered .section-heading {
      margin-bottom: 2.5rem;
    }
    .about-lead {
      font-size: 1.08rem;
      line-height: 1.85;
      color: var(--text-soft);
      margin-bottom: 1.6rem;
      max-width: 680px;
      margin-left: auto;
      margin-right: auto;
    }
    .about-lead strong {
      font-weight: 600;
      color: var(--text);
    }
    .about-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      margin-top: 2.5rem;
      justify-content: center;
    }
    .about-badge {
      padding: 0.5rem 1rem;
      border: 1px solid var(--border-strong);
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 500;
    }

    /* ===========================================================
       SERVICES
       =========================================================== */
    .services {
      background: transparent;
    }
    .services-header {
      margin-bottom: 4rem;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border-top: 1px solid var(--border);
      border-left: 1px solid var(--border);
      background: var(--bg);
      box-shadow: var(--shadow-med);
    }
    .service-card {
      padding: 3rem 2rem;
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      position: relative;
      transition: background 0.3s ease;
      cursor: pointer;
      display: block;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.4s ease;
    }
    .service-card:hover { background: var(--bg-soft); }
    .service-card:hover::before { width: 100%; }
    .service-index {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      color: var(--accent);
      margin-bottom: 2.5rem;
      display: block;
    }
    .service-card h3 {
      font-family: var(--font-display);
      font-size: 1.9rem;
      font-weight: 400;
      color: var(--text);
      margin-bottom: 1rem;
      line-height: 1;
      letter-spacing: -0.01em;
    }
    .service-card p {
      font-size: 0.92rem;
      line-height: 1.7;
      color: var(--text-soft);
    }

    /* ===========================================================
       PROCESS
       =========================================================== */
    .process { background: var(--bg); }
    .process-timeline {
      margin-top: 4rem;
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }
    .process-timeline::before {
      content: '';
      position: absolute;
      top: 28px;
      left: 5%;
      right: 5%;
      height: 1px;
      background: repeating-linear-gradient(
        to right,
        var(--border-strong) 0,
        var(--border-strong) 6px,
        transparent 6px,
        transparent 12px
      );
      z-index: 0;
    }
    .process-step {
      position: relative;
      padding-right: 1.5rem;
    }
    .process-marker {
      width: 56px;
      height: 56px;
      border: 1.5px solid var(--accent);
      background: var(--bg);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-mono);
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--accent);
      position: relative;
      z-index: 1;
      margin-bottom: 1.6rem;
      transition: all 0.25s ease;
    }
    .process-step:hover .process-marker {
      background: var(--accent);
      color: #fff;
    }
    .process-step h4 {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 400;
      color: var(--text);
      margin-bottom: 0.7rem;
      line-height: 1.15;
    }
    .process-step p {
      font-size: 0.9rem;
      line-height: 1.65;
      color: var(--text-soft);
    }

    /* ===========================================================
       CLIENTS — Grid of brand logos
       =========================================================== */
    .clients { background: var(--bg-soft); }
    .clients-header {
      display: flex;
      justify-content: space-between;
      align-items: end;
      margin-bottom: 4rem;
      gap: 3rem;
      flex-wrap: wrap;
    }
    .clients-header > div { max-width: 560px; }
    .clients-header p.lead-text {
      font-size: 1.02rem;
      line-height: 1.75;
      color: var(--text-soft);
      max-width: 560px;
    }
    .clients-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      border-top: 1px solid var(--border);
      border-left: 1px solid var(--border);
      background: var(--bg);
    }
    .client-cell {
      aspect-ratio: 5/3;
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem 1.4rem;
      position: relative;
      transition: background 0.3s ease;
      overflow: hidden;
    }
    .client-cell:hover {
      background: var(--bg-soft);
    }
    .client-cell img {
      max-width: 100%;
      max-height: 70px;
      width: auto;
      height: auto;
      object-fit: contain;
      filter: grayscale(50%);
      opacity: 0.85;
      transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    }
    .client-cell svg {
      max-width: 100%;
      max-height: 70px;
      width: auto;
      height: auto;
      filter: grayscale(50%);
      opacity: 0.85;
      transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    }
    .client-cell:hover img,
    .client-cell:hover svg {
      filter: grayscale(0%);
      opacity: 1;
      transform: scale(1.04);
    }

    /* ===========================================================
       CAREER
       =========================================================== */
    .career {
      background: var(--bg);
      padding: 6rem 0;
    }
    .career-inner {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 2rem;
      text-align: center;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding-top: 4rem;
      padding-bottom: 4rem;
    }
    .career-inner .eyebrow {
      display: inline-flex;
      justify-content: center;
    }
    .career-inner .section-heading {
      margin-bottom: 1.5rem;
    }
    .career-inner p {
      font-size: 1.05rem;
      line-height: 1.75;
      color: var(--text-soft);
      max-width: 580px;
      margin: 0 auto 2.2rem;
    }
    .career-email {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 1rem 2rem;
      border: 1.5px solid var(--border-strong);
      font-family: var(--font-mono);
      font-size: 0.85rem;
      letter-spacing: 0.05em;
      color: var(--text);
      transition: all 0.2s ease;
    }
    .career-email:hover {
      border-color: var(--accent);
      color: var(--accent);
    }
    .career-email svg { width: 16px; height: 16px; }

    /* ===========================================================
       CONTACT — Horizontal cards + map
       =========================================================== */
    .contact {
      background: var(--bg-soft);
      padding: 7rem 0;
    }
    .contact-header {
      max-width: 760px;
      margin: 0 auto 4rem;
      text-align: center;
    }
    .contact-header .eyebrow {
      display: inline-flex;
      justify-content: center;
    }
    .contact-header .section-heading {
      margin-bottom: 1.4rem;
    }
    .contact-lead {
      font-size: 1.05rem;
      line-height: 1.75;
      color: var(--text-soft);
      max-width: 560px;
      margin: 0 auto;
    }

    .contact-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.2rem;
      margin-bottom: 3rem;
    }
    .contact-card {
      background: var(--bg);
      border: 1px solid var(--border);
      padding: 2rem 1.8rem;
      position: relative;
      text-align: left;
      cursor: pointer;
      font-family: inherit;
      transition: all 0.25s ease;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      min-height: 180px;
    }
    .contact-card:hover:not(.contact-card-static) {
      border-color: var(--accent);
      transform: translateY(-3px);
      box-shadow: var(--shadow-med);
    }
    .contact-card-static {
      cursor: default;
    }
    .contact-card-label {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.2rem;
      font-weight: 500;
    }
    .contact-card-value {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 400;
      color: var(--text);
      line-height: 1.25;
      margin-bottom: 0.6rem;
      word-break: break-word;
    }
    .contact-card-action {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      letter-spacing: 0.08em;
      color: var(--text-muted);
      line-height: 1.4;
      margin-top: auto;
    }
    .contact-card-icon {
      position: absolute;
      top: 1.8rem;
      right: 1.8rem;
      color: var(--accent);
      opacity: 0.5;
      transition: opacity 0.2s ease;
    }
    .contact-card:hover .contact-card-icon { opacity: 1; }

    .contact-social-strip {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      padding: 2rem 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      margin-bottom: 3rem;
    }
    .contact-social-label {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .contact-social {
      display: flex;
      gap: 0.7rem;
    }
    .contact-social a {
      width: 44px;
      height: 44px;
      border: 1px solid var(--border-strong);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text);
      background: var(--bg);
      transition: all 0.2s ease;
    }
    .contact-social a:hover {
      border-color: var(--accent);
      color: var(--accent);
      transform: translateY(-2px);
    }
    .contact-social svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    /* Copy-to-clipboard toast */
    .copy-toast {
      position: fixed;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%) translateY(100px);
      background: var(--text);
      color: #fff;
      padding: 0.9rem 1.5rem;
      font-family: var(--font-mono);
      font-size: 0.82rem;
      letter-spacing: 0.05em;
      display: flex;
      align-items: center;
      gap: 0.7rem;
      box-shadow: 0 12px 32px rgba(10, 20, 32, 0.2);
      z-index: 1000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .copy-toast.is-visible {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
    .copy-toast svg {
      color: #6cde9e;
    }

    /* ===========================================================
       FOOTER
       =========================================================== */
    footer {
      background-color: var(--bg-panel);
      background-image:
        linear-gradient(rgba(139, 180, 204, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 180, 204, 0.04) 1px, transparent 1px);
      background-size: 24px 24px;
      padding: 5rem 0 2.5rem;
      position: relative;
      overflow: hidden;
    }
    .footer-inner {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 2rem;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.2fr;
      gap: 4rem;
      position: relative;
      z-index: 1;
    }
    .footer-brand-block p {
      font-size: 0.92rem;
      line-height: 1.7;
      color: rgba(232, 240, 246, 0.45);
      max-width: 320px;
    }
    .footer-col h5 {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent-light);
      margin-bottom: 1.3rem;
    }
    .footer-col a,
    .footer-col p {
      display: block;
      color: rgba(232, 240, 246, 0.5);
      font-size: 0.9rem;
      line-height: 1.75;
      margin-bottom: 0.4rem;
      transition: color 0.2s ease;
    }
    .footer-col a:hover { color: var(--accent-light); }
    .footer-bottom {
      max-width: 1240px;
      margin: 3rem auto 0;
      padding: 1.5rem 2rem 0;
      border-top: 1px solid rgba(139, 180, 204, 0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }
    .footer-bottom p {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.05em;
      color: rgba(232, 240, 246, 0.3);
    }

    /* ===========================================================
       SCROLL REVEAL
       =========================================================== */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }

    /* ===========================================================
       RESPONSIVE
       =========================================================== */
    @media (max-width: 1100px) {
      .nav-menu { gap: 1.5rem; }
      .nav-menu a { font-size: 0.85rem; }
    }
    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
      .hero-visual { max-width: 560px; }
      .about-centered { max-width: 100%; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
      .process-timeline::before { display: none; }
      .clients-grid { grid-template-columns: repeat(3, 1fr); }
      .contact-cards { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
      .stats-grid { gap: 2rem; }
    }
    @media (max-width: 860px) {
      .nav-menu, .nav-cta, .lang-switcher { display: none; }
      .mobile-toggle { display: flex; }
    }
    @media (max-width: 720px) {
      .nav-brand img { height: 44px; }
      section { padding: 5rem 0; }
      .hero { padding: 8rem 0 3rem; min-height: auto; }
      .hero-visual { display: none; }
      .hero-cta-row .btn { flex: 1; justify-content: center; }
      .hero-categories { justify-content: space-between; }
      .hero-category { font-size: 0.68rem; padding: 0.2rem 0.6rem; }
      .stats-grid { grid-template-columns: 1fr; gap: 2rem; }
      .stat-item { border-right: none; border-bottom: 1px solid rgba(139, 180, 204, 0.12); padding-bottom: 2rem; }
      .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
      .services-grid { grid-template-columns: 1fr; }
      .process-timeline { grid-template-columns: 1fr; }
      .clients-grid { grid-template-columns: repeat(2, 1fr); }
      .contact-cards { grid-template-columns: 1fr; gap: 1rem; }
      .contact-card { min-height: 140px; padding: 1.6rem 1.4rem; }
      .contact-social-strip { flex-direction: column; gap: 1rem; }
      .contact-ids { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .contact-form { padding: 2rem 1.5rem; }
      .form-row { grid-template-columns: 1fr; }
      .container { padding: 0 1.5rem; }
      .nav-inner { padding: 0 1.5rem; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
      }
      .fp-draw { stroke-dashoffset: 0; }
      .fp-fade, .hero-tag, .hero-title, .hero-categories, .hero-cta-row, .hero-visual {
        opacity: 1;
        transform: none;
      }
    }

    /* Typewriter rotating word */
    .rotating-word {
      display: inline-block;
      font-style: italic;
      color: var(--accent);
      white-space: nowrap;
      border-right: 2.5px solid var(--accent);
      animation: blink-caret 0.7s step-end infinite;
    }
    .rotating-word.no-caret {
      border-right-color: transparent;
      animation: none;
    }
    @keyframes blink-caret {
      from, to { border-color: transparent; }
      50% { border-color: var(--accent); }
    }

.cookie-fab { position:fixed; bottom:1.5rem; left:1.5rem; width:48px; height:48px; border-radius:50%; background:var(--bg); border:1.5px solid var(--border-strong); box-shadow:0 4px 16px -4px rgba(10,20,32,0.15); cursor:pointer; z-index:998; display:flex; align-items:center; justify-content:center; color:var(--accent); transition:all 0.25s ease; padding:0; }
    .cookie-fab:hover { transform:translateY(-2px); border-color:var(--accent); box-shadow:0 8px 20px -4px rgba(10,20,32,0.22); }
    .cookie-fab svg { width:22px; height:22px; }
    .cookie-overlay { position:fixed; inset:0; background:rgba(4,6,8,0.55); z-index:999; opacity:0; pointer-events:none; transition:opacity 0.3s ease; display:flex; align-items:center; justify-content:center; padding:1.5rem; }
    .cookie-overlay.is-open { opacity:1; pointer-events:auto; }
    .cookie-modal { background:var(--bg); border:1px solid var(--border-strong); max-width:460px; width:100%; padding:2.2rem; position:relative; box-shadow:0 30px 60px -15px rgba(10,20,32,0.3); transform:translateY(20px); transition:transform 0.3s ease; }
    .cookie-overlay.is-open .cookie-modal { transform:translateY(0); }
    .cookie-close { position:static; display:block; width:100%; margin-top:1.6rem; padding:0.9rem 1.2rem; font-family:var(--font-body); font-size:0.88rem; font-weight:600; background:var(--accent); color:#fff; border:none; cursor:pointer; transition:background 0.2s ease; text-align:center; }
    .cookie-close:hover { background:var(--accent-dark); }
    
    .cookie-modal-eyebrow { font-family:var(--font-mono); font-size:0.66rem; font-weight:500; letter-spacing:0.18em; text-transform:uppercase; color:var(--accent); margin-bottom:0.8rem; display:inline-flex; align-items:center; gap:0.6rem; }
    .cookie-modal-eyebrow::before { content:''; width:20px; height:1.5px; background:var(--accent); }
    .cookie-modal h4 { font-family:var(--font-display); font-size:1.6rem; font-weight:400; line-height:1.2; margin-bottom:0.8rem; color:var(--text); }
    .cookie-modal p { font-size:0.92rem; line-height:1.7; color:var(--text-soft); margin:0; }
    @media(max-width:720px) { .cookie-fab { bottom:1rem; left:1rem; width:44px; height:44px; } .cookie-fab svg { width:20px; height:20px; } .cookie-modal { padding:1.8rem 1.5rem 1.5rem; } .cookie-modal h4 { font-size:1.35rem; } }