/* BASIC css start */
@font-face {
    font-family: 'Pretendard';
    src: url('https://www.megapass-skbroadband-powercomm.com/design/inter01/font/Pretendard-Thin.woff') format('woff');
    font-weight: 100;
}
@font-face {
    font-family: 'Pretendard';
    src: url('https://www.megapass-skbroadband-powercomm.com/design/inter01/font/Pretendard-ExtraLight.woff') format('woff');
    font-weight: 200;
}
@font-face {
    font-family: 'Pretendard';
    src: url('https://www.megapass-skbroadband-powercomm.com/design/inter01/font/Pretendard-Light.woff') format('woff');
    font-weight: 300;
}
@font-face {
    font-family: 'Pretendard';
    src: url('https://www.megapass-skbroadband-powercomm.com/design/inter01/font/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
}
@font-face {
    font-family: 'Pretendard';
    src: url('https://www.megapass-skbroadband-powercomm.com/design/inter01/font/Pretendard-Medium.woff') format('woff');
    font-weight: 500;
}
@font-face {
    font-family: 'Pretendard';
    src: url('https://www.megapass-skbroadband-powercomm.com/design/inter01/font/Pretendard-SemiBold.woff') format('woff');
    font-weight: 600;
}
@font-face {
    font-family: 'Pretendard';
    src: url('https://www.megapass-skbroadband-powercomm.com/design/inter01/font/Pretendard-Bold.woff') format('woff');
    font-weight: 700;
}
@font-face {
    font-family: 'Pretendard';
    src: url('https://www.megapass-skbroadband-powercomm.com/design/inter01/font/Pretendard-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    src: url('https://www.megapass-skbroadband-powercomm.com/design/inter01/font/Pretendard-Black.woff') format('woff');
    font-weight: 900;
    font-display: swap;
}	  
	  
    /* =========================================================
       1. RESET & BASE
       ========================================================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green-900: #00c2ff;
      --green-800: #0059a8;
      --green-700: #2f80ed;
      --green-50:  #90c9fc;
      --ivory:     #f6f4ee;
      --cream:     #fbfaf6;
      --ink:       #14201a;
      --muted:     #6b7368;
      --line:      #e6e3da;
      --accent:    #c8e3c1;

      --radius-lg: 28px;
      --radius-md: 18px;
      --radius-sm: 999px;

      --font-display: 'Pretendard'; serif;
      --font-body: 'Pretendard'; sans-serif;

      --container: 1240px;	
      --section-pad: clamp(64px, 9vw, 130px);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      color: var(--ink);
      background: var(--cream);
      line-height: 1.55;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    img { max-width: 100%; display: block; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    a { color: inherit; text-decoration: none; font-family: 'Pretendard'; }
    h2{color: var(--ink);}
    h3 {font-family : var(--font-body); color: var(--ink); line-height: 1.55; font-weight: bold;}
    h4 {font-family : var(--font-body); color: var(--ink); line-height: 1.55; font-weight: 600;}
    button span {visibility: visible; }
    ul { list-style: none; }

    .container {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 0px;
    }

    /* Display Type */
    .display {
      font-family: var(--font-display);
      font-weight: 400;
      font-style: normal;
      letter-spacing: -0.02em;
      line-height: 1.05;
    }

    /* Common Section Tag */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 500;
      color: var(--green-800);
      letter-spacing: 0.02em;
    }
    .eyebrow::before {
      content: "";
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--green-800);
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 15px 10px 15px;
      border-radius: var(--radius-sm);
      font-weight: 500;
      font-size: 15px;
      transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
      white-space: nowrap;
    }
    .btn .btn-icon {
      width: 30px; height: 30px;
      border-radius: 50%;
      display: grid; place-items: center;
      transition: transform .35s ease;
    }
    .btn:hover .btn-icon { transform: rotate(-45deg); }

    .btn-primary {
      background: var(--green-800);
      color: #fff;
    }
    .btn-primary .btn-icon { background: #fff; color: var(--green-800); }
    .btn-primary:hover { background: var(--green-900); transform: translateY(-2px); }

    .btn-light {
      background: #fff;
      color: var(--ink);
    }
    .btn-light .btn-icon { background: var(--green-800); color: #fff; }
    .btn-light:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.08); }

    .btn-text {
      background: transparent;
      color: #fff;
      padding-left: 12px;
    }

    /* =========================================================
       2. NAVBAR
       ========================================================= */
    .nav-wrap {
      position: fixed;
      width: 100%;
      top: 0; 
      z-index: 50;
      background: rgba(251, 250, 246, 0.85);
      backdrop-filter: saturate(140%) blur(14px);
      -webkit-backdrop-filter: saturate(140%) blur(14px);
      border-bottom: 1px solid transparent;
      transition: border-color .3s ease;
      transform: none !important;
    }
    .nav-wrap.scrolled { border-bottom-color: var(--line); }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-display);
      font-size: 24px;
      letter-spacing: -0.01em;
      color: var(--ink);
    }
	.logo img{width: 200px;}  
    .logo-mark {
      width: 38px; height: 38px;
      background: var(--green-800);
      border-radius: 10px;
      display: grid; place-items: center;
      color: #fff;
    }
    .logo-mark svg { width: 18px; height: 18px; }

    .nav-links {
      display: flex; gap: 38px;
      align-items: center;
    }
    .nav-links a {
      font-size: 15px;
      color: var(--ink);
      position: relative;
      padding: 6px 0;
      transition: color .2s;
	  font-weight: 500;	
    }
    .nav-links a::after {
      content: "";
      position: absolute;
      left: 50%; bottom: 0;
      width: 0; height: 1px;
      background: var(--green-800);
      transition: width .3s ease, left .3s ease;
    }
    .nav-links a:hover { color: var(--green-800); }
    .nav-links a:hover::after { width: 100%; left: 0; }

    .nav-cta { display: inline-flex; }

    .menu-toggle {
      display: none;
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--green-800);
      color: #fff;
      align-items: center; justify-content: center;
    }
    .menu-toggle svg { width: 20px; height: 20px; }

    .mobile-menu {
      position: fixed;
      inset: 0;
      background: var(--green-800);
      z-index: 100;
      padding: 100px 32px 40px;
      transform: translateX(100%);
      transition: transform .45s cubic-bezier(.7,0,.3,1);
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .mobile-menu.open { transform: translateX(0); }
    .mobile-menu a {
      font-family: var(--font-display);
      font-size: 18px;
      color: #fff;
      padding: 12px 15px;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }
    .mobile-menu .mobile-cta {
      margin-top: auto;
      align-self: flex-start;
    }
    .mobile-close {
      position: absolute;
      top: 24px; right: 24px;
      width: 44px; height: 44px;
      border-radius: 50%;
      background: rgba(255,255,255,.1);
      color: #fff;
      display: grid; place-items: center;
    }

    /* =========================================================
       3. HERO
       ========================================================= */
    .hero-section { padding: 0px 0 0; margin-top: 87px;}
    .hero {
      background: var(--green-800);
      border-radius: var(--radius-lg);
      color: #fff;
      padding: clamp(40px, 6vw, 72px);
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 40px;
      align-items: center;
      position: relative;
      overflow: hidden;
      min-height: 580px;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 80% 20%, rgba(255,255,255,.05), transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(200,227,193,.08), transparent 50%);
      pointer-events: none;
    }
    .hero-content { position: relative; z-index: 2; padding-bottom: 72px;}
    .rating {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 28px;
      font-size: 14px;
      color: rgba(255,255,255,.8);
    }
    .stars { display: inline-flex; gap: 2px; color: #fff; }
    .stars svg { width: 16px; height: 16px; }

    .hero h1 {
      font-size: clamp(36px, 6vw, 72px);
      font-weight: 600;
      margin-bottom: 28px;
      color: #fff;
    }
    .hero h1 em {
      font-style: italic;
      font-weight: 300;
    }
    .hero p {
      font-size: 18px;
      max-width: 480px;
      color: rgba(255,255,255,.72);
      margin-bottom: 40px;
    }
    .hero-cta { display: inline-flex; gap: 18px; align-items: center; }

    .hero-image {
      position: relative;
      aspect-ratio: 4/5;
      border-radius: var(--radius-md);
      overflow: hidden;
      z-index: 2;
    }
    .hero-image img {
      width: 100%; height: 100%;
      object-fit: cover;
    }

    /* Partner logos */
    .partners {
      padding: 70px 0 30px;
      text-align: center;
    }
    .partners-label {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 32px;
    }
    .partners-marquee-outer {
      max-width: 1240px;
      margin: 0 auto;
      overflow: hidden;
      -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 12%,
        #000 88%,
        transparent 100%
      );
      mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 12%,
        #000 88%,
        transparent 100%
      );
    }
    /* wrap = 3세트를 가로로 이어붙인 실제 스크롤 대상 */
    .partners-marquee-wrap {
      display: flex;
      width: max-content;
      animation: partners-scroll 22s linear infinite;
      opacity: .6;
    }
    .partners-marquee-wrap:hover { animation-play-state: paused; }
    /* 3세트이므로 한 세트만큼(-33.333%) 이동 후 원점으로 리셋 */
    @keyframes partners-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-33.333%); }
    }
    /* 각 세트(track) = 로고들을 가로로 나열 */
    .partners-track {
      display: flex;
      align-items: center;
      gap: 72px;
      padding: 0 36px;
      flex-shrink: 0;
    }
    .partner-logo {
      font-family: var(--font-display);
      font-size: 22px;
      letter-spacing: -0.02em;
      color: var(--ink);
      display: inline-flex; align-items: center; gap: 8px;
      flex-shrink: 0;
    }
    .partner-logo .dot {
      width: 14px; height: 14px;
      background: var(--ink); border-radius: 50%;
    }
    .partner-logo .square { width: 14px; height: 14px; background: var(--ink); }	  

    /* =========================================================
       4. WHY US (compare table)
       ========================================================= */
    .section { padding: var(--section-pad) 0; }

    .section-head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 60px;
    }
    .section-head h2 {
      font-size: clamp(34px, 5vw, 60px);
      margin-top: 18px;
	  font-weight: 600;	
    }
    .section-head h2 em { font-style: italic; font-weight: 300; }

    .compare {
      position: relative;
      max-width: 1080px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--line);
      background:
        linear-gradient(180deg, #fff 0%, var(--cream) 100%);
    }
    .compare-card {
      padding: clamp(32px, 4vw, 56px);
    }
    .compare-card.right {
      background: radial-gradient(circle at 100% 0%, rgba(193,216,227,.4), transparent 60%),
                  linear-gradient(180deg, #fff 0%, #eef3f7 100%);
      box-shadow: inset 0 0 0 1px rgba(31,52,69,.08);
    }
    .compare-title {
      font-family: var(--font-display);
      font-size: 24px;
      margin-bottom: 32px;
    }
    .compare-list { display: flex; flex-direction: column; gap: 24px; }
    .compare-item {
      display: grid;
      grid-template-columns: 24px 1fr;
      gap: 14px;
    }
    .check-icon {
      width: 22px; height: 22px;
      border-radius: 50%;
      display: grid; place-items: center;
      flex-shrink: 0;
      margin-top: 3px;
    }
    .check-icon.gray {
      background: transparent;
      color: var(--muted);
      border: 1.5px solid var(--line);
    }
    .check-icon.green {
      background: var(--green-800);
      color: #fff;
    }
    .check-icon svg { width: 12px; height: 12px; }

    .compare-item h4 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 6px;
    }
    .compare-item p {
      font-size: 14.5px;
      color: var(--muted);
      line-height: 1.55;
    }

    /* =========================================================
       5. SERVICES SLIDER
       ========================================================= */
    .services { background: var(--cream); }
    .slider-stage {
      position: relative;
      max-width: 1240px;
      margin: 0 auto;
      overflow: hidden;
    }
    .slider-track {
      display: flex;
      gap: 24px;
      transition: transform .6s cubic-bezier(.65,0,.25,1);
      align-items: stretch;
      padding: 20px 0 40px;
    }
    .slide {
      flex: 0 0 calc(33.333% - 16px);
      aspect-ratio: 4/3;
      border-radius: var(--radius-md);
      position: relative;
      overflow: hidden;
      transition: transform .6s ease, opacity .6s ease;
      transform: scale(.92);
      opacity: .65;
      filter: blur(0.5px);
    }
    .slide.active {
      transform: scale(1.02);
      opacity: 1;
      filter: none;
      z-index: 2;
      box-shadow: 0 10px 20px 0px rgba(20,32,26,.35);
    }
    .slide img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.78) 100%);
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      color: #fff;
    }
    .slide-overlay h3 {
      font-family: var(--font-display);
      font-size: 26px;
      font-weight: 500;
      margin-bottom: 6px;
      color:#fff;
    }
    .slide-overlay p {
      font-size: 14px;
      color: rgba(255,255,255,.85);
      max-width: 320px;
    }

    .slider-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
      display: flex;
      justify-content: space-between;
      pointer-events: none;
      padding: 0 25px;
    }
    .slider-btn {
      width: 50px; height: 50px;
      border-radius: 50%;
      background: var(--green-800);
      color: #fff;
      display: grid; place-items: center;
      pointer-events: auto;
      transition: transform .25s ease, background .25s ease;
      box-shadow: 0 6px 18px rgba(0,0,0,.18);
    }
    .slider-btn:hover { background: var(--green-900); transform: scale(1.06); }
    .slider-btn svg { width: 18px; height: 18px; }

    /* Testimonial */
    .testimonial {
      max-width: 760px;
      margin: 80px auto 0;
      text-align: center;
    }
    .testimonial .rating { color: var(--ink); margin-bottom: 28px; justify-content: center; display: flex; }
    .testimonial .stars { color: var(--ink); }
    .testimonial blockquote {
      font-family: var(--font-display);
      font-size: clamp(28px, 3.5vw, 44px);
      line-height: 1.2;
      margin-bottom: 36px;
      letter-spacing: -0.01em;
    }
    .testimonial-author {
      display: inline-flex;
      align-items: center;
      gap: 14px;
    }
    .testimonial-avatar {
      width: 50px; height: 50px;
      border-radius: 50%;
      overflow: hidden;
      background: var(--green-50);
    }
    .testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .testimonial-name {
      text-align: left;
    }
    .testimonial-name strong { display: block; font-weight: 600; font-size: 15px; }
    .testimonial-tags {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      background: var(--green-50);
      padding: 4px 12px;
      border-radius: 999px;
      font-size: 12px;
      color: var(--green-800);
      margin-top: 4px;
    }
    .testimonial-tags::before {
      content: ""; width: 5px; height: 5px;
      background: var(--green-800); border-radius: 50%;
    }

    /* =========================================================
       6. FEATURES (icons grid)
       ========================================================= */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(28px, 4vw, 56px);
      max-width: 1080px;
      margin: 0 auto;
    }
    .feature {
      text-align: center;
      padding: 16px;
      transition: transform .3s ease;
    }
    .feature:hover { transform: translateY(-6px); }
    .feature-icon {
      width: 56px; height: 56px;
      background: var(--green-800);
      border-radius: 14px;
      display: grid; place-items: center;
      color: #fff;
      margin: 0 auto 22px;
      box-shadow: 0 10px 24px -8px rgba(31,52,69,.45);
    }
    .feature-icon svg { width: 24px; height: 24px; }
    .feature h3 {
      font-size: 19px;
      font-weight: 600;
      margin-bottom: 10px;
      font-family: 'Pretendard';
    }
    .feature p {
      color: var(--muted);
      font-size: 15px;
      max-width: 260px;
      margin: 0 auto;
    }

    /* =========================================================
       7. PRICING
       ========================================================= */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      max-width: 980px;
      margin: 0 auto;
    }
    .price-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 36px;
      transition: transform .35s ease, box-shadow .35s ease;
    }
    .price-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px -20px rgba(20,32,26,.18);
    }
    .price-card.popular {
      background: linear-gradient(180deg, #f0f7ee 0%, #fff 100%);
      border-color: rgba(31,69,56,.18);
      position: relative;
    }
    .price-head {
      display: flex; align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
    }
    .price-head h3 {
      font-family: var(--font-display);
      font-size: 26px;
      font-weight: 500;
    }
    .badge-popular {
      background: var(--green-800);
      color: #fff;
      font-size: 12px;
      padding: 5px 12px;
      border-radius: 999px;
      display: inline-flex; align-items: center; gap: 5px;
    }
    .price-card p.desc {
      color: var(--muted);
      font-size: 15px;
      margin-bottom: 28px;
      min-height: 50px;
    }
    .price {
      display: flex; align-items: baseline;
      gap: 6px;
      margin-bottom: 28px;
    }
    .price .amount {
      font-family: var(--font-display);
      font-size: 56px;
      letter-spacing: -0.02em;
    }
    .price .period {
      color: var(--muted);
      font-size: 15px;
    }
    .price-btn {
      width: 100%;
      padding: 14px;
      border-radius: 999px;
      border: 1px solid var(--green-800);
      background: transparent;
      color: var(--green-800);
      font-weight: 500;
      transition: all .25s ease;
      margin-bottom: 28px;
    }
    .price-btn:hover { background: var(--green-800); color: #fff; }
    .price-card.popular .price-btn {
      background: var(--green-800);
      color: #fff;
    }
    .price-card.popular .price-btn:hover { background: var(--green-900); border-color: var(--green-900); }
    .price-features {
      display: flex; flex-direction: column;
      gap: 12px;
    }
    .price-features li {
      display: flex; align-items: center;
      gap: 10px;
      font-size: 14.5px;
      color: var(--ink);
    }
    .price-features li svg {
      width: 16px; height: 16px;
      color: var(--green-800);
      flex-shrink: 0;
    }

    /* =========================================================
       8. HOW IT WORKS - timeline
       ========================================================= */
    .how-cta { text-align: center; margin-bottom: 70px; }
    .timeline {
      position: relative;
      max-width: 1080px;
      margin: 0 auto;
    }
    .timeline::before {
      content: "";
      position: absolute;
      left: 50%; top: 60px; bottom: 60px;
      width: 1px;
      background: var(--line);
      border-left: 1px dashed var(--line);
      transform: translateX(-50%);
    }
    .step {
      display: grid;
      grid-template-columns: 1fr 60px 1fr;
      gap: 32px;
      align-items: center;
      margin-bottom: 60px;
      position: relative;
    }
    .step:last-child { margin-bottom: 0; }
    .step-number {
      width: 50px; height: 50px;
      background: var(--green-800);
      color: #fff;
      border-radius: 50%;
      display: grid; place-items: center;
      font-size: 13px;
      font-weight: 600;
      grid-column: 2;
      justify-self: center;
      z-index: 2;
    }
    .step-image {
      aspect-ratio: 4/3;
      border-radius: var(--radius-md);
      overflow: hidden;
    }
    .step-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
    .step:hover .step-image img { transform: scale(1.04); }
    .step-text { padding: 12px 0; }
    .step-text h3 {
      font-family: var(--font-display);
      font-size: 30px;
      font-weight: 500;
      margin-bottom: 14px;
    }
    .step-text p {
      color: var(--muted);
      font-size: 15.5px;
      margin-bottom: 18px;
      max-width: 420px;
	  line-height: 32px;	
    }
	.step-text font{color: #141a20; font-weight:500;}  
    .discover-link {
      display: inline-flex;
      align-items: center; gap: 8px;
      color: var(--ink);
      font-weight: 500;
      font-size: 15px;
      transition: gap .25s ease;
    }
    .discover-link:hover { gap: 12px; }

    .step.right .step-image { grid-column: 1; }
    .step.right .step-text { grid-column: 3; }
    .step.left .step-text { grid-column: 1; text-align: right; }
    .step.left .step-text p { margin-left: auto; }
    .step.left .step-image { grid-column: 3; }

    /* =========================================================
       9. IMPACT — floating tags
       ========================================================= */
    .impact { text-align: center; }
    .impact-stage {
      position: relative;
      max-width: 1080px;
      margin: 60px auto 0;
      height: 600px;
    }
    .impact-portrait {
      position: absolute;
      left: 50%; top: 50%;
      transform: translate(-50%, -50%);
      width: 380px;
      height: 480px;
      border-radius: var(--radius-md);
      overflow: hidden;
      z-index: 2;
    }
    .impact-portrait img { width: 100%; height: 100%; object-fit: cover; }
    .stat-tag {
      position: absolute;
      background: #fff;
      padding: 15px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      box-shadow: 0 12px 30px -10px rgba(20,32,26,.18);
      font-size: 16px;
      animation: float 4s ease-in-out infinite;
      z-index: 3;
    }
    .stat-tag .stat-num {
      background: var(--green-800);
      color: #fff;
      padding: 6px 14px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 16px;
    }
    .stat-tag .stat-label { color: var(--ink); font-weight: 500; padding-right: 6px; }
    .stat-tag.line::after {
      content: "";
      position: absolute;
      width: 90px;
      height: 1px;
      background: var(--line);
      top: 50%;
    }
    .stat-tag.left { right: calc(50% + 220px); }
    .stat-tag.right { left: calc(50% + 220px); }
    .stat-tag.left.line::after { right: -90px; }
    .stat-tag.right.line::after { left: -90px; }

    .stat-tag.t1 { top: 80px; animation-delay: 0s; }
    .stat-tag.t2 { top: 270px; animation-delay: .8s; }
    .stat-tag.t3 { top: 460px; animation-delay: 1.6s; }
    .stat-tag.t4 { top: 80px; animation-delay: .4s; }
    .stat-tag.t5 { top: 270px; animation-delay: 1.2s; }
    .stat-tag.t6 { top: 460px; animation-delay: 2s; }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    /* 모바일 전용 태그 영역 — 기본(데스크탑)에서는 숨김 */
    .impact-tags-below { display: none; }

    .stat-tag-mobile {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      padding: 12px 16px;
      border-radius: 999px;
      box-shadow: 0 8px 24px -8px rgba(20,32,26,.15);
      font-size: 14px;
      width: 100%;
    }
    .stat-tag-mobile .stat-num {
      background: var(--green-800);
      color: #fff;
      padding: 5px 12px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 14px;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .stat-tag-mobile .stat-label {
      color: var(--ink);
      font-weight: 500;
    }
    .impact-tags-group {
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex: 1 1 0;
      min-width: 0;
    }

    /* =========================================================
       10. TEAM
       ========================================================= */
    .team-stage {
      position: relative;
      max-width: 1240px;
      margin: 0 auto;
      overflow: hidden;
    }
    .team-track {
      display: flex;
      gap: 22px;
      transition: transform .6s cubic-bezier(.65,0,.25,1);
      padding-bottom: 30px;
    }
    .team-card {
      flex: 0 0 calc(25% - 17px);
      border-radius: var(--radius-md);
      overflow: hidden;
      position: relative;
      transition: transform .35s ease;
    }
    .team-card:hover { transform: translateY(-6px); }
    .team-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform .8s ease;
    }
    .team-card:hover img { transform: scale(1.06); }
    .team-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.7) 100%);
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      color: #fff;
    }
    .team-card-overlay h4 {
      font-family: var(--font-display);
      font-size: 24px;
      font-weight: 500;
      margin-bottom: 4px;
      color: #fff; 
    }
    .team-card-overlay span {
      font-size: 14px;
      color: rgba(255,255,255,.8);
    }

    .team-controls {
      display: flex; gap: 12px;
      justify-content: center;
      margin-top: 20px;
	  padding-bottom: 20px;	
    }

    /* =========================================================
       11. FAQ
       ========================================================= */
    .faq-list {
      max-width: 800px;
      margin: 0 auto;
    }
    .faq-item {
      border-bottom: 1px solid var(--line);
    }
    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 24px 0;
      font-family: var(--font-body);
      font-size: 17px;
      font-weight: 500;
      color: var(--ink);
      text-align: left;
    }
    .faq-toggle {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--green-800);
      color: #fff;
      display: grid; place-items: center;
      transition: transform .35s ease, background .25s ease;
      flex-shrink: 0;
    }
    .faq-toggle svg { width: 14px; height: 14px; transition: transform .35s ease; }
    .faq-item.open .faq-toggle svg { transform: rotate(180deg); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .5s cubic-bezier(.4,0,.2,1);
    }
    .faq-a-inner {
      padding: 0 0 28px 0;
      color: var(--muted);
      font-size: 15.5px;
      line-height: 1.65;
      max-width: 600px;
    }

    /* =========================================================
       12. CONTACT
       ========================================================= */
    .contact-section { padding: var(--section-pad) 0; }
    .contact-card {
      background: var(--green-800);
      border-radius: var(--radius-lg);
      padding: clamp(36px, 6vw, 70px);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .contact-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 90% 10%, rgba(255,255,255,.05), transparent 40%);
      pointer-events: none;
    }
    .contact-info { position: relative; z-index: 2; }
    .contact-info .eyebrow { color: rgba(255,255,255,.7); }
    .contact-info .eyebrow::before { background: rgba(255,255,255,.7); }
    .contact-info h2 {
      font-size: clamp(34px, 4.5vw, 54px);
      margin: 18px 0 36px;
      color:#fff;
    }

    .contact-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .contact-form .full { grid-column: 1 / -1; }
    .field, .field-textarea {
      width: 100%;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.18);
      color: #fff;
      padding: 16px 18px;
      border-radius: 12px;
      font-family: inherit;
      font-size: 15px;
      transition: border-color .25s ease, background .25s ease;
    }
    .field::placeholder, .field-textarea::placeholder { color: rgba(255,255,255,.55); }
    .field:focus, .field-textarea:focus {
      outline: none;
      border-color: rgba(255,255,255,.5);
      background: rgba(255,255,255,.1);
    }
    .field-textarea { resize: vertical; min-height: 120px; }
    select.field {
      appearance: none;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='white' stroke-opacity='0.6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
      background-repeat: no-repeat;
      background-position: right 18px center;
      padding-right: 44px;
    }
    .submit-btn {
      grid-column: 1 / -1;
      justify-self: start;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 18px 14px 22px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.18);
      color: #fff;
      border-radius: 999px;
      font-weight: 500;
      transition: all .25s ease;
      margin-top: 8px;
    }
    .submit-btn:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
    .submit-btn .btn-icon {
      background: #fff; color: var(--green-800);
      width: 30px; height: 30px;
      border-radius: 50%;
      display: grid; place-items: center;
    }

    .contact-image {
      aspect-ratio: 1/1;
      border-radius: var(--radius-md);
      overflow: hidden;
      position: relative;
      z-index: 2;
    }
    .contact-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.2); }

    /* =========================================================
       13. FOOTER
       ========================================================= */
    .footer {
      padding: 80px 0 40px;
      background: var(--cream);
      border-top: 1px solid var(--line);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 0px;
    }
    .footer-brand p {
      color: var(--muted);
      font-size: 15px;
      max-width: 350px;
      margin: 24px 0;
    }
    .footer-template {
      font-size: 14px;
      color: var(--muted);
    }
    .footer-template a {
      color: var(--ink);
      font-weight: 600;
      display: inline-flex; align-items: center; gap: 4px;
    }
    .footer h4 {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 18px;
    }
    .footer ul { display: flex; flex-direction: column; gap: 10px; }
    .footer ul a, .footer-contact li {
      color: var(--muted);
      font-size: 15px;
      transition: color .2s;
    }
    .footer ul a:hover { color: var(--green-800); }
    .footer-bottom {
      display: flex;
      align-items: center;
      gap: 20px;
      font-size: 13px;
      color: var(--muted);
      padding-top: 30px;
      border-top: 1px solid var(--line);
    }
    .footer-bottom .dot {
      width: 5px; height: 5px;
      background: var(--green-800);
      border-radius: 50%;
    }

    /* =========================================================
       14. SCROLL REVEAL
       ========================================================= */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .9s ease, transform .9s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* =========================================================
       15. RESPONSIVE
       ========================================================= */
    @media (max-width: 1024px) {
      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
      }
      .hero-image { aspect-ratio: 16/10; max-height: 460px; }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .timeline::before { left: 24px; transform: none; }
      .step, .step.right, .step.left {
        grid-template-columns: 50px 1fr;
        gap: 24px;
      }
      .step-number { grid-column: 1; justify-self: start; }
      .step-image, .step.right .step-image, .step.left .step-image {
        grid-column: 2;
        grid-row: 1;
      }
      .step-text, .step.right .step-text, .step.left .step-text {
        grid-column: 2;
        text-align: left;
      }
      .step.left .step-text p { margin-left: 0; }
      .step { margin-bottom: 50px; }
      .team-card { flex: 0 0 calc(33.333% - 15px); }
      .contact-card { grid-template-columns: 1fr; gap: 36px; }
      .contact-image { aspect-ratio: 16/10; max-height: 360px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      .nav-links, .nav-cta { display: none; }
	  .nav {
			display: flex;
			align-items: center;
			justify-content: space-between;
			padding: 18px 15px;
		}	
      .menu-toggle { display: inline-flex; }
      .hero-section {margin-top: 72px;} 
      .hero { padding: 32px; border-radius: 0px; }
	  .hero-content {
			position: relative;
			z-index: 2;
			padding-bottom: 0px;
		}
	  .hero p {
			font-size: 18px;
			max-width: 480px;
			color: rgba(255, 255, 255, .72);
			margin-bottom: 0px;
		}
	  .hero-image {
			aspect-ratio: auto;
			max-height: 460px;
		}
	  .partners {
			padding: 70px 15px 30px;
			text-align: center;
		}	  	
      .partners-row { gap: 18px; }
      .partner-logo { font-size: 16px; }
	  .step-number {
			grid-column: 1;
			justify-self: start;
			grid-row: 1;
		}
	.contact-card {
		background: var(--green-800);
		border-radius: 0px;
		padding: clamp(36px, 6vw, 70px);
		display: grid;
		grid-template-columns: 1fr;
		gap: 60px;
		align-items: center;
		color: #fff;
		position: relative;
		overflow: hidden;
		}
      .compare { grid-template-columns: 1fr; }
      .compare-card { padding: 32px 24px; }
      .compare-card.r { border-top: 1px solid rgba(31,69,56,.12); }
      .slide { flex: 0 0 calc(100% - 0px); transform: scale(1); opacity: 1; }
      .slider-nav { padding: 0px 7px; }
      .features-grid { grid-template-columns: 1fr; gap: 36px; }
      .pricing-grid { grid-template-columns: 1fr; }
      .impact-stage { height: auto; padding: 20px 0; display: flex; flex-direction: column; align-items: center; }
      .impact-portrait {
        position: relative;
        left: auto; top: auto;
        transform: none;
        width: 100%; max-width: 320px;
        height: auto; aspect-ratio: 4/5;
        margin: 0 auto 28px;
      }
      /* 데스크탑용 stat-tag는 모바일에서 숨김 */
      .stat-tag { display: none !important; }
      /* 모바일 전용 태그 영역 표시 */
      .impact-tags-below {
        display: flex;
        flex-direction: row;
        gap: 12px;
        width: 100%;
        padding: 0 4px;
      }
      .impact-tags-mobile {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
      }
      .team-card { flex: 0 0 calc(70% - 11px); }
	  .stat-tag-mobile {
			display: grid;
			align-items: center;
			gap: 10px;
			background: #fff;
			padding: 12px 16px;
			border-radius: 12px;
			box-shadow: 0 8px 24px -8px rgba(20, 32, 26, .15);
			font-size: 14px;
			width: 100%;
		}	
	  .footer {
			padding: 80px 10px 40px;
			background: var(--cream);
			border-top: 1px solid var(--line);
		}	
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .contact-form { grid-template-columns: 1fr; }
	  .section { padding: var(--section-pad) 15px; } 	
    }

    @media (max-width: 480px) {
	  .mobile-menu font {color: #000;}	
	  .logo img{width: 180px;}
      .hero-section {margin-top: 66px;} 
      .hero h1 { font-size: 38px; }
      .section-head h2 { font-size: 32px; }
      .hero-cta { flex-direction: column; align-items: flex-start; gap: 12px; }
      .price-card { padding: 28px 24px; }
      .step-text h3 { font-size: 24px; }
	  .step-number {
			grid-column: 1;
			justify-self: start;
			grid-row: 1;
		}	
	  .section { padding: var(--section-pad) 10px; }
	  .hero-content {position: relative; z-index: 2; padding-bottom: 0px;} 	
	  .hero {padding: 32px; border-radius: 0px;}
	  .hero p {font-size: 16px; max-width: 480px; color: rgba(255, 255, 255, .72); margin-bottom: 0px;}
	  .hero-image {aspect-ratio: auto; max-height: 460px;}
	  .nav {
			display: flex;
			align-items: center;
			justify-content: space-between;
			padding: 15px 10px;
		}
	   .partners {
			padding: 70px 15px 30px;
			text-align: center;
		}
		.partner-logo img{
			height: 25px;
		}
		.contact-card {
			background: var(--green-800);
			border-radius: 0px;
			padding: clamp(36px, 6vw, 70px);
			display: grid;
			grid-template-columns: 1fr;
			gap: 60px;
			align-items: center;
			color: #fff;
			position: relative;
			overflow: hidden;
		}
		.contact-image {
			aspect-ratio: auto;
			max-height: 360px;
		}
		.stat-tag-mobile {
			display: grid;
			align-items: center;
			gap: 10px;
			background: #fff;
			padding: 12px 16px;
			border-radius: 12px;
			box-shadow: 0 8px 24px -8px rgba(20, 32, 26, .15);
			font-size: 14px;
			width: 100%;
		}
		.footer {
			padding: 80px 10px 40px;
			background: var(--cream);
			border-top: 1px solid var(--line);
		}
    }
/* BASIC css end */

