/* ========== RESET ========== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }

    /* ========== CSS VARIABLES ========== */
    :root {
      --navy: #0a1628;
      --navy-light: #132038;
      --blue: #1e6dd4;
      --blue-light: #3a8ef5;
      --blue-pale: #e8f1fd;
      --sky: #4fc3f7;
      --white: #ffffff;
      --gray-50: #f8f9fc;
      --gray-100: #eef1f6;
      --gray-200: #d8dde6;
      --gray-400: #8e99ab;
      --gray-600: #5a6577;
      --gray-800: #2d3748;
      --accent: #ff6b35;
      --accent-warm: #ff8c5a;

      --font-ko: 'Noto Sans KR', sans-serif;
      --font-en: 'Plus Jakarta Sans', sans-serif;

      --shadow-sm: 0 1px 3px rgba(10,22,40,0.06);
      --shadow-md: 0 4px 20px rgba(10,22,40,0.08);
      --shadow-lg: 0 12px 40px rgba(10,22,40,0.12);
      --shadow-xl: 0 20px 60px rgba(10,22,40,0.16);

      --radius: 12px;
      --radius-lg: 20px;

      --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body {
      font-family: var(--font-ko);
      font-size: 15px;
      color: var(--gray-800);
      background: var(--white);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* ============ HEADER / NAV ============ */
    .header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0,0,0,0.05);
      transition: var(--transition);
    }
    .header.scrolled {
      background: rgba(255,255,255,0.97);
      box-shadow: var(--shadow-sm);
    }
    .nav-container {
      max-width: 1320px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 40px; height: 72px;
    }
    .logo {
      display: flex; align-items: center;
      text-decoration: none;
    }
    .logo-img {
      height: 68px; width: auto;
      object-fit: contain;
    }
    .nav-menu { display: flex; gap: 4px; list-style: none; }
    .nav-item { position: relative; }
    .nav-link {
      display: flex; align-items: center; gap: 4px;
      padding: 8px 18px; font-size: 14.5px; font-weight: 500;
      color: var(--gray-800); text-decoration: none;
      border-radius: 8px; transition: var(--transition);
      cursor: pointer;
    }
    .nav-link:hover { background: var(--gray-50); color: var(--blue); }
    .nav-link.active { color: var(--blue); font-weight: 700; }
    .nav-link .arrow { font-size: 10px; transition: transform 0.2s; opacity: 0.5; }
    .nav-item:hover .arrow { transform: rotate(180deg); }
    .nav-right { display: flex; align-items: center; gap: 12px; }
    .lang-switch {
      display: flex; align-items: center;
      background: var(--gray-50); border-radius: 8px;
      overflow: hidden; border: 1px solid var(--gray-100);
    }
    .lang-btn {
      padding: 6px 12px; font-size: 12px; font-weight: 600;
      background: none; border: none; cursor: pointer;
      color: var(--gray-400); transition: var(--transition);
      font-family: var(--font-en); text-decoration: none; display: block;
    }
    .lang-btn.active { background: var(--white); color: var(--navy); box-shadow: var(--shadow-sm); }
    .btn-track {
      padding: 8px 18px; font-size: 13.5px; font-weight: 600;
      background: none; border: 1.5px solid var(--gray-200);
      border-radius: 8px; cursor: pointer;
      color: var(--gray-800); transition: var(--transition);
      font-family: var(--font-ko); text-decoration: none;
    }
    .btn-track:hover { border-color: var(--blue); color: var(--blue); }
    .btn-quote {
      padding: 8px 22px; font-size: 13.5px; font-weight: 600;
      background: var(--blue); border: none; border-radius: 8px;
      color: var(--white); cursor: pointer; transition: var(--transition);
      font-family: var(--font-ko); text-decoration: none;
    }
    .btn-quote:hover { background: var(--blue-light); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(30,109,212,0.3); }

    /* Mega Menu */
    .mega-menu {
      position: absolute; top: calc(100% + 8px);
      left: 50%; transform: translateX(-50%);
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-xl);
      border: 1px solid var(--gray-100);
      padding: 28px 32px;
      opacity: 0; visibility: hidden;
      transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
      transform: translateX(-50%) translateY(8px);
      min-width: 280px;
    }
    .nav-item:hover .mega-menu {
      opacity: 1; visibility: visible;
      transform: translateX(-50%) translateY(0);
    }
    .mega-menu-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
    }
    .mega-menu-link {
      display: flex; flex-direction: column; gap: 2px;
      padding: 10px 12px; border-radius: 10px;
      text-decoration: none; transition: var(--transition);
    }
    .mega-menu-link:hover { background: var(--blue-pale); }
    .mega-menu-link strong { font-size: 14px; font-weight: 600; color: var(--gray-800); }
    .mega-menu-link span { font-size: 12.5px; color: var(--gray-400); }

    /* Mobile Menu Button */
    .mobile-menu-btn {
      display: none;
      flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 8px;
    }
    .mobile-menu-btn span {
      display: block; width: 22px; height: 2px;
      background: var(--navy); border-radius: 2px;
      transition: var(--transition);
    }

    /* ========== SECTION COMMON ========== */
    .section-label {
      font-family: var(--font-en);
      font-size: 12px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 2px;
      color: var(--blue); margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(28px, 3.5vw, 40px);
      font-weight: 800; color: var(--navy);
      margin-bottom: 16px; letter-spacing: -0.5px;
      word-break: keep-all; line-height: 1.3;
    }
    .section-desc {
      font-size: 16px; color: var(--gray-600);
      max-width: 560px; line-height: 1.7;
      margin-bottom: 56px; word-break: keep-all;
    }

    /* ========== PAGE HERO ========== */
    .page-hero {
      position: relative;
      padding: 160px 40px 80px;
      background: var(--navy);
      overflow: hidden;
    }
    .page-hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse at 70% 30%, rgba(30,109,212,0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 70%, rgba(79,195,247,0.15) 0%, transparent 50%);
    }
    /* 장식 요소 */
    .page-hero-bg::before {
      content: '';
      position: absolute;
      width: 500px; height: 500px;
      border: 1px solid rgba(255,255,255,0.03);
      border-radius: 50%;
      top: -100px; right: -100px;
    }
    .page-hero-bg::after {
      content: '';
      position: absolute;
      width: 300px; height: 300px;
      border: 1px solid rgba(255,255,255,0.04);
      border-radius: 50%;
      bottom: -50px; left: 10%;
    }
    .page-hero-content {
      position: relative; z-index: 1;
      max-width: 1320px; margin: 0 auto;
    }
    .page-hero .section-label { color: var(--sky); }
    .page-hero-title {
      font-size: clamp(32px, 4.5vw, 52px);
      font-weight: 800; color: var(--white);
      letter-spacing: -1px; margin-bottom: 12px;
      line-height: 1.2;
    }
    .page-hero-desc {
      font-size: 17px; color: rgba(255,255,255,0.5);
      max-width: 480px; line-height: 1.7;
    }

    /* ========== BUTTONS ========== */
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 32px; font-size: 15px; font-weight: 700;
      background: var(--blue); color: var(--white);
      border: none; border-radius: 10px;
      cursor: pointer; transition: var(--transition);
      font-family: var(--font-ko); text-decoration: none;
    }
    .btn-primary:hover {
      background: var(--blue-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(30,109,212,0.4);
    }
    .btn-secondary {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 32px; font-size: 15px; font-weight: 600;
      background: none; color: var(--gray-800);
      border: 1.5px solid var(--gray-200); border-radius: 10px;
      cursor: pointer; transition: var(--transition);
      font-family: var(--font-ko); text-decoration: none;
    }
    .btn-secondary:hover { border-color: var(--blue); color: var(--blue); }

    /* ========== CARD ========== */
    .card {
      position: relative;
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      transition: var(--transition);
      overflow: hidden;
    }
    .card:hover {
      border-color: rgba(30,109,212,0.2);
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }
    .card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 3px; background: var(--blue);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .card:hover::before { transform: scaleX(1); }

    /* ========== VISION SECTION ========== */
    .vision-section {
      padding: 160px 40px 120px;
      background: var(--white);
    }
    .vision-inner {
      max-width: 1320px; margin: 0 auto;
    }
    .vision-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .vision-content .section-desc {
      margin-bottom: 32px;
    }
    .vision-quote {
      position: relative;
      padding: 28px 32px;
      background: var(--gray-50);
      border-left: 3px solid var(--blue);
      border-radius: 0 var(--radius) var(--radius) 0;
      margin-top: 32px;
    }
    .vision-quote p {
      font-size: 15px; line-height: 1.8;
      color: var(--gray-600); font-style: italic;
    }
    .vision-quote .quote-author {
      margin-top: 16px;
      font-style: normal; font-weight: 600;
      font-size: 14px; color: var(--navy);
    }
    .vision-image {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
    }
    .vision-image-placeholder {
      width: 100%; height: 100%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 16px;
    }
    .vision-image-placeholder svg {
      width: 64px; height: 64px;
      opacity: 0.2; color: var(--white);
    }
    .vision-image-placeholder span {
      font-size: 13px; color: rgba(255,255,255,0.2);
      font-family: var(--font-en); letter-spacing: 1px;
    }

    .vision-image-caption {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 16px 20px;
      background: linear-gradient(to top, rgba(10,22,40,0.7) 0%, transparent 100%);
      font-size: 13px; color: rgba(255,255,255,0.65);
      line-height: 1.5;
    }

    /* ========== CORE VALUES ========== */
    .values-section {
      padding: 120px 40px;
      background: #fff;
    }
    .values-inner {
      max-width: 1320px; margin: 0 auto;
    }
    .values-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .values-header .section-desc {
      margin-left: auto; margin-right: auto;
    }
    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .value-card {
      text-align: center;
      padding: 48px 32px;
    }
    .value-icon {
      width: 64px; height: 64px;
      margin: 0 auto 24px;
      background: var(--blue-pale);
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
    }
    .value-icon svg {
      width: 28px; height: 28px; color: var(--blue);
    }
    .value-card h3 {
      font-size: 18px; font-weight: 700;
      color: var(--navy); margin-bottom: 12px;
    }
    .value-card p {
      font-size: 14.5px; color: var(--gray-600);
      line-height: 1.7;
    }

    /* ========== HISTORY TIMELINE (NEW) ========== */
    .htl-wrap {
      position: relative;
      width: 100%;
      overflow: hidden;
      height: 380px;
      mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    }
    .htl-track {
      display: flex;
      align-items: center;
      height: 100%;
      will-change: transform;
    }
    .htl-item {
      flex-shrink: 0;
      width: 200px;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      cursor: default;
    }
    .htl-item:nth-child(odd) .htl-content { order: 1; margin-bottom: 0; margin-top: 0; padding-bottom: 12px; }
    .htl-item:nth-child(odd) .htl-stem-top { order: 2; }
    .htl-item:nth-child(odd) .htl-dot { order: 3; }
    .htl-item:nth-child(odd) .htl-stem-bot { order: 4; visibility: hidden; }
    .htl-item:nth-child(even) .htl-content { order: 4; padding-top: 12px; }
    .htl-item:nth-child(even) .htl-stem-top { order: 1; visibility: hidden; }
    .htl-item:nth-child(even) .htl-dot { order: 2; }
    .htl-item:nth-child(even) .htl-stem-bot { order: 3; }
    .htl-line {
      position: absolute;
      top: 50%; left: 0; right: 0;
      height: 2px; background: var(--gray-200);
      z-index: 0;
    }
    .htl-stem-top, .htl-stem-bot {
      width: 2px; height: 36px;
      background: var(--gray-200);
      flex-shrink: 0; z-index: 1;
    }
    .htl-dot {
      width: 14px; height: 14px;
      background: var(--white);
      border: 3px solid var(--navy);
      border-radius: 50%;
      z-index: 2; flex-shrink: 0;
      transition: 0.25s;
    }
    .htl-item:hover .htl-dot { background: var(--navy); box-shadow: 0 0 0 5px rgba(27,54,93,0.12); }
    .htl-content {
      max-width: 180px;
      text-align: center;
      padding: 4px;
    }
    .htl-yr { font-family: var(--font-en); font-size: 12px; font-weight: 800; color: var(--blue); margin-bottom: 3px; }
    .htl-tt { font-size: 12px; font-weight: 700; color: var(--navy); line-height: 1.45; margin-bottom: 3px; }
    .htl-dc { font-size: 11px; color: var(--gray-600); line-height: 1.5; }
      padding: 120px 40px 80px;
      background: var(--white);
      overflow: hidden;
    }
    .history-inner {
      max-width: 1320px; margin: 0 auto;
    }
    .history-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .history-header .section-desc {
      margin-left: auto; margin-right: auto;
    }

    /* ========== NETWORK / PARTNERS ========== */
    .network-section {
      padding: 120px 40px;
      background: var(--navy);
      overflow: hidden;
    }
    .network-inner {
      max-width: 1320px; margin: 0 auto;
    }
    .network-header {
      text-align: center;
      margin-bottom: 72px;
    }
    .network-header .section-label { color: var(--sky); }
    .network-header .section-title { color: var(--white); }
    .network-header .section-desc {
      color: rgba(255,255,255,0.5);
      margin-left: auto; margin-right: auto;
    }

    .network-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-bottom: 72px;
    }
    .stat-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      text-align: center;
      transition: var(--transition);
    }
    .stat-card:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.15);
      transform: translateY(-4px);
    }
    .stat-number {
      font-family: var(--font-en);
      font-size: 44px; font-weight: 800;
      color: var(--white);
      margin-bottom: 4px;
      line-height: 1;
    }
    .stat-number span {
      font-size: 24px; color: var(--sky);
    }
    .stat-label {
      font-size: 14px; color: rgba(255,255,255,0.45);
      font-weight: 500;
    }

    .partner-airlines {
      text-align: center;
    }
    .partner-label {
      font-family: var(--font-en);
      font-size: 11px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 2px;
      color: rgba(255,255,255,0.25);
      margin-bottom: 32px;
    }
    .airline-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
    }
    .airline-tag {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 10px 20px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 10px;
      font-family: var(--font-en);
      font-size: 13px; font-weight: 600;
      color: rgba(255,255,255,0.6);
      transition: var(--transition);
    }
    .airline-tag:hover {
      background: rgba(255,255,255,0.1);
      color: var(--white);
    }

    /* ========== LOCATION / MAP ========== */
    .location-section {
      padding: 120px 40px;
      background: var(--white);
    }
    .location-inner {
      max-width: 1320px; margin: 0 auto;
    }
    .location-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .location-header .section-desc {
      margin-left: auto; margin-right: auto;
    }
    .location-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
    .location-card {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: var(--transition);
    }
    .location-card:hover {
      border-color: rgba(30,109,212,0.2);
      box-shadow: var(--shadow-lg);
    }
    .location-card-map {
      width: 100%; height: 280px;
      border: none; display: block;
    }
    .location-card-body {
      padding: 28px 32px;
    }
    .location-card-title {
      font-size: 20px; font-weight: 800;
      color: var(--navy); margin-bottom: 20px;
    }
    .location-card-row {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 14px 0;
      border-top: 1px solid var(--gray-100);
    }
    .location-card-num {
      font-family: var(--font-en);
      font-size: 13px; font-weight: 800;
      color: var(--blue);
      flex-shrink: 0; width: 28px;
    }
    .location-card-label {
      font-size: 14px; font-weight: 700;
      color: var(--navy);
      flex-shrink: 0; width: 72px;
    }
    .location-card-value {
      font-size: 14px; color: var(--gray-600);
      line-height: 1.6;
    }

    /* ========== CTA SECTION ========== */
    .cta-section {
      padding: 100px 40px;
      background: linear-gradient(135deg, var(--blue) 0%, #1557a8 100%);
      text-align: center;
    }
    .cta-inner {
      max-width: 680px; margin: 0 auto;
    }
    .cta-section .section-label {
      color: rgba(255,255,255,0.6);
    }
    .cta-section .section-title {
      color: var(--white);
      margin-bottom: 20px;
    }
    .cta-section .section-desc {
      color: rgba(255,255,255,0.7);
      margin-left: auto; margin-right: auto;
      margin-bottom: 40px;
    }
    .cta-buttons {
      display: flex; gap: 16px;
      justify-content: center; flex-wrap: wrap;
    }
    .btn-cta-primary {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 16px 36px; font-size: 15px; font-weight: 700;
      background: var(--white); color: var(--blue);
      border: none; border-radius: 10px;
      cursor: pointer; transition: var(--transition);
      font-family: var(--font-ko); text-decoration: none;
    }
    .btn-cta-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    }
    .btn-cta-secondary {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 16px 36px; font-size: 15px; font-weight: 600;
      background: none; color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.35); border-radius: 10px;
      cursor: pointer; transition: var(--transition);
      font-family: var(--font-ko); text-decoration: none;
    }
    .btn-cta-secondary:hover {
      border-color: var(--white);
      background: rgba(255,255,255,0.1);
    }

    /* ========== FOOTER ========== */
    .footer {
      background: var(--navy);
      padding: 80px 40px 40px;
    }
    .footer-inner { max-width: 1320px; margin: 0 auto; }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
      gap: 40px; margin-bottom: 60px;
    }
    .footer-brand .footer-logo {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 20px;
    }
    .footer-logo-icon {
      width: 36px; height: 36px;
      background: linear-gradient(135deg, var(--blue) 0%, rgba(30,109,212,0.6) 100%);
      border-radius: 8px;
      position: relative; overflow: hidden;
    }
    .footer-logo-icon::after {
      content: ''; position: absolute;
      width: 18px; height: 2px; background: var(--white);
      transform: rotate(-30deg); top: 12px; left: 7px;
      box-shadow: 0 5px 0 var(--white), 0 10px 0 rgba(255,255,255,0.5);
    }
    .footer-logo-text {
      font-family: var(--font-en); font-weight: 800;
      font-size: 18px; color: var(--white);
    }
    .footer-logo-text span { color: var(--blue-light); }
    .footer-desc {
      font-size: 13.5px; color: rgba(255,255,255,0.35);
      line-height: 1.8;
    }
    .footer-col-title {
      font-family: var(--font-en);
      font-size: 12px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 1.5px;
      color: rgba(255,255,255,0.3); margin-bottom: 20px;
    }
    .footer-links {
      display: flex; flex-direction: column; gap: 12px;
    }
    .footer-links a {
      font-size: 14px; color: rgba(255,255,255,0.55);
      text-decoration: none; transition: var(--transition);
    }
    .footer-links a:hover { color: var(--white); }
    .footer-bottom {
      display: flex; justify-content: space-between;
      align-items: center;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .footer-copy {
      font-family: var(--font-en);
      font-size: 13px; color: rgba(255,255,255,0.25);
    }
    .footer-legal {
      display: flex; gap: 24px;
    }
    .footer-legal a {
      font-size: 13px; color: rgba(255,255,255,0.25);
      text-decoration: none; transition: var(--transition);
    }
    .footer-legal a:hover { color: rgba(255,255,255,0.5); }

    /* ========== SCROLL ANIMATIONS ========== */
    .fade-up {
      opacity: 0; transform: translateY(30px);
      transition: opacity 0.7s, transform 0.7s;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }
    .delay-4 { transition-delay: 0.4s; }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
      .vision-grid { grid-template-columns: 1fr; gap: 48px; }
      .values-grid { grid-template-columns: repeat(2, 1fr); }
      .network-stats { grid-template-columns: repeat(2, 1fr); }
      .location-cards { grid-template-columns: 1fr; gap: 24px; }
      .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
    }

    @media (max-width: 768px) {
      .nav-menu { display: none; }
      .nav-container { padding: 0 20px; }
      .mobile-menu-btn { display: flex; }
      .lang-switch, .btn-track { display: none; }
      section, .page-hero, .vision-section, .values-section,
      .history-section, .network-section, .location-section,
      .cta-section { padding-left: 20px; padding-right: 20px; }
      .page-hero { padding: 130px 20px 60px; }
      .vision-section { padding-top: 120px; }
      .values-section, .history-section,
      .network-section, .location-section { padding-top: 80px; padding-bottom: 80px; }
      .values-grid { grid-template-columns: 1fr; }
      .network-stats { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
      .cta-buttons { flex-direction: column; align-items: center; }
    }

    @media (max-width: 480px) {
      .network-stats { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
    }
  

