/*
Theme Name: LicenseGamesPro
Theme URI: https://licensegamespro.com
Author: LicenseGamesPro
Author URI: https://licensegamespro.com
Description: Premium cosmic purple themed WordPress landing page for licensing affordable HTML5 game source code, game bundles, and commercial licenses.
Version: 3.0.0
Tested up to: 6.7
Requires at least: 5.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: licensegamespro
Tags: one-column, custom-colors, custom-menu, featured-images, full-width-template, landing-page

LicenseGamesPro WordPress Theme, (C) 2025 LicenseGamesPro.
*/

/* =============================================
   COSMIC PURPLE DESIGN TOKENS
   ============================================= */
:root {
  /* Primary: Indigo */
  --indigo:       #4F46E5;
  --indigo-hover: #4338CA;
  --indigo-light: #818CF8;
  --indigo-pale:  #EEF2FF;
  --indigo-deep:  #312E81;

  /* Accent: Magenta / Pink */
  --magenta:       #EC4899;
  --magenta-hover: #DB2777;
  --magenta-light: #F9A8D4;
  --magenta-pale:  #FDF2F8;

  /* Secondary: Electric Blue */
  --blue:       #3B82F6;
  --blue-hover: #2563EB;
  --blue-light: #93C5FD;
  --blue-pale:  #EFF6FF;

  /* Highlight: Gold */
  --gold:       #F59E0B;
  --gold-hover: #D97706;
  --gold-light: #FCD34D;
  --gold-pale:  #FFFBEB;

  /* Neutrals */
  --black:       #0F0A1A;
  --black-soft:  #1E1730;
  --gray-dark:   #2D2640;
  --gray-mid:    #6B7280;
  --gray-light:  #9CA3AF;
  --gray-border: #E5E7EB;
  --gray-bg:     #F9FAFB;
  --white:       #FFFFFF;

  /* Radius */
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   24px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-card: 0 4px 6px -1px rgba(79,70,229,.08), 0 2px 4px -2px rgba(79,70,229,.06);
  --shadow-card-hover: 0 20px 25px -5px rgba(79,70,229,.12), 0 8px 10px -6px rgba(79,70,229,.06);
  --shadow-glow: 0 0 20px rgba(79,70,229,.15);
  --shadow-glow-magenta: 0 0 20px rgba(236,72,153,.15);

  /* Typography */
  --font-body:   'Inter', system-ui, -apple-system, sans-serif;
  --font-head:   'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-code:   'Fira Code', monospace;

  /* Layout */
  --max-w: 1200px;
  --section-py: 88px;
}

/* =============================================
   RESET
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea { font: inherit; }
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 24px; }

/* =============================================
   CARTOONISH LOGO TEXT
   White fill + Indigo stroke + Magenta ring + Gold ring + 3D shadow
   ============================================= */
.logo-center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform .2s ease;
}
.logo-center:hover { transform: scale(1.05); }
.logo-center:active { transform: scale(.97); }

/* Premium Streetwear Logo Base */
.logo-cartoon-text {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  line-height: 1;
  display: inline-block;
  color: var(--black);
  paint-order: stroke fill;
  -webkit-text-stroke: 0;
  text-shadow: none;
  filter: none;
}

/* Animated Gradient Flow Accent */
.logo-accent { 
  background: linear-gradient(90deg, var(--blue), var(--indigo), var(--magenta), var(--gold), var(--magenta), var(--indigo), var(--blue));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: logo-shine 4s linear infinite;
  padding: 0 4px;
}

@keyframes logo-shine {
  to { background-position: 200% center; }
}

/* Footer smaller variant */
.logo-cartoon-text--sm {
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: -0.04em;
  -webkit-text-stroke: 0;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-border);
  transition: box-shadow .25s;
}
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(79,70,229,.08);
}
.header-center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  padding: 12px 0;
}

/* =============================================
   BADGES
   ============================================= */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-size: 11px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
}
.badge-indigo  { background: var(--indigo-pale); color: var(--indigo); border-color: var(--indigo-light); }
.badge-magenta { background: var(--magenta-pale); color: var(--magenta); border-color: var(--magenta-light); }
.badge-blue    { background: var(--blue-pale); color: var(--blue); border-color: var(--blue-light); }
.badge-gold    { background: var(--gold-pale); color: var(--gold-hover); border-color: var(--gold-light); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  padding: 14px 28px; border-radius: var(--radius-pill);
  border: none; cursor: pointer;
  box-shadow: 0 4px 14px rgba(79,70,229,.2);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap; line-height: 1;
  text-transform: uppercase; letter-spacing: 0.04em;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(79,70,229,.25); }
.btn:active { transform: translateY(1px); box-shadow: 0 2px 8px rgba(79,70,229,.15); }
.btn-primary { background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-hover) 100%); color: var(--white); }
.btn-primary:hover { background: linear-gradient(135deg, var(--indigo-hover) 0%, var(--indigo-deep) 100%); }
.btn-secondary { background: linear-gradient(135deg, var(--magenta) 0%, var(--magenta-hover) 100%); color: var(--white); box-shadow: 0 4px 14px rgba(236,72,153,.2); }
.btn-secondary:hover { box-shadow: 0 8px 25px rgba(236,72,153,.25); }
.btn-outline { background: var(--white); color: var(--indigo); border: 2px solid var(--indigo-light); box-shadow: none; }
.btn-outline:hover { background: var(--indigo-pale); box-shadow: var(--shadow-glow); }
.btn-gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%); color: var(--white); box-shadow: 0 4px 14px rgba(245,158,11,.2); }
.btn-gold:hover { box-shadow: 0 8px 25px rgba(245,158,11,.25); }

/* =============================================
   SECTION LABELS
   ============================================= */
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-code); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--magenta); margin-bottom: 12px;
}
.section-label::before { content: '//'; color: var(--indigo-light); font-weight: 900; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 800; line-height: 1.18;
  letter-spacing: -.025em; color: var(--black);
}
.section-subtitle { font-size: 17px; color: var(--gray-mid); line-height: 1.65; max-width: 580px; }

/* =============================================
   HERO
   ============================================= */
.hero { padding-top: 72px; padding-bottom: 80px; position: relative; background: var(--white); overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 450px at 85% 35%, rgba(79,70,229,.06) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 15% 65%, rgba(236,72,153,.05) 0%, transparent 70%),
    radial-gradient(ellipse 400px 350px at 50% 80%, rgba(59,130,246,.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge-row { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.hero h1 { font-family: var(--font-head); font-size: clamp(32px, 3.8vw, 52px); font-weight: 900; line-height: 1.12; letter-spacing: -.03em; color: var(--black); margin-bottom: 22px; }
.hero h1 .text-indigo { color: var(--indigo); }
.hero h1 .text-magenta { color: var(--magenta); }
.hero h1 .text-highlight {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--magenta) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 .text-pill {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--magenta) 100%);
  color: var(--white); padding: 2px 12px; border-radius: 8px;
  display: inline-block;
  -webkit-text-fill-color: var(--white);
}
.hero-sub { font-size: 17px; color: var(--gray-mid); line-height: 1.7; max-width: 490px; margin-bottom: 36px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-img-wrap {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  border: 2px solid var(--gray-border);
  box-shadow: var(--shadow-card-hover);
  background: var(--indigo-pale);
}
.hero-img-wrap img { width: 100%; border-radius: calc(var(--radius-xl) - 2px); }
.hero-float-card {
  position: absolute; background: var(--white); border-radius: var(--radius-md);
  border: 1.5px solid var(--gray-border);
  box-shadow: var(--shadow-card);
  padding: 10px 16px; display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  color: var(--black); white-space: nowrap;
}
.hero-float-card .dot-indigo { width: 10px; height: 10px; border-radius: 50%; background: var(--indigo); }
.hero-float-card .dot-magenta { width: 10px; height: 10px; border-radius: 50%; background: var(--magenta); }
.hero-float-card .dot-gold { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }
.hero-float-1 { bottom: 24px; left: -24px; animation: float1 3.2s ease-in-out infinite; }
.hero-float-2 { top: 24px; right: -20px; animation: float2 3.8s ease-in-out infinite; }
.hero-float-3 { bottom: 80px; right: -18px; animation: float1 4.2s ease-in-out infinite reverse; }
@keyframes float1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes float2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* =============================================
   BENEFITS
   ============================================= */
.benefits { padding: var(--section-py) 0; background: var(--white); }
.benefits-head { text-align: center; margin-bottom: 56px; }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit-card {
  background: var(--white); border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-lg); padding: 28px 22px; text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: var(--indigo-light); }
.benefit-icon {
  width: 54px; height: 54px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.icon-indigo  { background: var(--indigo-pale); color: var(--indigo); }
.icon-magenta { background: var(--magenta-pale); color: var(--magenta); }
.icon-blue    { background: var(--blue-pale); color: var(--blue); }
.icon-gold    { background: var(--gold-pale); color: var(--gold); }
.benefit-name { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--black); letter-spacing: -.01em; line-height: 1.3; }

/* =============================================
   WHY SECTION
   ============================================= */
.why { padding: var(--section-py) 0; background: var(--indigo-pale); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.why-content .section-subtitle { margin-top: 14px; margin-bottom: 36px; }
.use-cases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.use-case-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-md); padding: 14px 16px;
  box-shadow: var(--shadow-card);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.use-case-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-card-hover); border-color: var(--indigo-light); }
.use-case-icon {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--indigo-pale) 0%, var(--magenta-pale) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.use-case-label { font-family: var(--font-head); font-size: 14px; font-weight: 800; color: var(--black); }
.why-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-visual-card {
  background: var(--white); border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-lg); padding: 26px 20px; text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s;
}
.why-visual-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.why-visual-card:first-child {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-deep) 100%);
  color: var(--white); border-color: transparent;
}
.why-visual-card:first-child .why-visual-num { color: var(--gold-light); }
.why-visual-card:first-child .why-visual-desc { color: rgba(255,255,255,.85); }
.why-visual-num { font-family: var(--font-head); font-size: 34px; font-weight: 900; color: var(--indigo); letter-spacing: -.03em; line-height: 1; margin-bottom: 6px; }
.why-visual-card:nth-child(2) .why-visual-num { color: var(--magenta); }
.why-visual-card:nth-child(3) .why-visual-num { color: var(--blue); }
.why-visual-desc { font-size: 13px; color: var(--gray-mid); font-weight: 600; }

/* =============================================
   DEVELOPER SECTION
   ============================================= */
.dev-section { padding: var(--section-py) 0; background: var(--white); overflow: hidden; }
.dev-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.dev-visual {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  border: 2px solid var(--gray-border);
  box-shadow: var(--shadow-card-hover);
}
.dev-visual img { width: 100%; border-radius: calc(var(--radius-xl) - 2px); }
.dev-checklist { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.dev-check-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-md); padding: 14px 18px;
  box-shadow: var(--shadow-card);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.dev-check-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-card-hover); border-color: var(--indigo-light); }
.dev-check-icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dev-check-text { flex: 1; }
.dev-check-title { font-family: var(--font-head); font-size: 15px; font-weight: 800; color: var(--black); margin-bottom: 2px; }
.dev-check-desc { font-size: 13px; color: var(--gray-mid); }
.code-snippet {
  font-family: var(--font-code); font-size: 12px;
  background: var(--black-soft); color: #E2E8F0;
  border: 1.5px solid rgba(79,70,229,.2);
  border-radius: var(--radius-md); padding: 16px 20px;
  line-height: 1.8; margin-top: 24px; overflow-x: auto;
  box-shadow: var(--shadow-card);
  -webkit-overflow-scrolling: touch;
}
.code-snippet .c-tag { color: var(--gold-light); font-weight: bold; }
.code-snippet .c-attr { color: var(--magenta-light); }
.code-snippet .c-val { color: #A3E635; }
.code-snippet .c-comment { color: #6B7280; font-style: italic; }

/* =============================================
   BUNDLES
   ============================================= */
.bundles { padding: var(--section-py) 0; background: var(--gray-bg); }
.bundles-head { text-align: center; margin-bottom: 52px; }
.bundles-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1040px; margin-inline: auto; }
.bundle-card {
  background: var(--white); border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-xl); padding: 34px 28px;
  display: flex; flex-direction: column; gap: 20px;
  box-shadow: var(--shadow-card);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
}
.bundle-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); border-color: var(--indigo-light); }
.bundle-card.featured {
  border: 2px solid var(--indigo);
  box-shadow: var(--shadow-card-hover), var(--shadow-glow);
}
.bundle-featured-label {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--indigo) 0%, var(--magenta) 100%);
  color: var(--white);
  font-family: var(--font-head); font-size: 11px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 16px; border-radius: var(--radius-pill);
  white-space: nowrap;
}
.bundle-icon-wrap {
  width: 54px; height: 54px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.bundle-name { font-family: var(--font-head); font-size: 21px; font-weight: 800; color: var(--black); letter-spacing: -.02em; }
.bundle-desc { font-size: 14px; color: var(--gray-mid); line-height: 1.6; }
.bundle-features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.bundle-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--gray-dark);
}
.bundle-feature::before {
  content: '\2713'; width: 20px; height: 20px; border-radius: 50%;
  background: var(--indigo-pale); color: var(--indigo);
  font-size: 12px; font-weight: 900;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bundle-cta { margin-top: auto; }

/* =============================================
   CONTACT
   ============================================= */
.contact { padding: var(--section-py) 0; background: var(--white); }
.contact-inner { text-align: center; max-width: 660px; margin-inline: auto; }
.contact-card {
  background: var(--white); border: 2px solid var(--gray-border);
  border-radius: var(--radius-xl); padding: 48px 36px;
  box-shadow: var(--shadow-card-hover);
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  margin-top: 36px;
}
.contact-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--indigo-pale) 0%, var(--magenta-pale) 100%);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
}
.contact-label { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--black); }
.contact-email-link {
  font-family: var(--font-head); font-size: clamp(17px, 2.8vw, 28px);
  font-weight: 900; letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--magenta) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 8px 18px; border: 2px solid var(--indigo-light);
  border-radius: 12px;
  transition: transform .2s, box-shadow .2s;
  word-break: break-all;
}
.contact-email-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.contact-note { font-size: 14px; color: var(--gray-mid); max-width: 400px; text-align: center; line-height: 1.6; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #000000;
  color: rgba(255,255,255,.7);
  padding: 40px 0 28px;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; text-align: center; }
.footer-nav { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.footer-nav a {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  text-transform: uppercase; color: rgba(255,255,255,.7);
  transition: color .15s; -webkit-tap-highlight-color: transparent;
}
.footer-nav a:hover { color: var(--gold-light); }
.footer-copy {
  font-size: 13px; color: rgba(255,255,255,.4);
  width: 100%; text-align: center;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); margin-top: 12px;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s cubic-bezier(.22,.68,0,1.2), transform .5s cubic-bezier(.22,.68,0,1.2); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.reveal-delay-5 { transition-delay: .40s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  :root { --section-py: 68px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why-inner, .dev-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { grid-template-columns: repeat(3, 1fr); }
  .why-visual-card:first-child { grid-column: auto; }
  .hero-inner { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-py: 52px; }
  .container { padding-inline: 16px; }
  .hero { padding-top: 48px; padding-bottom: 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: clamp(26px, 7vw, 36px); }
  .hero-visual { order: -1; }
  .hero-float-1, .hero-float-2, .hero-float-3 { display: none; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .benefit-card { padding: 20px 16px; }
  .benefit-icon { width: 44px; height: 44px; }
  .bundles-cards { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .why-visual { grid-template-columns: 1fr 1fr; }
  .why-visual-card:first-child { grid-column: 1 / -1; }
  .use-cases-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 28px 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .logo-cartoon-text { font-size: clamp(24px, 5.5vw, 36px); }
  .header-center { min-height: 64px; padding: 8px 0; }
  .section-title { font-size: clamp(22px, 5.5vw, 32px); }
  .btn { font-size: 13px; padding: 12px 22px; }
  .dev-inner { gap: 36px; }
  .dev-check-item { padding: 12px 14px; }
  .code-snippet { font-size: 11px; padding: 14px 16px; }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .logo-cartoon-text { font-size: 24px; }
  .logo-cartoon-text--sm { font-size: 18px; }
  .header-center { min-height: 56px; }
  .hero h1 { font-size: 24px; }
  .hero-sub { font-size: 15px; }
  .section-title { font-size: 22px; }
  .section-subtitle { font-size: 15px; }
  .badge { font-size: 10px; padding: 4px 10px; }
  .contact-email-link { font-size: 16px; padding: 6px 12px; }
  .bundle-card { padding: 24px 18px; }
}

@media (hover: none) and (pointer: coarse) {
  .btn:hover { transform: none; }
  .btn:active { transform: translateY(1px); }
  .benefit-card:hover { transform: none; }
  .use-case-item:hover { transform: none; }
  .dev-check-item:hover { transform: none; }
  .bundle-card:hover { transform: none; }
  .contact-email-link:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
