/*
Theme Name: Viorgo Corporate
Theme URI: https://viorgo.com
Author: Viorgo
Description: ヴィオルゴ 公式コーポレートサイトテーマ
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: viorgo
*/

/* ============================================================
   CSS Variables & Reset
   ============================================================ */
:root {
  --yellow:       #FFD84D;
  --yellow-light: #FFF3B0;
  --yellow-dark:  #E6B800;
  --purple:       #7B4FA6;
  --purple-light: #B98FD6;
  --purple-dark:  #5A3080;
  --white:        #FFFFFF;
  --off-white:    #FFFDF4;
  --gray-light:   #F7F4FF;
  --gray:         #888899;
  --text:         #2D2440;
  --text-light:   #666688;
  --border:       #E8E0F5;

  --font-display: 'Zen Maru Gothic', 'M PLUS Rounded 1c', sans-serif;
  --font-body:    'Noto Sans JP', sans-serif;
  --font-en:      'Nunito', sans-serif;

  --radius:       16px;
  --radius-sm:    8px;
  --shadow:       0 8px 32px rgba(123,79,166,0.12);
  --shadow-sm:    0 4px 16px rgba(123,79,166,0.08);
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.8;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 3px;
  background: var(--yellow-dark);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--purple);
  position: relative;
}
.section-title span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 6px;
  background: var(--yellow);
  border-radius: 3px;
  z-index: -1;
}

.section-lead {
  font-size: 15px;
  color: var(--text-light);
  line-height: 2;
  max-width: 640px;
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--yellow);
  color: var(--text);
  box-shadow: 0 4px 20px rgba(255,216,77,0.4);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255,216,77,0.5);
}

.btn-secondary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(123,79,166,0.3);
}
.btn-secondary:hover {
  background: var(--purple-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(123,79,166,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}
.btn-outline:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-3px);
}

.btn svg, .btn .arrow {
  transition: transform 0.2s;
}
.btn:hover .arrow {
  transform: translateX(4px);
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,253,244,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--yellow);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 50%, var(--purple-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  box-shadow: 0 4px 12px rgba(255,216,77,0.4);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text-en {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 900;
  color: var(--purple-dark);
  letter-spacing: 1px;
}
.logo-text-ja {
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 1px;
  font-weight: 400;
}

.global-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.global-nav a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text);
  border-radius: 50px;
  transition: var(--transition);
}
.global-nav a:hover,
.global-nav a.current {
  background: var(--yellow-light);
  color: var(--purple-dark);
}
.header-cta {
  margin-left: 8px;
  padding: 10px 22px !important;
  background: var(--purple) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  font-size: 13px !important;
}
.header-cta:hover {
  background: var(--purple-dark) !important;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--purple);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
}
.hero-shape-1 {
  width: 600px; height: 600px;
  top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(255,216,77,0.25) 0%, transparent 70%);
}
.hero-shape-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(123,79,166,0.15) 0%, transparent 70%);
}
.hero-shape-3 {
  width: 200px; height: 200px;
  top: 30%; right: 30%;
  background: radial-gradient(circle, rgba(255,216,77,0.2) 0%, transparent 70%);
}
/* Floating dots decoration */
.hero-dots {
  position: absolute;
  top: 120px; right: 80px;
  display: grid;
  grid-template-columns: repeat(6, 12px);
  gap: 10px;
}
.hero-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero-content {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow-light);
  border: 2px solid var(--yellow);
  color: var(--purple-dark);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-en);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero-badge::before {
  content: '✦';
  color: var(--yellow-dark);
}

.hero-title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-title .highlight {
  display: inline-block;
  position: relative;
  color: var(--purple-dark);
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 10px;
  background: var(--yellow);
  z-index: -1;
  border-radius: 4px;
}

.hero-text {
  font-size: 16px;
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease 0.3s both;
}
.hero-card-main {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 2px solid var(--yellow-light);
  position: relative;
}
.hero-card-main::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--yellow), transparent, var(--purple-light));
  z-index: -1;
  opacity: 0.4;
}
.hero-card-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(255,216,77,0.4);
}
.hero-card-main h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--purple-dark);
}
.hero-card-main p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
}
.hero-stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.hero-stat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--yellow);
  text-align: center;
}
.hero-stat-card .num {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
}
.hero-stat-card .num span {
  font-size: 16px;
}
.hero-stat-card .label {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 6px;
}

/* ============================================================
   Services Section
   ============================================================ */
.services {
  background: var(--white);
  padding: 100px 0;
}
.services-header {
  text-align: center;
  margin-bottom: 64px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--purple-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--yellow);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 68px; height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:nth-child(1) .service-icon { background: var(--yellow-light); }
.service-card:nth-child(2) .service-icon { background: rgba(123,79,166,0.1); }
.service-card:nth-child(3) .service-icon { background: var(--yellow-light); }
.service-card:nth-child(4) .service-icon { background: rgba(123,79,166,0.1); }
.service-card:nth-child(5) .service-icon { background: var(--yellow-light); }
.service-card:nth-child(6) .service-icon { background: rgba(123,79,166,0.1); }
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  box-shadow: 0 6px 20px rgba(255,216,77,0.4);
}
.service-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--purple-dark);
}
.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* ============================================================
   About Section
   ============================================================ */
.about {
  background: var(--gray-light);
  padding: 100px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-wrap {
  background: linear-gradient(135deg, var(--yellow-light) 0%, rgba(185,143,214,0.2) 100%);
  border-radius: 32px;
  padding: 48px;
  text-align: center;
  position: relative;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--yellow), transparent, var(--purple-light));
  z-index: -1;
  opacity: 0.3;
}
.about-big-icon {
  font-size: 96px;
  margin-bottom: 16px;
  display: block;
}
.about-img-caption {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}
.about-tag {
  position: absolute;
  background: var(--purple);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(123,79,166,0.3);
}
.about-tag-1 { top: 20px; right: -20px; }
.about-tag-2 { bottom: 30px; left: -20px; background: var(--yellow-dark); color: var(--text); }

.about-content .section-label { display: flex; }
.about-values {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--yellow);
}
.about-value-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.about-value-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 4px;
}
.about-value-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================================
   Why Us / Features
   ============================================================ */
.features {
  background: var(--purple-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.features::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,216,77,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}
.features .section-label { color: var(--yellow); }
.features .section-title { color: var(--white); }
.features .section-lead { color: rgba(255,255,255,0.7); }
.features-header { text-align: center; margin-bottom: 64px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,216,77,0.2);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover {
  background: rgba(255,216,77,0.1);
  border-color: var(--yellow);
  transform: translateY(-6px);
}
.feature-num {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 900;
  color: var(--yellow);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
}
.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.feature-text {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
}

/* ============================================================
   Contact Section
   ============================================================ */
.contact {
  background: var(--off-white);
  padding: 100px 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 32px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-method {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
}
.contact-method-icon {
  width: 48px; height: 48px;
  background: var(--yellow-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-method-label {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}
.contact-method-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow);
  border: 2px solid var(--yellow-light);
}
.contact-form-wrap h3 {
  font-size: 22px;
  margin-bottom: 28px;
  color: var(--purple-dark);
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.form-label .required {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--yellow-dark);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255,216,77,0.15);
}
.form-textarea {
  min-height: 140px;
  resize: vertical;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color: var(--text);
  border: none;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255,216,77,0.4);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,216,77,0.5);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 300px 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text-en { color: var(--yellow); }
.footer-brand .logo-text-ja { color: rgba(255,255,255,0.5); }
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  line-height: 1.8;
}
.footer-nav-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-nav li {
  margin-bottom: 10px;
}
.footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--yellow);
}
.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   Scroll Animation
   ============================================================ */
.scroll-anim {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-anim.delay-1 { transition-delay: 0.1s; }
.scroll-anim.delay-2 { transition-delay: 0.2s; }
.scroll-anim.delay-3 { transition-delay: 0.3s; }
.scroll-anim.delay-4 { transition-delay: 0.4s; }
.scroll-anim.is-show {
  opacity: 1;
  transform: translateY(0);
}

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

/* ============================================================
   Page Specific: Company (About Page)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--yellow-light) 0%, rgba(185,143,214,0.15) 100%);
  padding: 140px 0 80px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
}
.page-hero .breadcrumb {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 16px;
}
.page-hero .breadcrumb a { color: var(--purple); }

.company-table-wrap {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 48px;
}
.company-table {
  width: 100%;
  border-collapse: collapse;
}
.company-table th,
.company-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  text-align: left;
}
.company-table th {
  background: var(--yellow-light);
  color: var(--purple-dark);
  font-weight: 700;
  width: 200px;
}
.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: none;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .global-nav { display: none; }
  .hamburger { display: flex; }
  .global-nav.open {
    display: block;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--off-white);
    padding: 24px;
    z-index: 190;
  }
  .global-nav.open ul { flex-direction: column; gap: 8px; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stat-cards { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding-top: 72px; }
}
