@charset "UTF-8";
/* ================================
  Config
================================ */
/* ================================
  Root / Reset / Base
================================ */
:root {
  --bg: #f8f8f8;
  --text: #050505;
  --border: 4px solid #000;
  --border-thin: 2px solid #000;
  --c1: #f2b134;
  --c1-rgb: 242, 177, 52;
  --c2: #50b8b1;
  --c2-rgb: 80, 184, 177;
  --c3: #e94e33;
  --c3-rgb: 233, 78, 51;
  --shadow-dist: 6px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image: radial-gradient(#000 1px, transparent 1px);
  background-size: 30px 30px;
  background-attachment: fixed;
  opacity: 0.99;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ================================
  Common inline parts
================================ */
.josi {
  display: inline-block;
  font-size: 0.75em;
  transform: translateY(-0.05em);
  margin: 0 0.05em;
  font-weight: 900;
  line-height: 1;
}

.marker {
  background: linear-gradient(transparent 75%, rgba(var(--marker-rgb, 242, 177, 52), 0.5) 75%);
  font-weight: 900;
  padding: 0 2px;
  color: inherit;
  display: inline;
}

/* 白文字や黒背景上のmarkerは白ハイライトに切替 */
section[style*="color: #fff"] .marker,
section[style*="color:#fff"] .marker,
.info-section[style*="background: #000"] .marker,
.info-section[style*="background:#000"] .marker {
  background: linear-gradient(transparent 60%, rgba(255, 255, 255, 0.3) 60%);
}

/* ================================
  Section base
================================ */
section {
  padding: 60px 5%;
  border-bottom: var(--border);
  position: relative;
  background: #fff;
}
@media (min-width: 768px) {
  section {
    padding: 100px 8%;
  }
}

/* ================================
  Utilities (global)
================================ */
.fw-900 {
  font-weight: 900;
}

.fw-700 {
  font-weight: 700;
}

.fs-small {
  font-size: 0.75rem;
}

.fs-80 {
  font-size: 0.8rem;
}

.fs-90 {
  font-size: 0.9rem;
}

.fs-110 {
  font-size: 1.1rem;
}

.fs-120 {
  font-size: 1.2rem;
}

.ls-1 {
  letter-spacing: 1px;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.opacity-40 {
  opacity: 0.4;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-60 {
  opacity: 0.6;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-90 {
  opacity: 0.9;
}

.white-space-nowrap {
  white-space: nowrap;
}

.pointer-events-none {
  pointer-events: none;
}

.user-select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.rotate-n2 {
  transform: rotate(-2deg);
}

.rotate-1 {
  transform: rotate(1deg);
}

.rotate-2 {
  transform: rotate(2deg);
}

.rotate-n5 {
  transform: rotate(-5deg);
}

.skew-n10 {
  transform: skew(-10deg);
}

/* ================================
  Header / Nav
================================ */
.logo {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: -1px;
  background: #000;
  color: #fff;
  padding: 0 8px;
  transform: skewX(-5deg);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 10px 5%;
  border-bottom: var(--border-thin);
}
header .nav-menu {
  display: flex;
  gap: 20px;
}
header .nav-menu a {
  text-decoration: none;
  color: #000;
  font-weight: 900;
  font-size: 0.85rem;
  text-transform: uppercase;
  transition: color 0.2s;
}
header .nav-menu a:hover {
  color: var(--c3);
}
header .nav-menu.active {
  display: flex;
}
header .menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
header .menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #000;
  transition: 0.3s;
}
header .menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
header .menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
header .menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 768px) {
  header .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-bottom: var(--border);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  header .menu-toggle {
    display: flex;
  }
}

/* ================================
  Buttons
================================ */
.btn-main {
  background: #000;
  color: #fff;
  padding: 16px 32px;
  font-weight: 900;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: var(--border);
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-dist) var(--shadow-dist) 0 var(--vpn-color, #333);
  outline: none;
}
@media (min-width: 768px) {
  .btn-main {
    padding: 20px 45px;
    font-size: 1.2rem;
  }
}
.btn-main:hover {
  background: #1a1a1a;
  transform: translate(-2px, -2px);
  box-shadow: calc(var(--shadow-dist) + 4px) calc(var(--shadow-dist) + 4px) 0 var(--vpn-color, #333);
}
.btn-main:hover span.arrow {
  transform: translateX(8px);
}
.btn-main:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 var(--vpn-color, #333);
}
.btn-main span.arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* ================================
  Hero
================================ */
.hero-section {
  background: var(--c1);
  text-align: center;
  overflow: hidden;
  padding: 80px 5%;
}

.hero-guide-tag {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 4px 12px;
  font-weight: 900;
  font-size: 0.8rem;
  margin-bottom: 20px;
  transform: rotate(-2deg);
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 30px;
}

.hero-desc {
  font-weight: 900;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.4;
}

/* ================================
  Diagnosis / Quiz
================================ */
.diag-container {
  max-width: 850px;
  margin: 0 auto;
  border: var(--border);
  padding: 40px 20px;
  background: #fff;
  box-shadow: 8px 8px 0 #000;
  position: relative;
  z-index: 2;
  /* ここは diag専用上書きなのでネストOK */
}
@media (min-width: 768px) {
  .diag-container {
    padding: 50px 30px;
    box-shadow: 12px 12px 0 #000;
  }
}
.diag-container .btn-main {
  box-shadow: var(--shadow-dist) var(--shadow-dist) 0 #000;
}
.diag-container .btn-main:hover {
  box-shadow: calc(var(--shadow-dist) + 4px) calc(var(--shadow-dist) + 4px) 0 #000;
}
.diag-container .btn-main:active {
  box-shadow: 0 0 0 #000;
}

.step-indicator {
  position: absolute;
  top: -30px;
  left: 20px;
  background: #000;
  color: #fff;
  padding: 6px 15px;
  font-weight: 900;
  font-family: "Archivo Black";
  font-size: 0.8rem;
  transform: rotate(-1deg);
}

.diag-question {
  font-size: clamp(1.4rem, 4vw, 2.4rem);
}

.diag-progress-container {
  height: 8px;
  background: #f0f0f0;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 5;
  border-bottom: 2px solid #000;
}

.diag-progress-bar {
  height: 100%;
  background: #000;
  width: 0%;
  transition: width 0.4s ease-out;
}

.diag-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .diag-options {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.option-card {
  border: var(--border);
  padding: 18px;
  cursor: pointer;
  font-weight: 900;
  transition: all 0.15s cubic-bezier(0.23, 1, 0.32, 1);
  text-align: center;
  font-size: 1rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.option-card:hover {
  background: var(--c1);
  transform: translate(-3px, -3px);
  box-shadow: 3px 3px 0 #000;
}
.option-card:active {
  transform: translate(0, 0);
  box-shadow: 0 0 0 #000;
}

.ripple {
  position: absolute;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
.fade-out {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.fade-in {
  opacity: 0;
  transform: translateY(10px);
}

.quiz-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.result-screen {
  display: none;
}

.result-card {
  background: #fff;
  border: var(--border);
  padding: 30px;
  box-shadow: 10px 10px 0 #000;
}

/* ================================
  Intro grid / VPN cards
================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 1024px) {
  .intro-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

.vpn-card {
  border: var(--border);
  background: #fff;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 #000;
}
.vpn-card:hover {
  transform: translate(-8px, -8px);
  box-shadow: 12px 12px 0 var(--vpn-color);
}
.vpn-card:hover .vpn-footer {
  background: var(--vpn-color);
  color: #000;
}
.vpn-card .vpn-accent-line {
  height: 8px;
  width: 100%;
  background: var(--vpn-color);
  border-bottom: var(--border);
}
.vpn-card .vpn-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .vpn-card .vpn-header {
    padding: 30px;
  }
}
.vpn-card .vpn-name {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
}
@media (min-width: 768px) {
  .vpn-card .vpn-name {
    font-size: 1.8rem;
  }
}
.vpn-card .vpn-num-circle {
  width: 38px;
  height: 38px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Archivo Black";
  font-size: 1rem;
  transform: rotate(10deg);
}
@media (min-width: 768px) {
  .vpn-card .vpn-num-circle {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}
.vpn-card .vpn-body {
  padding: 0 20px 20px;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .vpn-card .vpn-body {
    padding: 0 30px 30px;
  }
}
.vpn-card .vpn-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--vpn-color);
  border: var(--border-thin);
  font-weight: 900;
  font-size: 0.7rem;
  margin-bottom: 10px;
  transform: skewX(-10deg);
}
.vpn-card .vpn-footer {
  padding: 12px 20px;
  border-top: var(--border);
  background: #000;
  color: #fff;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  transition: background 0.2s;
}

/* ================================
  Detail sections
================================ */
.detail-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.detail-tag {
  display: inline-block;
  padding: 6px 15px;
  background: #000;
  color: #fff;
  font-weight: 900;
  margin-bottom: 20px;
  font-size: 0.9rem;
  clip-path: polygon(0% 0, 95% 0, 100% 50%, 95% 100%, 0% 100%);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 900px) {
  .detail-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
  }
}

.detail-title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -1.5px;
}

.detail-desc {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 30px;
  border-left: 6px solid var(--vpn-color);
  padding-left: 15px;
}

.feature-box {
  border: var(--border);
  padding: 25px;
  background: #fff;
  box-shadow: 8px 8px 0 #000;
  position: relative;
}
@media (min-width: 768px) {
  .feature-box {
    padding: 40px;
    box-shadow: 12px 12px 0 #000;
  }
}
.feature-box::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: var(--border-thin);
  opacity: 0.1;
}
.feature-box .feature-item {
  margin-bottom: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.feature-box .feature-item:last-child {
  margin-bottom: 0;
}
.feature-box .feature-icon {
  width: 36px;
  height: 36px;
  background: var(--vpn-color);
  border: var(--border-thin);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-box .feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: #000;
  stroke-width: 3;
  fill: none;
}
.feature-box .feature-text b {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 2px;
}
.feature-box .feature-text p {
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0.75;
}

.bg-deco {
  position: absolute;
  font-family: "Archivo Black";
  font-size: 35vw;
  color: var(--vpn-color);
  opacity: 0.08;
  z-index: 1;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  pointer-events: none;
  white-space: nowrap;
  will-change: transform;
}

/* ================================
  Info / Modern headers
================================ */
.info-section {
  padding: 80px 5%;
}

.section-header-type2 {
  margin-bottom: 50px;
  text-align: center;
}

.tag-modern {
  display: inline-block;
  padding: 5px 15px;
  background: #000;
  color: #fff;
  font-weight: 900;
  font-family: "Archivo Black";
  font-size: 0.8rem;
  margin-bottom: 15px;
  transform: rotate(-1deg);
}

.title-modern {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

/* ================================
  Pricing (boxes)
================================ */
.pricing-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .pricing-table {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  border: var(--border);
  background: #fff;
  padding: 40px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: -10px;
  bottom: -10px;
  background: var(--accent);
  z-index: -1;
  border: var(--border);
}
.pricing-card.featured {
  transform: scale(1.05);
  z-index: 2;
}
@media (max-width: 899px) {
  .pricing-card.featured {
    transform: scale(1);
  }
}

/* ================================
  Card parts (COMMON)  ※重要: ネストしない
================================ */
.card-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #000;
  color: #fff;
  padding: 5px 15px;
  font-weight: 900;
  font-size: 0.75rem;
  font-family: "Archivo Black";
}

.card-head {
  font-family: "Archivo Black";
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.card-price {
  font-size: 3.5rem;
  font-weight: 900;
  font-family: "Archivo Black";
  line-height: 1;
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
}
.card-price .unit {
  font-size: 1.5rem;
  margin-right: 5px;
}
.card-price .term {
  font-size: 1rem;
  opacity: 0.5;
  margin-left: 5px;
}

.card-desc {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 25px;
  flex-grow: 1;
}

.card-list {
  list-style: none;
  border-top: var(--border-thin);
  padding-top: 20px;
}
.card-list li {
  font-weight: 900;
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-list li::before {
  content: "✓";
  color: var(--accent);
}

/* ================================
  Network
================================ */
.network-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.network-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}
@media (min-width: 768px) {
  .network-item {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.network-name {
  font-family: "Archivo Black";
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 10px;
}

.network-stat {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 5px;
}

.network-countries {
  display: inline-block;
  padding: 2px 10px;
  background: #333;
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 15px;
}

.network-info p {
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.8;
}

.bar-container {
  height: 30px;
  background: #222;
  border: 2px solid #444;
  position: relative;
  overflow: hidden;
}

.bar {
  height: 100%;
  transition: width 1s ease-out;
}

/* ================================
  Security
================================ */
.security-flex {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.security-card {
  border: var(--border);
  padding: 30px;
  background: #fff;
  box-shadow: 10px 10px 0 #000;
  border-left: 15px solid var(--accent);
}

.sec-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.sec-name {
  font-family: "Archivo Black";
  font-size: 1.5rem;
  color: var(--text);
}

.sec-base {
  font-size: 0.8rem;
  font-weight: 900;
  opacity: 0.6;
  color: var(--text);
}

.sec-body p {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text);
}

.sec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sec-tags span {
  padding: 4px 12px;
  background: #f0f0f0;
  border: var(--border-thin);
  font-size: 0.75rem;
  font-weight: 900;
  border-radius: 50px;
  color: var(--text);
}

/* ================================
  Protocol / Speed
================================ */
.protocol-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .protocol-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.protocol-card {
  background: #fff;
  border: var(--border);
  padding: 30px;
  box-shadow: 10px 10px 0 #000;
  display: flex;
  flex-direction: column;
}

.protocol-header {
  margin-bottom: 20px;
  border-bottom: var(--border-thin);
  padding-bottom: 10px;
}

.protocol-vpn {
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
}

.protocol-name {
  font-family: "Archivo Black";
  font-size: 2rem;
  line-height: 1;
  margin-top: 5px;
}

.protocol-tech-detail p {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 20px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.tech-tags span {
  background: #000;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 2px 10px;
  text-transform: uppercase;
}

.speed-meter {
  margin-top: auto;
}

.speed-label {
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 5px;
}

.speed-bar-bg {
  height: 30px;
  background: #f0f0f0;
  border: var(--border-thin);
  position: relative;
}

.speed-bar {
  height: 100%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Archivo Black";
  font-size: 0.9rem;
  transition: width 1s ease-out;
}

/* ================================
  Comparison Table
================================ */
.comparison-table-wrapper {
  overflow-x: auto;
  max-width: 1000px;
  margin: 0 auto;
  border: var(--border);
  box-shadow: 10px 10px 0 #000;
}

.modern-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 600px;
}

.modern-table th,
.modern-table td {
  border: var(--border-thin);
  padding: 15px 10px;
  text-align: center;
}
@media (min-width: 768px) {
  .modern-table th,
  .modern-table td {
    padding: 20px;
  }
}

.modern-table th {
  background: #000;
  color: #fff;
  font-family: "Archivo Black";
  font-size: 1.1rem;
  text-transform: uppercase;
  vertical-align: middle;
  border: 2px solid #444; /* contrast */
}
.modern-table th:first-child {
  background: #e0e0e0;
  color: #000;
  border: var(--border-thin);
}
.modern-table th[style*="color: var(--c1)"] {
  border-top: 8px solid var(--c1);
}
.modern-table th[style*="color: var(--c2)"] {
  border-top: 8px solid var(--c2);
}
.modern-table th[style*="color: var(--c3)"] {
  border-top: 8px solid var(--c3);
}

.modern-table tr td:first-child {
  font-weight: 900;
  background: #fafafa;
  text-align: left;
}

.modern-table td {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
}

.modern-table small {
  display: block;
  font-weight: 900;
  opacity: 0.5;
  margin-top: 5px;
  font-size: 0.75rem;
}

/* ================================
  Impact (recommend)
================================ */
.impact-section {
  background: var(--c3);
  color: #fff;
  padding: 80px 5%;
  border: none;
  position: relative;
  overflow: hidden;
}

.impact-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-5deg);
  font-family: "Archivo Black";
  font-size: 20vw;
  opacity: 0.1;
  white-space: nowrap;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.impact-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .impact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.impact-badge {
  background: #fff;
  color: var(--c3);
  display: inline-block;
  padding: 8px 20px;
  font-weight: 900;
  font-size: 1.2rem;
  transform: skew(-10deg);
  margin-bottom: 25px;
}

.impact-title {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-family: "Archivo Black";
  line-height: 0.9;
  margin-bottom: 20px;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.impact-lead {
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 30px;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.impact-feature-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.impact-feature-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 15px 25px;
  border-radius: 4px;
  border-left: 5px solid #fff;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.impact-feature-card b {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 5px;
}

.impact-offer-card {
  background: #fff;
  color: #000;
  padding: 40px;
  border-radius: 2px;
  transform: rotate(2deg);
  box-shadow: 20px 20px 0 rgba(0, 0, 0, 0.1);
}

.offer-head {
  text-align: center;
  margin-bottom: 30px;
}
.offer-head p {
  font-weight: 900;
  color: var(--c3);
  font-size: 1rem;
  margin-bottom: 5px;
}

.offer-main-price {
  font-size: 4rem;
  font-family: "Archivo Black";
  line-height: 1;
}

.offer-sub-price {
  font-weight: 900;
  font-size: 1.2rem;
}

.offer-pricing-detail {
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
  padding: 20px 0;
  margin-bottom: 30px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.price-row .label {
  font-weight: 700;
}
.price-row .value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--c3);
}
.price-row .unit {
  font-size: 1rem;
  color: #666;
}

/* ================================
  Summary
================================ */
.summary-card {
  background: #fff;
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  border: var(--border);
}/*# sourceMappingURL=style.css.map */