/* ============================================
   ANSHIN JAPAN — Design System & Global Styles
   Premium Japanese Education Landing Page
   ============================================ */

/* ——— CUSTOM PROPERTIES ——— */
:root {
  /* Brand Palette */
  --deep-green: #006B45;
  --dark-navy: #172554;
  --royal-blue: #1E3A8A;
  --warm-accent: #E63946;
  --white: #FFFFFF;
  --off-white: #F7FAFC;
  --soft-gray: #E2E8F0;
  --text-primary: #1A202C;
  --text-secondary: #4A5568;
  --text-muted: #718096;

  /* Glass Effects */
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.35);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  --glass-blur: blur(16px);

  /* Premium Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.12);

  /* Typography */
  --font-primary: 'Inter', 'Noto Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Poppins', 'Inter', sans-serif;

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
}

/* ——— RESET & BASE ——— */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

body {
  font-family: var(--font-primary);
  color: var(--text-primary);
  background-color: var(--off-white);
  line-height: 1.7;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ——— UTILITY CLASSES ——— */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-padding {
  padding: var(--space-4xl) 0;
}

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

.text-gradient {
  background: linear-gradient(135deg, var(--deep-green), var(--royal-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ——— TYPOGRAPHY ——— */
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--deep-green);
  margin-bottom: var(--space-md);
  padding: 0.4rem 1rem;
  background: rgba(0, 107, 69, 0.08);
  border-radius: var(--radius-full);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-navy);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.75;
}

/* ——— BUTTONS ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--warm-accent), #c0392b);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.45);
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--dark-navy);
  border: 1.5px solid var(--soft-gray);
  backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
  background: var(--white);
  border-color: var(--deep-green);
  color: var(--deep-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

/* ——— GLASS CARD ——— */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  transition: all var(--transition-base);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 107, 69, 0.15);
}

/* ——— ANIMATIONS ——— */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(230, 57, 70, 0); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children animation */
.stagger-children .animate-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.stagger-children .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .animate-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.stagger-children .animate-on-scroll:nth-child(4) { transition-delay: 0.2s; }
.stagger-children .animate-on-scroll:nth-child(5) { transition-delay: 0.25s; }
.stagger-children .animate-on-scroll:nth-child(6) { transition-delay: 0.3s; }
.stagger-children .animate-on-scroll:nth-child(7) { transition-delay: 0.35s; }
.stagger-children .animate-on-scroll:nth-child(8) { transition-delay: 0.4s; }

/* ============================================
   TOP UTILITY BAR (DESKTOP & TABLET)
   ============================================ */
.top-bar {
  background: linear-gradient(90deg, #091224 0%, #0f1c3f 50%, #003622 100%);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 38px;
  z-index: 1001;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.top-bar-item strong {
  color: #FFFFFF;
  font-weight: 600;
}

.top-bar-flag {
  font-size: 0.9rem;
}

.top-bar-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.15rem 0.65rem;
  background: rgba(0, 107, 69, 0.4);
  border: 1px solid rgba(74, 222, 128, 0.4);
  color: #86efac;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-dot-anim 1.8s infinite;
}

@keyframes pulse-dot-anim {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.top-bar-link:hover {
  color: #4ade80;
}

.top-bar-wa {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.75rem;
  background: #25D366;
  color: #FFFFFF;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.top-bar-wa:hover {
  background: #20ba5a;
  transform: translateY(-1px);
}

/* ============================================
   HEADER / NAVIGATION (DESKTOP & MOBILE)
   ============================================ */
.header {
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 107, 69, 0.08);
  transition: all var(--transition-base);
}

.header.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  border-bottom-color: rgba(0, 107, 69, 0.12);
}

body.scrolled-past-top .top-bar {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* ——— LOGO ——— */
.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  height: 44px;
  width: auto;
  border-radius: var(--radius-sm);
  transition: transform var(--transition-base);
}

.logo:hover img {
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-brand-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--dark-navy);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.logo-kanji-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem 0.4rem;
  background: linear-gradient(135deg, var(--warm-accent), #c0392b);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 4px;
  line-height: 1.2;
  box-shadow: 0 2px 6px rgba(230, 57, 70, 0.3);
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--deep-green);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 1px;
}

/* ——— DESKTOP NAVIGATION ——— */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.drawer-header,
.drawer-action-box {
  display: none;
}

.drawer-menu-list {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  position: relative;
  white-space: nowrap !important;
  flex-shrink: 0;
  line-height: 1.2;
}

.nav-item-content {
  display: inline-flex;
  align-items: center;
  white-space: nowrap !important;
}

.nav-item-title {
  white-space: nowrap !important;
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.nav-item-icon,
.nav-item-desc,
.nav-item-arrow {
  display: none;
}

.nav-item:hover {
  color: var(--deep-green);
  background: rgba(0, 107, 69, 0.06);
}

.nav-item.active {
  color: var(--deep-green);
  background: rgba(0, 107, 69, 0.08);
}

/* ——— HEADER ACTIONS (DESKTOP) ——— */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: #15803d;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.header-wa-btn .online-pulse {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
  animation: pulse-dot-anim 1.8s infinite;
}

.header-wa-btn svg {
  color: #25D366;
}

.header-wa-btn:hover {
  background: #25D366;
  color: #FFFFFF;
  border-color: #25D366;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.header-wa-btn:hover svg {
  color: #FFFFFF;
}

.header-cta-btn {
  padding: 0.6rem 1.4rem !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  border-radius: var(--radius-full) !important;
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
}

.mobile-call-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 107, 69, 0.1);
  border: 1px solid rgba(0, 107, 69, 0.2);
  color: var(--deep-green);
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.mobile-call-btn:hover,
.mobile-call-btn:active {
  background: var(--deep-green);
  color: var(--white);
  transform: scale(1.05);
}

/* ——— MOBILE TOGGLE (HAMBURGER) ——— */
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(23, 37, 84, 0.05);
  border: 1px solid rgba(23, 37, 84, 0.08);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  transition: all var(--transition-fast);
}

.mobile-toggle:hover {
  background: rgba(23, 37, 84, 0.1);
}

.mobile-toggle .bar {
  display: block;
  width: 22px;
  height: 2.2px;
  background: var(--dark-navy);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.mobile-toggle.active {
  background: rgba(230, 57, 70, 0.1);
  border-color: rgba(230, 57, 70, 0.2);
}

.mobile-toggle.active .bar-1 {
  transform: translateY(7px) rotate(45deg);
  background: var(--warm-accent);
}

.mobile-toggle.active .bar-2 {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle.active .bar-3 {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--warm-accent);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 54px);
  padding-bottom: var(--space-3xl);
  background: linear-gradient(135deg, var(--off-white) 0%, #edf2f7 50%, #e2e8f0 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 107, 69, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  animation: fadeInLeft 0.8s ease forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 107, 69, 0.08);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--deep-green);
  margin-bottom: var(--space-lg);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark-navy);
  margin-bottom: var(--space-lg);
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--deep-green), var(--royal-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.hero-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--deep-green);
  flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(23, 37, 84, 0.4));
  pointer-events: none;
}

/* Floating Glass Cards */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
  z-index: 5;
}

.floating-card-1 {
  top: 12%;
  right: -5%;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 25%;
  left: -8%;
  animation-delay: 1.3s;
}

.floating-card-3 {
  bottom: 8%;
  right: 5%;
  animation-delay: 2.6s;
}

.floating-card .fc-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.floating-card .fc-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark-navy);
  line-height: 1.2;
}

.floating-card .fc-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   TRUST / INTRO SECTION
   ============================================ */
.trust-section {
  background: var(--white);
  position: relative;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.stat-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--off-white);
  border: 1px solid transparent;
  transition: all var(--transition-base);
}

.stat-card:hover {
  background: var(--white);
  border-color: rgba(0, 107, 69, 0.1);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 1.5rem;
}

.stat-icon.green { background: rgba(0, 107, 69, 0.1); color: var(--deep-green); }
.stat-icon.blue { background: rgba(30, 58, 138, 0.1); color: var(--royal-blue); }
.stat-icon.navy { background: rgba(23, 37, 84, 0.1); color: var(--dark-navy); }
.stat-icon.accent { background: rgba(230, 57, 70, 0.08); color: var(--warm-accent); }

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-navy);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 107, 69, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  position: relative;
  z-index: 2;
}

.service-card {
  padding: var(--space-xl);
  text-align: center;
  cursor: default;
}

.service-card .service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 107, 69, 0.1), rgba(30, 58, 138, 0.08));
  transition: all var(--transition-base);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--deep-green), var(--royal-blue));
  transform: scale(1.05);
}

.service-card:hover .service-icon svg {
  color: var(--white);
}

.service-info {
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   WHY CHOOSE US — DARK SECTION
   ============================================ */
.why-section {
  background: linear-gradient(135deg, var(--dark-navy) 0%, #0f172a 50%, #1e293b 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 107, 69, 0.15), transparent 70%);
  border-radius: 50%;
}

.why-section .section-label {
  background: rgba(0, 107, 69, 0.2);
  color: #4ade80;
}

.why-section .section-title {
  color: var(--white);
}

.why-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  position: relative;
  z-index: 2;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: rgba(0, 107, 69, 0.3);
}

.why-card .why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  background: rgba(0, 107, 69, 0.2);
  font-size: 1.25rem;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.why-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

/* ============================================
   JAPAN EXPERIENCE GALLERY (MODERN BENTO GRID)
   ============================================ */
.experience-section {
  background: var(--white);
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  background: #0f172a;
  min-height: 240px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item.large {
  grid-row: span 2;
  min-height: 480px;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.4) 40%, rgba(15, 23, 42, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  transition: background 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.3) 30%, rgba(15, 23, 42, 0.94) 100%);
}

.gallery-tag {
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gallery-caption {
  transform: translateY(4px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
  line-height: 1.25;
}

.gallery-caption p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   SUCCESS STORIES (STUDENT TESTIMONIALS)
   ============================================ */
.success-section {
  background: var(--off-white);
  position: relative;
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.success-card {
  padding: var(--space-2xl) var(--space-xl);
  background: var(--white);
  border: 1px solid rgba(0, 107, 69, 0.1);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.success-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--deep-green), #4ade80);
  opacity: 0.8;
}

.success-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
  border-color: rgba(0, 107, 69, 0.25);
}

.success-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  gap: 0.5rem;
}

.success-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 1.05rem;
}

.success-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

.success-badge.green {
  background: rgba(0, 107, 69, 0.08);
  color: var(--deep-green);
  border: 1px solid rgba(0, 107, 69, 0.2);
}

.success-badge.blue {
  background: rgba(30, 58, 138, 0.08);
  color: var(--royal-blue);
  border: 1px solid rgba(30, 58, 138, 0.2);
}

.success-badge.crimson {
  background: rgba(230, 57, 70, 0.08);
  color: var(--warm-accent);
  border: 1px solid rgba(230, 57, 70, 0.2);
}

.student-profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: var(--space-md);
}

.student-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.student-meta h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1.2;
}

.student-dest {
  display: block;
  font-size: 0.82rem;
  color: var(--deep-green);
  font-weight: 600;
  margin-top: 1px;
}

.intake-pill {
  display: inline-block;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

.success-quote {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: normal;
  margin-bottom: var(--space-lg);
  flex-grow: 1;
  position: relative;
  padding-left: 0.5rem;
  border-left: 2px solid rgba(0, 107, 69, 0.15);
}

.success-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: var(--space-md);
  border-top: 1px solid var(--soft-gray);
  font-size: 0.82rem;
  color: var(--deep-green);
  font-weight: 600;
}

.success-highlight svg {
  flex-shrink: 0;
  color: var(--deep-green);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--white);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-content .about-mission {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: rgba(0, 107, 69, 0.04);
  border-left: 4px solid var(--deep-green);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.75;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-value svg {
  width: 20px;
  height: 20px;
  color: var(--deep-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-value span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
  background: var(--off-white);
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--deep-green), var(--royal-blue));
  z-index: 1;
  opacity: 0.3;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  background: var(--white);
  border: 2px solid var(--soft-gray);
  transition: all var(--transition-base);
}

.process-step:hover .process-number {
  border-color: var(--deep-green);
  box-shadow: 0 0 0 8px rgba(0, 107, 69, 0.08);
}

.process-number .step-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.process-number .step-num strong {
  display: block;
  font-size: 1.5rem;
  color: var(--deep-green);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */
.form-section {
  background: linear-gradient(135deg, var(--dark-navy) 0%, #0f172a 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 107, 69, 0.1), transparent 70%);
  border-radius: 50%;
}

.form-section .section-label {
  background: rgba(0, 107, 69, 0.2);
  color: #4ade80;
}

.form-section .section-title {
  color: var(--white);
}

.form-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
  position: relative;
  z-index: 2;
}

.form-wrapper {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--deep-green);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(0, 107, 69, 0.2);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--dark-navy);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  animation: pulse-glow 2s infinite;
}

.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-md);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.form-trust svg {
  width: 14px;
  height: 14px;
}

/* Form Info Side */
.form-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.form-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-xl);
  line-height: 1.75;
}

.form-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.form-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-benefit svg {
  width: 20px;
  height: 20px;
  color: #4ade80;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-benefit span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
}

.form-contact-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-contact-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: var(--space-md) var(--space-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--white);
  font-weight: 500;
  transition: all var(--transition-base);
}

.form-contact-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--deep-green);
}

.form-contact-links svg {
  width: 20px;
  height: 20px;
  color: #4ade80;
  flex-shrink: 0;
}

/* ============================================
   CONTACT / FOOTER SECTION
   ============================================ */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.contact-card {
  text-align: center;
  padding: var(--space-xl);
}

.contact-card .contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  background: rgba(0, 107, 69, 0.08);
  font-size: 1.25rem;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.contact-card a {
  color: var(--deep-green);
  font-weight: 600;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
/* ============================================
   RICH FOOTER
   ============================================ */
.footer {
  background: linear-gradient(180deg, #091224 0%, #060c18 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--space-4xl) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: var(--space-md);
}

.footer-logo img {
  height: 40px;
  width: auto;
  border-radius: var(--radius-sm);
}

.footer-brand-text span {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.2;
}

.footer-kanji {
  background: var(--warm-accent);
  color: var(--white);
  font-size: 0.65rem;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  vertical-align: middle;
  font-weight: 700;
}

.footer-brand-text small {
  font-size: 0.65rem;
  color: #4ade80;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  max-width: 380px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.f-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links-col h4::after,
.footer-contact-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--deep-green);
  border-radius: 1px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links-col a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-links-col a:hover {
  color: #4ade80;
  transform: translateX(4px);
}

.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
  color: #4ade80;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: #FFFFFF;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
  color: #4ade80;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: var(--space-lg) 0;
  background: rgba(0, 0, 0, 0.25);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: #FFFFFF;
}

.footer-dot {
  opacity: 0.4;
}

.footer-credit-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 1rem;
  padding-top: 1rem;
  text-align: center;
}

.footer-developer {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  letter-spacing: 0.02em;
}

.footer-developer .heart-icon {
  color: #ef4444;
  font-size: 0.9rem;
  display: inline-block;
  animation: heart-beat 1.8s ease-in-out infinite;
}

@keyframes heart-beat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.3); }
  28% { transform: scale(1); }
  42% { transform: scale(1.2); }
  70% { transform: scale(1); }
}

.footer-developer a {
  color: #4ade80;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  border-bottom: 1px dotted rgba(74, 222, 128, 0.5);
  padding-bottom: 1px;
}

.footer-developer a:hover {
  color: #FFFFFF;
  border-bottom-color: #FFFFFF;
  text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

/* ============================================
   FLOATING WHATSAPP & TOOLTIP
   ============================================ */
.whatsapp-float-wrapper {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 995;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.whatsapp-tooltip {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.whatsapp-float-wrapper:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.tooltip-status {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #4ade80;
  font-size: 0.7rem;
  background: rgba(74, 222, 128, 0.15);
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-full);
}

.whatsapp-float {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: all var(--transition-base);
  animation: pulse-glow 2.5s infinite;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--soft-gray);
  color: var(--dark-navy);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition-base);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--deep-green);
  color: var(--white);
  border-color: var(--deep-green);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 107, 69, 0.3);
}

/* ============================================
   MOBILE STICKY BOTTOM DOCK (MOBILE ONLY)
   ============================================ */
.mobile-bottom-dock {
  display: none;
  position: fixed;
  bottom: 12px;
  bottom: max(12px, env(safe-area-inset-bottom, 12px));
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  width: calc(100% - 24px) !important;
  max-width: 420px !important;
  z-index: 994;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.16), 0 2px 6px rgba(0, 0, 0, 0.05);
  border-radius: 32px;
  padding: 6px 8px;
  align-items: center;
  justify-content: space-around;
  margin: 0 !important;
  box-sizing: border-box;
}

.dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px 6px;
  border-radius: 18px;
  color: #475569;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  gap: 2px;
  transition: all var(--transition-fast);
  flex: 1;
  min-width: 0;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.dock-item .dock-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  transition: transform var(--transition-fast);
}

.dock-item span {
  font-size: 0.72rem;
  line-height: 1.1;
  font-weight: 600;
  color: #334155;
  white-space: nowrap;
}

.dock-item:active {
  transform: scale(0.92);
  background: rgba(0, 107, 69, 0.08);
}

.dock-item:active span {
  color: var(--deep-green);
}

.dock-item.dock-wa {
  color: #15803d;
}

.dock-item.dock-wa span {
  color: #15803d;
  font-weight: 700;
}

.dock-icon-special {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  margin-top: -16px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
  border: 3px solid #FFFFFF;
  transition: transform var(--transition-fast);
}

.dock-icon-special svg {
  width: 24px;
  height: 24px;
  fill: #FFFFFF;
}

.dock-item.dock-wa:active .dock-icon-special {
  transform: scale(0.92);
}

/* ============================================
   RESPONSIVE DESIGN (DESKTOP, LAPTOP, TABLET, MOBILE)
   ============================================ */

/* ——— LAPTOPS & STANDARD DESKTOPS (<= 1280px) ——— */
@media (max-width: 1280px) {
  .nav-links {
    gap: 0.15rem;
  }

  .drawer-menu-list {
    gap: 0.15rem;
  }

  .nav-item {
    padding: 0.36rem 0.5rem;
    font-size: 0.78rem;
    white-space: nowrap !important;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .header-cta-btn {
    padding: 0.5rem 1rem !important;
    font-size: 0.82rem !important;
    gap: 0.3rem !important;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .brand-tagline {
    font-size: 0.6rem;
  }
}

/* ——— COMPACT LAPTOPS & NETBOOKS (<= 1100px) ——— */
@media (max-width: 1100px) {
  .nav-links {
    gap: 0.1rem;
  }

  .drawer-menu-list {
    gap: 0.1rem;
  }

  .nav-item {
    padding: 0.32rem 0.42rem;
    font-size: 0.74rem;
    white-space: nowrap !important;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .header-cta-btn {
    padding: 0.45rem 0.85rem !important;
    font-size: 0.78rem !important;
    gap: 0.25rem !important;
  }

  .logo img {
    height: 38px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-tagline {
    font-size: 0.56rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

/* ——— TABLETS (<= 992px) ——— */
@media (max-width: 992px) {
  .top-bar-left {
    display: none;
  }

  .top-bar-inner {
    justify-content: center;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-2xl);
  }

  .hero-content {
    max-width: 680px;
    margin: 0 auto;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
    max-width: 540px;
    margin: 0 auto;
  }

  .hero-visual {
    max-width: 580px;
    margin: 0 auto;
  }

  .floating-card-1 { right: 2%; }
  .floating-card-2 { left: 2%; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.large {
    grid-column: span 2;
    min-height: 360px;
  }

  .success-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-image {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ——— MOBILE PHONES & PHABLETS (<= 768px) ——— */
@media (max-width: 768px) {
  :root {
    --header-height: 66px;
    --space-4xl: 3.5rem;
    --space-3xl: 2.5rem;
  }

  body {
    padding-bottom: 84px !important; /* Space for sticky bottom dock */
  }

  /* Hide top bar on mobile, header starts right at top */
  .top-bar {
    display: none !important;
  }

  /* ——— MOBILE HEADER & LOGO ALIGNMENT ——— */
  .header {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    height: var(--header-height) !important;
    box-sizing: border-box !important;
  }

  .header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    padding: 0 0.85rem !important;
    box-sizing: border-box !important;
  }

  .logo {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    min-width: 0 !important;
    flex-shrink: 1 !important;
  }

  .logo-img-wrapper img {
    width: 38px !important;
    height: 38px !important;
  }

  .logo-text {
    min-width: 0 !important;
  }

  .logo-brand-row {
    display: flex !important;
    align-items: center !important;
    gap: 0.35rem !important;
  }

  .brand-name {
    font-size: 1.05rem !important;
    white-space: nowrap !important;
  }

  .logo-kanji-badge {
    font-size: 0.6rem !important;
    padding: 0.08rem 0.3rem !important;
  }

  .brand-tagline {
    font-size: 0.56rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    letter-spacing: 0.02em !important;
    display: block !important;
    max-width: 190px !important;
  }

  .header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 0.45rem !important;
    flex-shrink: 0 !important;
  }

  /* Show mobile controls */
  .mobile-toggle {
    display: flex !important;
    width: 40px !important;
    height: 40px !important;
  }

  .mobile-call-btn {
    display: flex !important;
    width: 38px !important;
    height: 38px !important;
  }

  .mobile-call-btn svg {
    width: 18px !important;
    height: 18px !important;
  }

  .header-wa-btn,
  .header-cta-btn {
    display: none !important;
  }

  /* Disable horizontal translation animations on mobile to prevent overflow spikes */
  .hero-content,
  .hero-visual {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  /* ——— MOBILE NAVIGATION DRAWER ——— */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(105%);
    width: 86%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    background: #FFFFFF;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.35s ease;
    z-index: 1002;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-links.active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid var(--soft-gray);
    background: #f8fafc;
    position: sticky;
    top: 0;
    z-index: 10;
  }

  .drawer-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
  }

  .drawer-brand-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--dark-navy);
    line-height: 1.1;
  }

  .drawer-kanji {
    background: var(--warm-accent);
    color: var(--white);
    font-size: 0.65rem;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    font-weight: 700;
  }

  .drawer-brand-sub {
    font-size: 0.7rem;
    color: var(--deep-green);
    font-weight: 600;
  }

  .drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--soft-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-navy);
    cursor: pointer;
    transition: all var(--transition-fast);
  }

  .drawer-close:hover,
  .drawer-close:active {
    background: rgba(230, 57, 70, 0.1);
    color: var(--warm-accent);
    transform: rotate(90deg);
  }

  .drawer-menu-list {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 1rem;
    gap: 0.4rem;
  }

  .nav-item {
    display: flex;
    align-items: center;
    padding: 0.85rem 0.95rem;
    border-radius: var(--radius-lg);
    background: transparent;
    color: var(--dark-navy);
    gap: 0.85rem;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
  }

  .nav-item:hover,
  .nav-item:active {
    background: #f1f5f9;
    border-color: rgba(0, 107, 69, 0.1);
    transform: translateX(3px);
  }

  .nav-item-icon {
    display: flex;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0, 107, 69, 0.08);
    color: var(--deep-green);
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .nav-item:hover .nav-item-icon {
    background: var(--deep-green);
    color: var(--white);
  }

  .nav-item-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .nav-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1.2;
  }

  .nav-item-desc {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 1px;
  }

  .nav-item-arrow {
    display: block;
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 300;
  }

  .drawer-action-box {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.25rem 2rem;
    gap: 0.75rem;
    background: #f8fafc;
    border-top: 1px solid var(--soft-gray);
    margin-top: auto;
  }

  .btn-drawer-cta {
    width: 100%;
    padding: 0.85rem;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
  }

  .drawer-quick-contacts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .drawer-contact-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem;
    border-radius: var(--radius-md);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-fast);
  }

  .drawer-contact-pill.wa {
    background: #25D366;
    color: #FFFFFF;
  }

  .drawer-contact-pill.tel {
    background: rgba(23, 37, 84, 0.08);
    color: var(--dark-navy);
    border: 1px solid rgba(23, 37, 84, 0.12);
  }

  .drawer-footer-info {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 0.35rem;
    border-top: 1px dashed var(--soft-gray);
    padding-top: 0.5rem;
  }

  .drawer-footer-info p {
    margin-bottom: 0.2rem;
  }

  /* Nav overlay with blur */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .nav-overlay.active {
    display: block;
    opacity: 1;
  }

  /* Mobile Container & Section Overflow Safeguards */
  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    box-sizing: border-box !important;
  }

  .top-bar,
  .header,
  .hero,
  .trust-section,
  .services-section,
  .why-section,
  .programs-section,
  .gallery-section,
  .success-section,
  .about-section,
  .process-section,
  .faq-section,
  .form-section,
  .contact-section,
  .footer {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: clip !important;
  }

  /* Mobile Bottom Dock */
  .mobile-bottom-dock {
    display: flex !important;
  }

  /* Mobile: Clean bottom UX - Hide redundant floating WhatsApp & back-to-top (handled by mobile dock) */
  .whatsapp-float-wrapper {
    display: none !important;
  }

  .back-to-top {
    display: none !important;
  }

  /* Hero Section on Mobile */
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 1.5rem);
    padding-bottom: var(--space-2xl);
  }

  .hero-title {
    font-size: clamp(1.85rem, 7.5vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-buttons .btn {
    width: 100%;
    padding: 0.95rem 1.5rem;
    font-size: 0.95rem;
  }

  .hero-trust {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    text-align: left;
  }

  .trust-item {
    font-size: 0.8rem;
  }

  .hero-visual {
    margin-top: 1rem;
  }

  .hero-image-wrapper img {
    height: 280px;
  }

  .floating-card {
    padding: 0.55rem 0.85rem;
    border-radius: var(--radius-sm);
  }

  .floating-card .fc-number {
    font-size: 0.95rem;
  }

  .floating-card .fc-label {
    font-size: 0.65rem;
  }

  .floating-card-1 {
    top: 6%;
    right: 2%;
  }

  .floating-card-2 {
    bottom: 8%;
    left: 2%;
  }

  .floating-card-3 {
    display: none; /* Keep clean on mobile view */
  }

  /* Trust Stats */
  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .stat-card {
    padding: var(--space-lg) var(--space-md);
  }

  .stat-number {
    font-size: 1.65rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .service-card {
    padding: 1.15rem 1.15rem;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 0.95rem;
    background: #FFFFFF;
    border: 1px solid rgba(0, 107, 69, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  }

  .service-card .service-icon {
    width: 48px;
    height: 48px;
    margin: 0;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(0, 107, 69, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .service-card .service-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
  }

  .service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.3rem;
    line-height: 1.3;
  }

  .service-card p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
  }

  /* Why Grid */
  .why-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .why-card {
    padding: var(--space-lg);
  }

  /* Gallery Grid */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .gallery-item.large {
    grid-column: span 1;
    min-height: 260px;
  }

  .gallery-item:not(.large) img {
    height: 220px;
  }

  /* Success Stories */
  .success-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .success-card {
    padding: var(--space-xl);
  }

  /* Process Steps (Vertical Timeline on Mobile) */
  .process-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    position: relative;
    padding-left: 20px;
  }

  .process-grid::before {
    display: block;
    top: 20px;
    bottom: 20px;
    left: 45px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .process-step {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 1.15rem;
  }

  .process-number {
    width: 50px;
    height: 50px;
    margin: 0;
    flex-shrink: 0;
  }

  .process-number .step-num strong {
    font-size: 1.15rem;
  }

  .process-step .process-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
  }

  .process-step h3 {
    margin-top: 0.15rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.25rem;
  }

  .process-step p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
  }

  /* Form & Contact */
  .form-wrapper {
    padding: var(--space-xl) var(--space-md);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .contact-card {
    padding: var(--space-lg);
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: left;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ——— SMALL SMARTPHONES (<= 480px) ——— */
@media (max-width: 480px) {
  .logo-text .brand-name {
    font-size: 1.05rem;
  }

  .logo-kanji-badge {
    font-size: 0.6rem;
    padding: 0.05rem 0.3rem;
  }

  .brand-tagline {
    font-size: 0.58rem;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .trust-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .stat-card {
    padding: 1rem 0.5rem;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.72rem;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .dock-item span {
    font-size: 0.68rem;
  }
}

/* ——— PERFORMANCE OPTIMIZATIONS (PAGESPEED) ——— */
.why-section,
.gallery-section,
.success-section,
.about-section,
.process-section,
.form-section,
.contact-section,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 450px;
}

/* ——— PRINT STYLES ——— */
@media print {
  .header,
  .top-bar,
  .whatsapp-float-wrapper,
  .mobile-bottom-dock,
  .back-to-top,
  .mobile-toggle,
  .nav-overlay {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    padding-bottom: 0 !important;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
}
