/* ============================================
   CSS VARIABLES & THEME
   ============================================ */

   :root {
    /* Colors */
    --bg: #f5f8fb;
    --bg-soft: #f9fbff;
    --bg-card: #ffffff;
    --primary: #007AC2;
    --primary-soft: rgba(0, 122, 194, 0.08);
    --accent: #42c5a7;
    --text-main: #101825;
    --text-soft: #5b6473;
    --border-subtle: rgba(16, 24, 37, 0.06);
    
    /* Shadows */
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
    
    /* Radius */
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-pill: 999px;
    
    /* Layout */
    --nav-height: 76px;
  }
  
  
  /* ============================================
     RESET & BASE STYLES
     ============================================ */
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #ffffff 0, var(--bg) 55%);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  img,
  video,
  iframe {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  
  /* ============================================
     LAYOUT
     ============================================ */
  
  .page-wrapper {
    min-height: 100vh;
    overflow-x: hidden;
  }
  
  .container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section {
    padding: 88px 0;
    position: relative;
    overflow: hidden;
  }
  
  .section-inner {
    position: relative;
    z-index: 1;
  }
  
  .two-column {
    display: grid;
    gap: 50px;
  }
  
  
  /* ============================================
     TYPOGRAPHY
     ============================================ */
  
  .section-kicker {
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .section-title {
    font-size: clamp(1.6rem, 4vw, 2.3rem);
    line-height: 1.2;
    margin-bottom: 14px;
  }
  
  .section-description {
    font-size: clamp(0.88rem, 2vw, 0.98rem);
    color: var(--text-soft);
    max-width: 560px;
    line-height: 1.6;
  }
  
  .section-header.center {
    text-align: center;
    margin: 0 auto 40px;
  }
  
  .section-header.center .section-description {
    margin: 0 auto;
  }
  
  
  /* ============================================
     BUTTONS
     ============================================ */
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.6rem;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.22s ease-out;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
    min-height: 44px;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, var(--primary), #3ba9d8);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(46, 139, 192, 0.35);
  }
  
  .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 45px rgba(46, 139, 192, 0.4);
  }
  
  .btn-primary:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
  }
  
  .btn-ghost {
    background: #ffffff;
    border-color: var(--border-subtle);
    color: var(--text-main);
  }
  
  .btn-ghost:hover {
    background: var(--bg-soft);
    border-color: rgba(46, 139, 192, 0.4);
  }
  
  .btn-ghost:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
  }
  
  .btn-submit {
    padding-inline: 1.9rem;
    position: relative;
  }
  
  .btn-submit .btn-loader {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-top-color: #ffffff;
    margin-left: 10px;
    animation: spin 0.8s linear infinite;
    opacity: 0;
    transform: translateY(2px);
  }
  
  .btn-submit.submitting .btn-loader {
    opacity: 1;
  }
  
  .btn-submit.submitting {
    opacity: 0.9;
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  
  /* ============================================
     FLOATING ACTION BUTTONS
     ============================================ */
  
  .float-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .float-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  }
  
  .float-btn-call {
    background: linear-gradient(135deg, #2e8bc0, #3ba9d8);
    color: #ffffff;
  }
  
  .float-btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
  }
  
  .float-btn svg {
    width: 24px;
    height: 24px;
  }
  
  
  /* ============================================
     HEADER & NAVIGATION
     ============================================ */
  
  .header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: linear-gradient(
      to bottom,
      rgba(245, 248, 251, 0.92),
      rgba(245, 248, 251, 0.72)
    );
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    gap: 16px;
  }
  
  /* Logo */
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }
  
  .logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
  }
  
  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }
  
  .logo-title {
    font-weight: 600;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    white-space: nowrap;
  }
  
  .logo-subtitle {
    font-size: clamp(0.65rem, 1.5vw, 0.7rem);
    color: var(--text-soft);
    white-space: nowrap;
  }
  
  /* Navigation */
  .nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.9rem;
  }
  
  .nav-links li {
    margin: 0;
  }
  
  .nav-links a {
    position: relative;
    padding-block: 4px;
    color: var(--text-soft);
    min-height: 44px;
    display: flex;
    align-items: center;
    white-space: nowrap;
  }
  
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.2s ease-out;
  }
  
  .nav-links a:hover {
    color: var(--text-main);
  }
  
  .nav-links a:hover::after {
    width: 18px;
  }
  
  .nav-links a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
  }
  
  .nav-cta {
    padding: 0.45rem 1rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(46, 139, 192, 0.25);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    font-weight: 500;
  }
  
  .nav-cta::after {
    display: none;
  }
  
  .nav-cta:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: transparent;
  }
  
  /* Language Switcher */
  .lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(46, 139, 192, 0.15);
    flex-shrink: 0;
  }
  
  .lang-btn {
    background: none;
    border: none;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-soft);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 999px;
    transition: all 0.2s ease;
    font-family: inherit;
    min-width: auto;
  }
  
  .lang-btn:hover {
    color: var(--primary);
    background: rgba(46, 139, 192, 0.08);
  }
  
  .lang-btn.active {
    color: #ffffff;
    background: var(--primary);
  }
  
  .lang-sep {
    color: rgba(91, 100, 115, 0.3);
    font-size: 0.7rem;
  }
  
  /* Mobile Menu Toggle */
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 999px;
    border: 1px solid rgba(16, 24, 37, 0.1);
    background: #ffffff;
    cursor: pointer;
    padding: 0 10px;
    flex-shrink: 0;
  }
  
  .nav-toggle span {
    height: 2px;
    width: 100%;
    background: var(--text-main);
    border-radius: 999px;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }
  
  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.open span:first-child {
    transform: translateY(7px) rotate(45deg);
  }
  
  .nav-toggle.open span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  
  /* ============================================
     HERO SECTION
     ============================================ */
  
  .hero {
    padding-top: 46px;
    padding-bottom: 80px;
    overflow: hidden;
  }
  
  .hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 0% 0%, rgba(233, 248, 255, 0.95), transparent 55%),
      radial-gradient(circle at 90% 10%, rgba(201, 233, 255, 0.85), transparent 60%);
    opacity: 0.9;
    pointer-events: none;
  }
  
  .hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.45) 1px, transparent 0);
    background-size: 20px 20px;
    opacity: 0.8;
    mix-blend-mode: soft-light;
  }
  
  .hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
  }
  
  .hero-kicker {
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
  }
  
  .hero-title {
    font-size: clamp(1.8rem, 5vw, 2.9rem);
    line-height: 1.15;
    margin-bottom: 14px;
  }
  
  .hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 0.98rem);
    color: var(--text-soft);
    max-width: 480px;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
  }
  
  .hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }
  
  .meta-item {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(16, 24, 37, 0.04);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.04);
    flex: 1 1 auto;
    min-width: 120px;
  }
  
  .meta-label {
    display: block;
    font-size: clamp(0.65rem, 1.5vw, 0.68rem);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-soft);
    margin-bottom: 1px;
  }
  
  .meta-value {
    font-size: clamp(0.75rem, 2vw, 0.8rem);
    font-weight: 500;
  }
  
  /* Hero Visual */
  .hero-visual {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
  }
  
  .hero-card {
    background: linear-gradient(150deg, #ffffff, #f2f8ff);
    border-radius: 26px;
    padding: 18px 18px 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.9);
    position: relative;
    max-width: 360px;
    width: 100%;
    z-index: 2;
  }
  
  .hero-card-main {
    position: relative;
    z-index: 2;
  }
  
  .hero-card-top {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
  }
  
  .pill {
    padding: 5px 11px;
    border-radius: 999px;
    font-size: clamp(0.65rem, 1.5vw, 0.7rem);
    border: 1px solid rgba(46, 139, 192, 0.15);
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    white-space: nowrap;
  }
  
  .pill-soft {
    background: rgba(66, 197, 167, 0.08);
    border-color: rgba(66, 197, 167, 0.35);
    color: #159273;
  }
  
  .pill-clean {
    background: rgba(46, 139, 192, 0.08);
  }
  
  .hero-packshot {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: center;
    margin-bottom: 14px;
  }
  
  .hero-roll-stack {
    position: relative;
    width: 86px;
    height: 100px;
    min-width: 86px;
  }
  
  .roll {
    position: absolute;
    border-radius: 26px;
    background: radial-gradient(circle at 20% 0, #ffffff 0, #e8f0fa 48%, #e0e7f0 100%);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
  
  .roll img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  
  .roll-main {
    inset: 12px 0 0 8px;
  }
  
  .roll-secondary {
    inset: 0 10px 18px auto;
    opacity: 0.7;
    transform: scale(0.84) rotate(-8deg);
  }
  
  .hero-pack-info h3 {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    margin-bottom: 4px;
  }
  
  .hero-pack-info p {
    font-size: clamp(0.8rem, 1.8vw, 0.85rem);
    color: var(--text-soft);
    line-height: 1.4;
  }
  
  .hero-card-bottom {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 10px;
    border: 1px dashed rgba(15, 23, 42, 0.1);
  }
  
  .hero-spec {
    font-size: clamp(0.68rem, 1.5vw, 0.72rem);
    text-align: center;
  }
  
  .hero-spec-label {
    display: block;
    color: var(--text-soft);
    margin-bottom: 1px;
  }
  
  .hero-spec-value {
    font-weight: 500;
  }
  
  /* Floating Cards */
  .hero-floating-card {
    position: absolute;
    padding: 10px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
    font-size: clamp(0.72rem, 1.8vw, 0.8rem);
    color: var(--text-soft);
    max-width: 180px;
    line-height: 1.4;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
  }
  
  .hero-floating-top {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
  }
  
  .hero-floating-bottom {
    bottom: -1%;
    left: -8%;
    animation-delay: 1.5s;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  
  /* ============================================
     ABOUT SECTION
     ============================================ */
  
  .about {
    background: radial-gradient(circle at top right, #e9f5ff 0, transparent 55%), #f7f9fc;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  
  .about-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 18px 18px 16px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.04);
  }
  
  .about-card h3 {
    font-size: clamp(0.95rem, 2vw, 1rem);
    margin-bottom: 6px;
  }
  
  .about-card p {
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    color: var(--text-soft);
    line-height: 1.6;
  }
  
  
  /* ============================================
     SKILLS / EXPERIENCE SECTION
     ============================================ */
  
  .skills {
    background: radial-gradient(circle at top left, rgba(226, 244, 255, 0.9) 0, transparent 55%), #f5f8fb;
  }
  
  .skills-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 24px;
  }
  
  .skill-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 16px 18px 14px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
  }
  
  .skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }
  
  .skill-label {
    font-size: clamp(0.86rem, 1.9vw, 0.92rem);
    font-weight: 500;
  }
  
  .skill-value {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
  }
  
  .skill-bar {
    position: relative;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.25);
    overflow: hidden;
  }
  
  .skill-bar-fill {
    position: absolute;
    inset: 0;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary), var(--accent));
  }
  
  
  /* ============================================
     CLIENTS / COMPANIES SECTION
     ============================================ */
  
  .clients {
    background: #f7fafc;
  }
  
  .clients-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
  
  .client-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 16px 16px 14px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .client-logo-wrap {
    padding: 8px 10px;
    border-radius: 14px;
    background: #f3f7fc;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .client-logo {
    max-width: 100%;
    max-height: 46px;
    object-fit: contain;
  }
  
  .client-role {
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 2px;
  }
  
  .client-name {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }
  
  .client-description {
    font-size: 0.84rem;
    color: var(--text-soft);
    line-height: 1.5;
  }
  
  
  /* ============================================
     STORIES / CASE STUDIES SECTION
     ============================================ */
  
  .stories {
    background: #f5f8fb;
  }
  
  .stories-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  
  .story-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
  }
  
  .story-media img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .story-body {
    padding: 16px 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .story-title {
    font-size: 0.98rem;
  }
  
  .story-summary {
    font-size: 0.86rem;
    color: var(--text-soft);
    line-height: 1.5;
  }
  
  .story-btn {
    margin-top: 4px;
    padding-inline: 1rem;
    align-self: flex-start;
  }
  
  
  /* ============================================
     PRODUCTS SECTION
     ============================================ */
  
  .products {
    background: var(--bg);
  }
  
  /* Product Tabs */
  .product-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 32px;
  }
  
  .product-tab {
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(46, 139, 192, 0.2);
    background: #ffffff;
    color: var(--text-soft);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    white-space: nowrap;
  }
  
  .product-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
  }
  
  .product-tab.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
  }
  
  /* Product Grid */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 18px;
  }
  
  .product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    transform-origin: center;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
    cursor: pointer;
    position: relative;
  }
  
  .product-media {
    position: relative;
    overflow: hidden;
    background: #f8fafc;
  }
  
  .product-media img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transform-origin: center;
    transition: transform 0.4s ease;
  }
  
  .product-body {
    padding: 16px 16px 14px;
    flex: 1;
  }
  
  .product-body h3 {
    font-size: clamp(0.95rem, 2vw, 1rem);
    margin-bottom: 5px;
  }
  
  .product-body p {
    font-size: clamp(0.82rem, 1.8vw, 0.86rem);
    color: var(--text-soft);
    margin-bottom: 10px;
    line-height: 1.5;
  }
  
  .product-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  
  .product-tags li {
    font-size: clamp(0.7rem, 1.5vw, 0.75rem);
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
  }
  
  .product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(46, 139, 192, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
  }
  
  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16);
  }
  
  .product-card:hover::before {
    opacity: 1;
  }
  
  .product-card:hover .product-media img {
    transform: scale(1.04);
  }
  
  
  /* ============================================
     MATERIAL SECTION
     ============================================ */
  
  .material {
    background: radial-gradient(circle at bottom left, #eaf7f3 0, transparent 55%), #f7faf9;
  }
  
  .material-content {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .material-description {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--text-soft);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .material-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: 18px;
  }
  
  .material-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 18px 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
    text-align: center;
  }
  
  .material-icon {
    margin-bottom: 10px;
  }
  
  .icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-soft);
    font-size: 1.5rem;
  }
  
  .material-card h3 {
    font-size: clamp(0.92rem, 2vw, 0.98rem);
    margin-bottom: 6px;
  }
  
  .material-card p {
    font-size: clamp(0.84rem, 2vw, 0.88rem);
    color: var(--text-soft);
    line-height: 1.6;
  }
  
  
  /* ============================================
     ENHANCED LOCATIONS & AVAILABILITY MAP SECTION
     Brand-consistent minimal SaaS UI design
     ============================================ */
  
  .locations {
    background: radial-gradient(circle at bottom right, rgba(216, 239, 255, 0.3) 0, transparent 60%), #fafbfc;
    position: relative;
  }
  
  .locations::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 122, 194, 0.15) 50%, transparent);
  }
  
  .availability-map {
    margin-top: 48px;
  }
  
  .availability-map-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
  }
  
  /* ============================================
     MAP VISUAL CONTAINER - Clean SaaS Card
     ============================================ */
  
  .availability-map-visual {
    background: #ffffff;
    border-radius: 20px;
    width: 100%;
    border: 1px solid rgba(16, 24, 37, 0.08);
    box-shadow: 
      0 1px 3px rgba(16, 24, 37, 0.04),
      0 8px 24px rgba(16, 24, 37, 0.06);
    display: flex;
    
    justify-content: center;  
    align-items: center;
  }
  
  /* Map Title inside the card */
  
  .availability-map-base {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%; 
    height: 100%;
    padding-top: 100%;
    background-image: url("../assets/images/products/musab.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size:cover;
    z-index: 1;
    
  }
  
  .availability-markers {
    position: absolute;
    inset: 0;
    z-index: 2;
  }
  
  /* ============================================
     LOCATION PINS - Red with white center
     ============================================ */
  
  .availability-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0;
    transform-origin: bottom center;
  }
  
  .availability-marker::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: #dc3545;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 3px 8px rgba(220, 53, 69, 0.4);
    transition: all 0.3s ease;
  }
  
  .availability-marker::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
  }
  
  .availability-marker:hover::before,
  .availability-marker.active::before {
    box-shadow: 0 6px 16px rgba(220, 53, 69, 0.6);
    transform: rotate(-45deg) scale(1.15);
  }
  
  .availability-marker:hover,
  .availability-marker.active {
    transform: scale(1.2);
    z-index: 20;
  }
  
  /* Position pins on the map */
  .availability-marker[data-country="germany"] {
    left: 38%;
    top: 33%;
  }
  
  .availability-marker[data-country="turkey"] {
    left: 67%;
    top: 56%;
  }
  
  .availability-marker[data-country="syria"] {
    
  }
  
  .availability-marker[data-country="saudi"] {
    left: 80%;
    top: 85%;
  }
  
  .availability-marker[data-country="austria"] {
    left: 43%;
    top: 42%;
  }
  
  .availability-marker[data-country="switzerland"] {
    left: 38%;
    top: 44%;
  }
  
  .availability-dot {
    display: none;
  }
  
  /* ============================================
     FLOATING TOOLTIP - Brand Blue
     ============================================ */
  
  .availability-tooltip {
    position: absolute;
    background: #ffffff;
    border: 2px solid #007AC2;
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
    box-shadow: 
      0 4px 12px rgba(0, 122, 194, 0.15),
      0 2px 6px rgba(0, 0, 0, 0.08);
    pointer-events: none;
    white-space: nowrap;
    z-index: 100;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  
  .availability-tooltip.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  .availability-tooltip::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #007AC2;
  }
  
  .availability-tooltip::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #ffffff;
  }
  
  /* ============================================
     SIDE PANEL - Clean Modern UI
     ============================================ */
  
  .availability-map-panel {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(16, 24, 37, 0.08);
    box-shadow: 
      0 1px 3px rgba(16, 24, 37, 0.04),
      0 8px 24px rgba(16, 24, 37, 0.06);
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
  }
  
  .availability-panel-title {
    font-size: clamp(1.15rem, 2.5vw, 1.3rem);
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
    letter-spacing: -0.02em;
  }
  
  .availability-panel-text {
    font-size: clamp(0.88rem, 2vw, 0.94rem);
    color: var(--text-soft);
    line-height: 1.6;
    margin: 0;
  }
  
  /* ============================================
     COLOR LEGEND - Brand Blue Based
     ============================================ */
  
  .availability-legend {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: #f8fafb;
    border-radius: 14px;
    margin-top: 8px;
  }
  
  .availability-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-soft);
  }
  
  .availability-legend-color {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    flex-shrink: 0;
  }
  
  .availability-legend-color.dark {
    background: #007AC2;
    border: 1px solid #0069a8;
  }
  
  .availability-legend-color.light {
    background: #66C2E8;
    border: 1px solid #4db5e0;
  }
  
  .availability-legend-color.expanding {
    background: #ffffff;
    border: 2px dashed #007AC2;
  }
  
  .availability-legend-color.inactive {
    background: #f0f2f5;
    border: 1px solid #e1e4e8;
  }
  
  /* ============================================
     SELECTED COUNTRY CARD - Brand Blue Highlight
     ============================================ */
  
  .availability-selected {
    margin-top: 12px;
    padding: 20px 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 122, 194, 0.06), rgba(0, 122, 194, 0.02));
    border: 2px solid #007AC2;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .availability-selected::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #007AC2;
  }
  
  .availability-selected-title {
    font-size: clamp(1.05rem, 2.2vw, 1.18rem);
    font-weight: 600;
    color: #007AC2;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .availability-selected-title::before {
    content: "📍";
    font-size: 1.2em;
  }
  
  .availability-selected-text {
    font-size: clamp(0.86rem, 2vw, 0.92rem);
    color: var(--text-soft);
    line-height: 1.6;
    margin: 0;
  }
  
  /* ============================================
     COUNTRY LIST - Clean & Minimal
     ============================================ */
  
  .availability-list {
    margin-top: 20px;
    list-style: none;
    display: grid;
    gap: 8px;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 8px;
  }
  
  .availability-list::-webkit-scrollbar {
    width: 5px;
  }
  
  .availability-list::-webkit-scrollbar-track {
    background: #f8fafb;
    border-radius: 999px;
  }
  
  .availability-list::-webkit-scrollbar-thumb {
    background: rgba(0, 122, 194, 0.25);
    border-radius: 999px;
    transition: background 0.2s ease;
  }
  
  .availability-list::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 122, 194, 0.4);
  }
  
  .availability-list-item {
    border-radius: 12px;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 37, 0.08);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  
  .availability-list-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #007AC2;
    transform: scaleY(0);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .availability-list-item:hover {
    background: rgba(0, 122, 194, 0.03);
    border-color: rgba(0, 122, 194, 0.2);
    box-shadow: 0 4px 12px rgba(0, 122, 194, 0.08);
    transform: translateX(4px);
  }
  
  .availability-list-item:hover::before {
    transform: scaleY(1);
  }
  
  .availability-list-item.active {
    background: linear-gradient(135deg, rgba(0, 122, 194, 0.08), rgba(0, 122, 194, 0.04));
    border-color: #007AC2;
    box-shadow: 0 4px 12px rgba(0, 122, 194, 0.12);
  }
  
  .availability-list-item.active::before {
    transform: scaleY(1);
  }
  
  .availability-country {
    display: block;
    font-size: clamp(0.92rem, 2vw, 1rem);
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
    transition: color 0.25s ease;
  }
  
  .availability-list-item:hover .availability-country,
  .availability-list-item.active .availability-country {
    color: #007AC2;
  }
  
  .availability-products {
    display: block;
    font-size: clamp(0.82rem, 1.8vw, 0.88rem);
    color: var(--text-soft);
    line-height: 1.5;
  }
  
  
  /* ============================================
     STATS SECTION
     ============================================ */
  
  .stats {
    background: radial-gradient(circle at top right, #e8f3ff 0, transparent 60%), #f5f8fb;
  }
  
  .stats-inner {
    display: grid;
    gap: 40px;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 16px;
  }
  
  .stat-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 16px 16px 14px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.05);
  }
  
  .stat-label {
    display: block;
    font-size: clamp(0.7rem, 1.5vw, 0.76rem);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-soft);
    margin-bottom: 4px;
  }
  
  .stat-value {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: 600;
    color: var(--primary);
  }
  
  
  /* ============================================
     CONTACT SECTION
     ============================================ */
  
  .contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at 0 0, #e6f7f3 0, transparent 60%), #f6faf9;
  }
  
  .contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.4fr);
    gap: 32px;
    align-items: flex-start;
  }
  
  .contact-content {
    position: relative;
  }
  
  .contact-highlights {
    list-style: none;
    margin-top: 20px;
    margin-bottom: 30px;
    display: grid;
    gap: 8px;
  }
  
  .contact-highlights li {
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    color: var(--text-soft);
    position: relative;
    padding-left: 20px;
    line-height: 1.6;
  }
  
  .contact-highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
  }
  
  /* Location Information */
  .location-grid {
    display: grid;
    gap: 24px;
    margin-top: 30px;
  }
  
  .contact-location-grid {
    grid-template-columns: 1fr;
  }
  
  .location-info {
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  }
  
  .location-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-soft);
    margin-bottom: 8px;
  }
  
  .location-address {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--text-main);
  }
  
  .location-contact {
    font-size: 0.9rem;
    margin-top: 12px;
    color: var(--text-soft);
  }
  
  .location-contact a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .location-contact a:hover {
    color: var(--accent);
    text-decoration: underline;
  }
  
  .location-meta-label {
    font-weight: 500;
    color: var(--text-main);
    margin-right: 6px;
  }
  
  .location-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
  }
  
  /* Map */
  .map-placeholder {
    width: 100%;
    margin: 0 auto;
    min-height: 360px;
    border-radius: 29px;
    overflow: hidden;
  }
  
  .map-placeholder iframe {
    width: 100%;
    min-height: 360px;
    border-radius: 29px;
    border: 0;
  }
  
  .contact-map-full {
    width: 100%;
    margin-top: 36px;
  }
  
  .contact-map-full .map-placeholder {
    border-radius: 0;
  }
  
  /* Contact Form */
  .contact-form-wrapper {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 20px 20px 18px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.95);
  }
  
  .contact-form {
    display: grid;
    gap: 10px;
  }
  
  .form-row {
    display: grid;
    gap: 10px;
  }
  
  .form-field label {
    display: block;
    font-size: clamp(0.75rem, 1.8vw, 0.8rem);
    margin-bottom: 4px;
    color: var(--text-soft);
  }
  
  .form-field input,
  .form-field textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 9px 11px;
    font-family: inherit;
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    background: #f9fbff;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
    min-height: 44px;
  }
  
  .form-field textarea {
    resize: vertical;
    min-height: 110px;
  }
  
  .form-field input:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: rgba(46, 139, 192, 0.6);
    box-shadow: 0 0 0 1px rgba(46, 139, 192, 0.24);
    background: #ffffff;
  }
  
  .form-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .form-note {
    font-size: clamp(0.72rem, 1.5vw, 0.78rem);
    color: var(--text-soft);
    max-width: 230px;
    line-height: 1.5;
  }
  
  
  /* ============================================
     FOOTER
     ============================================ */
  
  .footer {
    padding: 28px 0 32px;
    background: #0f172a;
    color: rgba(255, 255, 255, 0.86);
  }
  
  .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .footer-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
  }
  
  .footer-title {
    font-size: clamp(0.82rem, 2vw, 0.88rem);
    font-weight: 500;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: clamp(0.78rem, 1.8vw, 0.82rem);
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.76);
    min-height: 44px;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
  }
  
  .footer-links a:hover {
    color: #ffffff;
  }
  
  .footer-social {
    display: flex;
    gap: 10px;
  }
  
  .footer-social .social-icon {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
  }
  
  .footer-social .social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
  }
  
  .footer-copy {
    font-size: clamp(0.72rem, 1.5vw, 0.78rem);
    color: rgba(255, 255, 255, 0.6);
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }
  
  
  /* ============================================
     ANIMATIONS & UTILITIES
     ============================================ */
  
  /* Initial states for reveal animations */
  .reveal-up,
  .reveal-fade {
    opacity: 0;
    transform: translateY(18px);
  }
  
  .reveal-fade {
    transform: translateY(0) scale(0.96);
  }
  
  /* Hero initial animation states */
  .hero-card {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .hero-content {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  }
  
  /* Page loaded state */
  body.loaded .hero-card,
  body.loaded .hero-content {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  
  
  /* ============================================
     RESPONSIVE BREAKPOINTS
     ============================================ */
  
  /* Extra Large Screens (1600px+) */
  @media (min-width: 1600px) {
    .container {
      max-width: 1320px;
    }
  
    .section {
      padding: 100px 0;
    }
  }
  
  /* Large Desktops (1200px - 1599px) */
  @media (max-width: 1599px) and (min-width: 1200px) {
    .container {
      max-width: 1140px;
    }
  }
  
  /* Standard Desktops (max-width: 1199px) */
  @media (max-width: 1199px) {
    .container {
      max-width: 960px;
    }
  
    .product-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  
    .clients-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  
    .stories-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  /* Tablets & Small Laptops (max-width: 1023px) */
  @media (max-width: 1023px) {
    :root {
      --nav-height: 70px;
    }
  
    .section {
      padding: 80px 0;
    }
  
    .hero {
      padding-top: 40px;
      padding-bottom: 70px;
    }
  
    .hero-inner {
      gap: 36px;
    }
  
    .product-media img {
      height: 170px;
    }
  
    .skills-grid {
      grid-template-columns: minmax(0, 1fr);
    }
  
    .clients-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .stories-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .availability-map-inner {
      grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
      gap: 24px;
    }
  
  
  
    .material-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  /* Tablets (max-width: 899px) */
  @media (max-width: 899px) {
    .hero-inner {
      grid-template-columns: 1fr;
    }
  
    .hero-visual {
      order: -1;
      min-height: auto;
    }
  
    .hero-floating-top {
      top: 2%;
      right: 2%;
    }
  
    .hero-floating-bottom {
      bottom: 2%;
      left: 2%;
    }
  
    .contact-inner {
      grid-template-columns: 1fr;
    }
  
    .contact-form-wrapper {
      order: -1;
    }
  
    .product-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .about-grid {
      grid-template-columns: 1fr;
    }
  
    .stats-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .two-column {
      grid-template-columns: 1fr;
    }
  }
  
  /* Mobile Navigation (max-width: 820px) */
  @media (max-width: 820px) {
    .header-inner {
      gap: 12px;
    }
  
    /* Mobile Navigation Menu */
    .nav-links {
      position: absolute;
      right: 20px;
      top: calc(var(--nav-height) + 8px);
      padding: 12px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.98);
      border: 1px solid rgba(15, 23, 42, 0.08);
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
      min-width: 180px;
      transform-origin: top right;
      transform: scale(0.96);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.18s ease, transform 0.18s ease;
      z-index: 100;
    }
  
    .nav-links.open {
      opacity: 1;
      pointer-events: auto;
      transform: scale(1);
    }
  
    .nav-links li {
      width: 100%;
    }
  
    .nav-links a {
      width: 100%;
      padding: 10px 8px;
      border-radius: 8px;
    }
  
    .nav-links a:hover {
      background: rgba(46, 139, 192, 0.08);
    }
  
    .nav-cta {
      width: 100%;
      text-align: center;
      justify-content: center;
    }
  
    /* Show hamburger menu */
    .nav-toggle {
      display: flex;
    }
  
    /* Compact language switcher */
    .lang-switcher {
      padding: 4px 8px;
      gap: 4px;
    }
  
    .lang-btn {
      font-size: 0.75rem;
      padding: 3px 6px;
    }
  
    .lang-sep {
      font-size: 0.65rem;
    }
  }
  
  /* Smaller Tablets & Large Phones (max-width: 768px) */
  @media (max-width: 768px) {
    .logo-img {
      width: 36px;
      height: 36px;
    }
  
    .product-tabs {
      gap: 8px;
    }
  
    .product-tab {
      padding: 0.5rem 1rem;
      font-size: 0.85rem;
    }
  
    .float-actions {
      bottom: 20px;
      right: 20px;
    }
  
    .float-btn {
      width: 52px;
      height: 52px;
    }
  
    .clients-grid,
    .stories-grid {
      grid-template-columns: minmax(0, 1fr);
    }
  
    .availability-map-inner {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
  
    .availability-map-visual::before {
      font-size: 0.85rem;
      top: 20px;
      left: 24px;
    }
  
    .availability-map-panel {
      padding: 24px 20px;
    }
  
    .availability-list {
      max-height: 300px;
    }
  
    .availability-marker {
      width: 24px;
      height: 24px;
    }
  
    .availability-marker::before {
      width: 20px;
      height: 20px;
    }
  
    .availability-marker::after {
      width: 9px;
      height: 9px;
    }
  }
  
  /* Large Phones (max-width: 599px) */
  @media (max-width: 599px) {
    .section {
      padding: 64px 0;
    }
  
    .hero {
      padding-top: 32px;
      padding-bottom: 56px;
    }
  
    .hero-visual {
      padding: 0 10px;
    }
  
    .hero-floating-card {
      max-width: 150px;
      font-size: 0.7rem;
      padding: 8px 10px;
    }
  
    .hero-floating-top,
    .hero-floating-bottom {
      position: static;
      margin: 12px auto;
      max-width: 100%;
      animation: none;
    }
  
    .hero-actions {
      width: 100%;
    }
  
    .hero-actions .btn {
      flex: 1 1 100%;
      width: 100%;
    }
  
    .product-grid {
      grid-template-columns: 1fr;
    }
  
    .product-media img {
      height: 200px;
      object-fit: contain;
      background: #ffffff;
      padding: 10px;
    }
  
    .material-grid {
      grid-template-columns: 1fr;
    }
  
    .stats-grid {
      grid-template-columns: 1fr;
    }
  
    .form-footer {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .form-note {
      max-width: 100%;
    }
  
    .hero-card-bottom {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .footer-inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
    }
  
    .footer-links {
      width: 100%;
      flex-direction: column;
      gap: 8px;
    }
  
    .footer-social {
      width: 100%;
      justify-content: flex-start;
    }
  
    .product-tabs {
      justify-content: flex-start;
    }
  
    .location-grid {
      gap: 16px;
    }
  
    .availability-map {
      margin-top: 36px;
    }
  
   
  
    .availability-map-panel {
      padding: 20px 18px;
      gap: 20px;
    }
  
    .availability-selected {
      padding: 16px 14px;
    }
  
    .availability-list {
      margin-top: 16px;
      gap: 6px;
    }
  
    .availability-list-item {
      padding: 12px 14px;
    }
  
    .availability-legend {
      padding: 16px;
      gap: 10px;
    }
  }
  
  /* Small Phones (max-width: 479px) */
  @media (max-width: 479px) {
    .container {
      padding: 0 16px;
    }
  
    .section {
      padding: 56px 0;
    }
  
    .logo {
      gap: 6px;
    }
  
    .logo-img {
      width: 32px;
      height: 32px;
    }
  
    .logo-subtitle {
      display: none;
    }
  
    .lang-switcher {
      padding: 3px 6px;
      gap: 3px;
    }
  
    .lang-btn {
      font-size: 0.7rem;
      padding: 2px 4px;
      min-width: 24px;
    }
  
    .hero-meta {
      width: 100%;
    }
  
    .meta-item {
      width: 100%;
      min-width: 100%;
    }
  
    .hero-card {
      padding: 16px 16px 14px;
    }
  
    .hero-card-bottom {
      grid-template-columns: 1fr;
      gap: 8px;
    }
  
    .about-card,
    .material-card,
    .product-body {
      padding: 14px 14px 12px;
    }
  
    .contact-form-wrapper {
      padding: 16px 16px 14px;
    }
  
    .float-actions {
      bottom: 16px;
      right: 16px;
      gap: 8px;
    }
  
    .float-btn {
      width: 48px;
      height: 48px;
    }
  
    .float-btn svg {
      width: 20px;
      height: 20px;
    }
  
    .availability-map-visual::before {
      font-size: 0.8rem;
      top: 16px;
      left: 20px;
    }
  
    .availability-marker {
      width: 22px;
      height: 22px;
    }
  
    .availability-marker::before {
      width: 18px;
      height: 18px;
    }
  }
  
  /* Extra Small Phones (max-width: 374px) */
  @media (max-width: 374px) {
    .container {
      padding: 0 14px;
    }
  
    .section {
      padding: 48px 0;
    }
  
    .hero {
      padding-top: 24px;
      padding-bottom: 48px;
    }
  
    .btn {
      width: 100%;
      padding: 0.6rem 1.2rem;
      font-size: 0.85rem;
    }
  
    .nav-toggle {
      width: 36px;
      height: 36px;
      min-width: 36px;
    }
  
    .nav-links {
      min-width: 160px;
      right: 14px;
    }
  
    .logo-img {
      width: 28px;
      height: 28px;
    }
  
    .hero-card {
      padding: 14px 14px 12px;
    }
  
    .hero-roll-stack {
      width: 70px;
      height: 85px;
      min-width: 70px;
    }
  
    .hero-packshot {
      gap: 12px;
    }
  
    .product-media img {
      height: 180px;
    }
  
    .product-tab {
      font-size: 0.8rem;
      padding: 0.45rem 0.9rem;
    }
  }
  
  /* Landscape Optimizations */
  @media (max-height: 600px) and (orientation: landscape) {
    .section {
      padding: 48px 0;
    }
  
    .hero {
      padding-top: 24px;
      padding-bottom: 40px;
    }
  
    .hero-inner {
      gap: 24px;
    }
  
    .hero-visual {
      align-self: center;
      min-height: auto;
    }
  
    .hero-card {
      max-width: 280px;
    }
  
    .hero-roll-stack {
      width: 70px;
      height: 85px;
    }
  
    .hero-floating-card {
      display: none;
    }
  }
  
  
  /* ============================================
     ACCESSIBILITY & SPECIAL MODES
     ============================================ */
  
  /* Touch Device Optimizations */
  @media (hover: none) and (pointer: coarse) {
    .btn {
      min-height: 48px;
      padding: 0.75rem 1.7rem;
    }
  
    .nav-links a,
    .footer-links a {
      min-height: 48px;
      padding-block: 8px;
    }
  
    .nav-toggle {
      width: 44px;
      height: 44px;
      min-width: 44px;
    }
  
    .lang-btn {
      min-height: 36px;
    }
  
    .product-card:hover {
      transform: none;
      box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
    }
  
    .btn-primary:hover,
    .btn-ghost:hover {
      transform: none;
    }
  
    .product-card:active {
      transform: scale(0.98);
    }
  
    .btn:active {
      transform: scale(0.97);
    }
  
    .availability-marker {
      width: 26px;
      height: 26px;
    }
  
    .availability-marker::before {
      width: 22px;
      height: 22px;
    }
  
    .availability-marker::after {
      width: 10px;
      height: 10px;
    }
  
    .availability-marker:active {
      transform: scale(1.3);
    }
  
    .availability-list-item:active {
      transform: translateX(4px);
    }
  }
  
  /* Print Styles */
  @media print {
    .header,
    .nav,
    .float-actions,
    .hero-floating-card,
    .contact-form-wrapper,
    .footer {
      display: none;
    }
  
    .section {
      page-break-inside: avoid;
    }
  
    .product-card,
    .material-card,
    .about-card {
      page-break-inside: avoid;
    }
  
    body {
      background: white;
    }
  
    .hero-bg-gradient,
    .hero-pattern {
      display: none;
    }
  }
  
  /* Reduced Motion */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  
    .availability-marker,
    .availability-list-item,
    .availability-selected,
    .availability-tooltip {
      transition-duration: 0.01ms;
    }
  }
  
  /* High Contrast Mode */
  @media (prefers-contrast: high) {
    :root {
      --border-subtle: rgba(16, 24, 37, 0.2);
    }
  
    .btn {
      border-width: 2px;
    }
  
    .product-card,
    .material-card,
    .about-card {
      border-width: 2px;
    }
  }