/* ===========================
   Fitness Muscle Hub Wellness
   Global Stylesheet
   =========================== */

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #2A7FBF;
  --primary-dark: #1A5F9A;
  --primary-light: #E8F4FD;
  --secondary: #3BAF7A;
  --secondary-dark: #2A8F62;
  --secondary-light: #E8F8F2;
  --accent: #F0A500;
  --white: #FFFFFF;
  --bg-soft: #F7FAFD;
  --bg-green: #F4FBF7;
  --text-dark: #1E2D3D;
  --text-mid: #445566;
  --text-light: #6B7E92;
  --border: #DDE8F0;
  --shadow-sm: 0 2px 8px rgba(42,127,191,0.08);
  --shadow-md: 0 4px 20px rgba(42,127,191,0.12);
  --shadow-lg: 0 8px 40px rgba(42,127,191,0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --font-main: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

/* Typography */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.3; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; line-height: 1.4; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); font-weight: 700; line-height: 1.5; }
h4 { font-size: clamp(1rem, 2.5vw, 1.2rem); font-weight: 600; line-height: 1.5; }
p  { font-size: clamp(1rem, 2vw, 1.15rem); color: var(--text-mid); }

/* Layout */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-alt { background: var(--bg-soft); }
.section-green { background: var(--bg-green); }
.section-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

/* Section Header */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.15em;
  color: var(--secondary); background: var(--secondary-light);
  padding: 6px 18px; border-radius: 30px; margin-bottom: 16px;
}
.section-header h2 { color: var(--text-dark); margin-bottom: 16px; }
.section-header p { max-width: 620px; margin: 0 auto; font-size: 1.05rem; color: var(--text-mid); }
.section-primary .section-header h2,
.section-primary .section-header p { color: var(--white); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; border-radius: var(--radius-xl);
  font-size: 1.05rem; font-weight: 700; font-family: var(--font-main);
  border: 2px solid transparent; cursor: pointer;
  transition: var(--transition); text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white); box-shadow: 0 4px 20px rgba(42,127,191,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(42,127,191,0.45); color: var(--white); }
.btn-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--white); box-shadow: 0 4px 20px rgba(59,175,122,0.35);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(59,175,122,0.45); color: var(--white); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.btn-lg { padding: 20px 48px; font-size: 1.15rem; }
.btn-sm { padding: 10px 24px; font-size: 0.95rem; }

/* Navigation */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; max-width: 1140px; margin: 0 auto; height: 72px;
}
.navbar-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.4rem; font-weight: 800; flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-size: 1rem; font-weight: 800; color: var(--text-dark); white-space: nowrap; }
.brand-sub { font-size: 0.7rem; color: var(--text-light); white-space: nowrap; }
.navbar-nav { display: flex; align-items: center; gap: 28px; }
.navbar-nav a {
  color: var(--text-mid); font-size: 0.9rem; font-weight: 600;
  padding: 4px 0; position: relative;
}
.navbar-nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--primary);
  transition: var(--transition); border-radius: 2px;
}
.navbar-nav a:hover::after, .navbar-nav a.active::after { width: 100%; }
.navbar-nav a.active { color: var(--primary); }
.navbar-cta { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.menu-toggle span { display: block; width: 26px; height: 2.5px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }

/* Hero */
.hero {
  min-height: 88vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #EBF5FF 0%, #F0FBF6 50%, #EBF5FF 100%);
  position: relative; overflow: hidden; padding: 80px 0;
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(42,127,191,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59,175,122,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-light); color: var(--primary);
  font-size: 0.9rem; font-weight: 700; padding: 8px 20px;
  border-radius: 30px; margin-bottom: 24px; border: 1px solid rgba(42,127,191,0.2);
}
.hero-content h1 { color: var(--text-dark); margin-bottom: 20px; }
.hero-content h1 span { color: var(--primary); }
.hero-content p { font-size: 1.15rem; color: var(--text-mid); margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 40px; }
.stat-item { text-align: center; }
.stat-num { font-size: 1.8rem; font-weight: 800; color: var(--primary); display: block; line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.8rem; color: var(--text-light); font-weight: 600; }
.hero-visual { position: relative; z-index: 1; }
.hero-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-img-wrap img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-lg); }
.hero-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: white; border-radius: var(--radius-md); padding: 16px 20px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px;
}
.hero-badge-icon {
  width: 44px; height: 44px; background: var(--secondary-light);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.hero-badge-text strong { display: block; font-size: 0.9rem; color: var(--text-dark); font-weight: 700; }
.hero-badge-text span { font-size: 0.78rem; color: var(--text-light); }

/* Cards */
.card {
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--border); padding: 36px 28px;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(42,127,191,0.25); }
.card-icon {
  width: 64px; height: 64px; background: var(--primary-light);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; font-size: 1.8rem; margin-bottom: 20px;
}
.card-icon.green { background: var(--secondary-light); }
.card h3 { color: var(--text-dark); margin-bottom: 12px; font-size: 1.2rem; }
.card p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Image Section */
.img-section { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.img-section.reverse { direction: rtl; }
.img-section.reverse > * { direction: ltr; }
.img-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.img-wrap img { width: 100%; height: 380px; object-fit: cover; }
.img-tag {
  position: absolute; top: 20px; left: 20px; background: white;
  color: var(--primary); font-size: 0.8rem; font-weight: 700;
  padding: 6px 16px; border-radius: 30px; box-shadow: var(--shadow-sm);
}
.img-content .eyebrow {
  display: inline-block; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.12em; color: var(--secondary); background: var(--secondary-light);
  padding: 5px 16px; border-radius: 30px; margin-bottom: 16px;
}
.img-content h2 { color: var(--text-dark); margin-bottom: 16px; }
.img-content p { margin-bottom: 20px; line-height: 1.8; }
.check-list { margin-bottom: 28px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 0.95rem; color: var(--text-mid); }
.check-list li::before {
  content: '✓'; display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; background: var(--secondary); color: white;
  border-radius: 50%; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 32px; left: 12%; right: 12%;
  height: 2px; background: var(--border); z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.4rem; font-weight: 800; margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(42,127,191,0.3);
}
.step-item h4 { color: var(--text-dark); margin-bottom: 8px; font-size: 1rem; }
.step-item p { font-size: 0.85rem; color: var(--text-light); }

/* Testimonials */
.testimonial-card { background: var(--white); border-radius: var(--radius-md); padding: 32px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.testimonial-stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.author-info strong { display: block; font-size: 0.95rem; color: var(--text-dark); }
.author-info span { font-size: 0.8rem; color: var(--text-light); }

/* FAQ */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 16px; overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: rgba(42,127,191,0.3); box-shadow: var(--shadow-sm); }
.faq-question { padding: 24px 28px; background: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-question h4 { font-size: 1.05rem; color: var(--text-dark); font-weight: 600; flex: 1; }
.faq-icon { width: 32px; height: 32px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.1rem; font-weight: 700; flex-shrink: 0; transition: var(--transition); }
.faq-answer { padding: 20px 28px 24px; font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; border-top: 1px solid var(--border); }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #144E80 100%);
  border-radius: var(--radius-lg); padding: 72px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before { content: ''; position: absolute; top: -60px; right: -60px; width: 280px; height: 280px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.cta-banner::after { content: ''; position: absolute; bottom: -40px; left: -40px; width: 200px; height: 200px; background: rgba(255,255,255,0.04); border-radius: 50%; }
.cta-banner h2 { color: white; font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 36px; position: relative; z-index: 1; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* Pricing */
.plan-card { background: var(--white); border-radius: var(--radius-md); border: 2px solid var(--border); padding: 40px 32px; transition: var(--transition); position: relative; }
.plan-card.featured { border-color: var(--primary); box-shadow: 0 8px 40px rgba(42,127,191,0.18); transform: scale(1.03); }
.plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); color: white; font-size: 0.8rem; font-weight: 700; padding: 6px 20px; border-radius: 30px; white-space: nowrap; }
.plan-name { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.plan-price { margin-bottom: 24px; }
.plan-price .amount { font-size: 2.4rem; font-weight: 800; color: var(--primary); }
.plan-price .period { font-size: 0.9rem; color: var(--text-light); margin-left: 4px; }
.plan-features { margin-bottom: 32px; }
.plan-features li { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; color: var(--text-mid); }
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before { content: '✓'; color: var(--secondary); font-weight: 700; font-size: 0.85rem; }

/* Info Box */
.info-box { background: var(--primary-light); border: 1px solid rgba(42,127,191,0.2); border-radius: var(--radius-md); padding: 28px 32px; margin: 32px 0; }
.info-box h4 { color: var(--primary); margin-bottom: 10px; font-size: 1rem; }
.info-box p { font-size: 0.9rem; color: var(--text-mid); }

/* Footer */
.footer { background: #0F1B2D; color: rgba(255,255,255,0.8); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand-logo { width: 44px; height: 44px; background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.4rem; font-weight: 800; flex-shrink: 0; }
.footer-brand-name { font-size: 1rem; font-weight: 800; color: white; line-height: 1.3; }
.footer-brand-sub { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.footer-about { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 24px; }
.footer-contact a { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-bottom: 10px; transition: var(--transition); }
.footer-contact a:hover { color: white; }
.footer-col h5 { color: white; font-size: 0.95rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid rgba(42,127,191,0.4); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: white; padding-left: 4px; }
.footer-bottom { padding: 28px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* Page Hero */
.page-hero { background: linear-gradient(135deg, #EBF5FF 0%, #F0FBF6 100%); padding: 72px 0; text-align: center; border-bottom: 1px solid var(--border); }
.page-hero .eyebrow { display: inline-block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; color: var(--secondary); background: var(--secondary-light); padding: 5px 16px; border-radius: 30px; margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--text-dark); margin-bottom: 16px; }
.page-hero p { max-width: 580px; margin: 0 auto; color: var(--text-mid); font-size: 1.05rem; }

/* Breadcrumb */
.breadcrumb { padding: 16px 0; border-bottom: 1px solid var(--border); background: white; }
.breadcrumb-list { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; }
.breadcrumb-list a { color: var(--text-light); }
.breadcrumb-list a:hover { color: var(--primary); }
.breadcrumb-list span { color: var(--text-light); }
.breadcrumb-list li:last-child a, .breadcrumb-list li:last-child span { color: var(--primary); font-weight: 600; }

/* Notice */
.notice { border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 20px; display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; }
.notice-blue { background: var(--primary-light); border: 1px solid rgba(42,127,191,0.25); color: var(--text-mid); }
.notice-green { background: var(--secondary-light); border: 1px solid rgba(59,175,122,0.25); color: var(--text-mid); }
.notice-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

/* Table */
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
th { background: var(--primary); color: white; padding: 16px 20px; text-align: left; font-weight: 700; }
td { padding: 14px 20px; border-bottom: 1px solid var(--border); color: var(--text-mid); }
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: var(--bg-soft); }

/* Form */
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 0.95rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.form-label .required { color: #E53E3E; margin-left: 4px; font-size: 0.8rem; }
.form-control { width: 100%; padding: 14px 18px; border: 2px solid var(--border); border-radius: var(--radius-sm); font-size: 1rem; font-family: var(--font-main); color: var(--text-dark); background: white; transition: var(--transition); outline: none; }
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(42,127,191,0.1); }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 140px; }

/* Utility */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; } .mb-48 { margin-bottom: 48px; }
.divider { width: 64px; height: 4px; background: linear-gradient(90deg, var(--primary), var(--secondary)); border-radius: 4px; margin: 16px auto 32px; }
.tag { display: inline-block; font-size: 0.78rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-right: 6px; margin-bottom: 6px; }
.tag-blue { background: var(--primary-light); color: var(--primary); }
.tag-green { background: var(--secondary-light); color: var(--secondary-dark); }

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .hero-grid, .img-section, .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 60px 0; }
  .hero-img-wrap img { height: 300px; }
  .hero-stats { gap: 24px; }
  .navbar-nav { display: none; }
  .navbar-cta .btn { display: none; }
  .menu-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner { padding: 48px 24px; }
  .steps { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .img-section.reverse { direction: ltr; }
  .img-wrap img { height: 260px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
}
