/* ============================================================
   LuckyLit — Design System
   ============================================================ */

:root {
  --bg-primary: #000000;
  --bg-elevated: #0d0d0d;
  --bg-section: #0a0a0a;
  --text-primary: #ffffff;
  --text-muted: #a8a8a8;
  --text-dim: #6b6b6b;
  --accent: #00a9e0;
  --accent-hover: #33bce6;
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.25);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --max-width: 1280px;
  --section-pad-y: 120px;
  --section-pad-y-mobile: 64px;
  --container-pad-x: 32px;
  --container-pad-x-mobile: 20px;

  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ============================================================
   Container
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad-x);
  width: 100%;
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--container-pad-x-mobile);
  }
}

/* ============================================================
   Typography
   ============================================================ */
.h-display {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.h-section {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.h-card {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.lead {
  font-size: clamp(18px, 1.4vw, 22px);
  color: var(--text-muted);
  line-height: 1.55;
}

.text-muted { color: var(--text-muted); }
.text-dim { color: var(--text-dim); }

/* ============================================================
   Header / Navigation
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  border-bottom-color: var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad-x);
}

.nav-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-logo:hover {
  color: var(--text-primary);
}

.nav-logo-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-utility {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

.nav-country {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.nav-cta {
  padding: 10px 20px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.25s ease;
}

@media (max-width: 1024px) {
  .nav-menu { gap: 24px; }
  .nav-link { font-size: 14px; }
}

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-menu, .nav-utility {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px var(--container-pad-x-mobile);
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .nav-utility {
    top: auto;
    bottom: 0;
    padding-top: 0;
    border-top: 1px solid var(--border);
  }
  .nav.open .nav-menu,
  .nav.open .nav-utility {
    transform: translateX(0);
  }
  .nav-link { font-size: 24px; font-weight: 600; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid var(--text-primary);
  background: transparent;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.btn-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--bg-primary);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: all 0.2s ease;
}

.btn-link::after {
  content: '→';
  transition: transform 0.2s ease;
}

.btn-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.btn-link:hover::after {
  transform: translateX(4px);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.85) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  width: 100%;
}

.hero-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 1100px;
  margin-bottom: 32px;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(18px, 1.5vw, 24px);
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 48px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Simple hero (for inner pages) */
.hero-simple {
  min-height: 60vh;
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 60px;
}

.hero-simple .hero-title {
  font-size: clamp(40px, 6vw, 72px);
}

/* ============================================================
   Section
   ============================================================ */
.section {
  padding: var(--section-pad-y) 0;
  position: relative;
}

.section-dark {
  background: var(--bg-section);
}

.section-header {
  margin-bottom: 64px;
  max-width: 900px;
}

.section-header .eyebrow {
  margin-bottom: 20px;
}

.section-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

@media (max-width: 768px) {
  .section {
    padding: var(--section-pad-y-mobile) 0;
  }
  .section-header { margin-bottom: 40px; }
}

/* ============================================================
   Featured Cards Row (3 cards under hero)
   ============================================================ */
.featured-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.featured-card {
  display: block;
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-elevated);
  transition: all 0.25s ease;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  color: var(--text-primary);
}

.featured-card-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.featured-card h3 {
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .featured-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .featured-row { grid-template-columns: 1fr; gap: 20px; }
  .featured-card { min-height: auto; padding: 32px 24px; }
}

/* ============================================================
   Value Propositions (3-block)
   ============================================================ */
.value-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.value-block-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.value-block h3 {
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
}

@media (max-width: 880px) {
  .value-blocks { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   Client Impact (cases)
   ============================================================ */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.case-card {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  color: var(--text-primary);
}

.case-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  color: var(--text-primary);
}

.case-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.case-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-card:hover .case-card-image img {
  transform: scale(1.05);
}

.case-card-body {
  padding: 32px;
}

.case-card-client {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.case-card h3 {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .case-grid { grid-template-columns: 1fr; gap: 24px; }
  .case-card-body { padding: 24px; }
}

/* ============================================================
   Team Grid (founder cards)
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.team-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.team-card-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-card-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 8px 0;
}

.team-card-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px 0;
}

.team-card-bio {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; gap: 24px; }
  .team-card { grid-template-columns: 140px 1fr; }
  .team-card-body { padding: 20px; }
}

/* ============================================================
   Services Grid (7 cards)
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service-card {
  display: block;
  padding: 48px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-primary);
  transition: background 0.25s ease;
  color: var(--text-primary);
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

.service-card-num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 24px;
}

@media (max-width: 880px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
  .service-card { padding: 36px 24px; min-height: auto; }
}

/* ============================================================
   Alliances Logo Wall
   ============================================================ */
.alliance-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.alliance-logo {
  padding: 36px 24px;
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: all 0.25s ease;
  cursor: default;
  text-align: center;
}

.alliance-logo:hover {
  color: var(--text-primary);
  background: var(--bg-elevated);
}

@media (max-width: 880px) {
  .alliance-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .alliance-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Insights / Articles
   ============================================================ */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.article-card {
  display: block;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  color: var(--text-primary);
  transition: all 0.25s ease;
}

.article-card:hover {
  color: var(--text-primary);
  border-top-color: var(--accent);
}

.article-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.article-card h3 {
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px;
}

.article-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
}

@media (max-width: 880px) {
  .article-grid { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   Locations
   ============================================================ */
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.location-card {
  padding: 36px 32px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.location-card:nth-child(3n) { border-right: none; }

.location-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.location-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.location-card a.btn-link {
  font-size: 12px;
}

@media (max-width: 880px) {
  .location-grid { grid-template-columns: repeat(2, 1fr); }
  .location-card { padding: 28px 20px; }
  .location-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .location-card:nth-child(2n) { border-right: none; }
}

@media (max-width: 480px) {
  .location-grid { grid-template-columns: 1fr; }
  .location-card { border-right: none !important; }
}

/* ============================================================
   Banner CTA
   ============================================================ */
.banner-cta {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border: 1px solid var(--border);
  padding: 80px;
  border-radius: 4px;
  text-align: center;
}

.banner-cta h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}

.banner-cta p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .banner-cta { padding: 48px 24px; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}

.footer-brand h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 420px;
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-dim);
}

.footer-legal a {
  color: var(--text-dim);
}

.footer-legal a:hover { color: var(--text-primary); }

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ============================================================
   Forms
   ============================================================ */
.form {
  max-width: 640px;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  color: var(--text-primary);
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

/* ============================================================
   Two-column layout (contact page)
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
}

@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   Service detail page
   ============================================================ */
.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}

.service-list-item {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 80px 1fr 2fr 200px;
  gap: 40px;
  align-items: center;
  transition: padding 0.25s ease;
}

.service-list-item:hover {
  padding-left: 16px;
  padding-right: 16px;
}

.service-list-num {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.service-list-title {
  font-size: clamp(24px, 2.2vw, 36px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.service-list-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (max-width: 880px) {
  .service-list-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 36px 0;
  }
  .service-list-item:hover { padding-left: 0; padding-right: 0; }
}

/* ============================================================
   Toast
   ============================================================ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--accent);
  color: var(--bg-primary);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  z-index: 1000;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 40px rgba(0, 169, 224, 0.4);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   Utilities
   ============================================================ */
.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; }

.flex { display: flex; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.flex-wrap { flex-wrap: wrap; }
