/* ============================================
   POICASI Corporate Site - Stylesheet
   ============================================ */

/* --- 1. CUSTOM PROPERTIES --- */
:root {
  --bg-primary: #FFFDF5;
  --bg-alt: #FFF8E1;
  --bg-surface: #FFFFFF;
  --bg-hero: #0F0A1F;
  --bg-dark: #1B1B2F;
  --bg-dark-surface: #24243E;

  --gold: #C8963E;
  --gold-light: #E8B960;
  --gold-lighter: #F5D690;
  --gold-dark: #9B7330;
  --accent: #7C3AED;
  --accent-light: #A78BFA;

  --text: #1F2937;
  --text-secondary: #6B7280;
  --text-white: #F9FAFB;
  --text-gold: #C8963E;

  --border: rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 24px rgba(200,150,62,0.2);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --header-h: 72px;
  --section-py: 120px;
  --container-max: 1100px;

  --font-ja: 'Noto Sans JP', sans-serif;
  --font-en: 'Outfit', sans-serif;
  --font-body: 'Inter', 'Noto Sans JP', sans-serif;
  --font-logo: 'Quicksand', 'Noto Sans JP', sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- 2. RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-primary);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; border: none; outline: none; background: none; }
table { border-collapse: collapse; width: 100%; }

.sp-only { display: none; }
@media (max-width: 768px) { .sp-only { display: inline; } }

/* --- 3. LAYOUT --- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

/* --- 4. HEADER --- */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s;
}
.header.scrolled {
  background: rgba(255, 253, 245, 0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.header__logo {
  display: flex; align-items: center; gap: 8px; font-family: var(--font-logo);
  font-weight: 700; font-size: 1.5rem; letter-spacing: 0.06em; z-index: 1001;
}
.logo-mark {
  display: flex; align-items: center; line-height: 0;
  transition: transform 0.4s var(--ease);
}
.header__logo:hover .logo-mark { transform: scale(1.1) rotate(10deg); }
.header .logo-text { color: var(--text); transition: color 0.4s; }
.header.scrolled .logo-text { color: var(--text); }

.nav__list {
  display: flex; align-items: center; gap: 32px;
}
.nav__link {
  font-family: var(--font-logo); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.04em; color: var(--text-secondary);
  position: relative; transition: color 0.3s;
}
.header.scrolled .nav__link { color: var(--text-secondary); }
.nav__link:hover, .header.scrolled .nav__link:hover { color: var(--gold); }
.nav__link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav__link:hover::after { width: 100%; }
.nav__link--cta {
  background: var(--gold); color: var(--text-white) !important;
  padding: 8px 20px; border-radius: var(--radius-full);
  transition: background 0.3s, transform 0.3s;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--gold-light); transform: translateY(-2px); }

.header__hamburger {
  display: none; flex-direction: column; gap: 6px; cursor: pointer;
  z-index: 1001; padding: 4px;
}
.header__hamburger span {
  width: 28px; height: 2px; background: var(--text);
  transition: all 0.3s var(--ease);
}
.header.scrolled .header__hamburger span { background: var(--text); }
.header__hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header__hamburger.active span:nth-child(2) { opacity: 0; }
.header__hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- 5. HERO --- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #FFFEF8 0%, #FFF6DC 30%, #FFEDB8 60%, #FFFBF0 100%);
  background-size: 300% 300%;
  animation: gradientShift 12s ease infinite;
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(255,210,120,0.1) 0%, transparent 60%);
}
@keyframes gradientShift {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero__particles { position: absolute; inset: 0; }
.particle {
  position: absolute; border-radius: 50%; opacity: 0.35;
}
.particle:nth-child(1) { width: 100px; height: 100px; top: 15%; left: 8%; animation: pFloat 22s ease-in-out infinite; background: #FFB6C1; }
.particle:nth-child(2) { width: 60px; height: 60px; top: 60%; left: 78%; animation: pFloat 18s ease-in-out infinite 2s; background: #B5EAD7; }
.particle:nth-child(3) { width: 80px; height: 80px; top: 72%; left: 18%; animation: pFloat 25s ease-in-out infinite 4s; background: #C7CEEA; }
.particle:nth-child(4) { width: 45px; height: 45px; top: 22%; left: 82%; animation: pFloat 20s ease-in-out infinite 1s; background: #FFDAC1; }
.particle:nth-child(5) { width: 70px; height: 70px; top: 42%; left: 55%; animation: pFloat 28s ease-in-out infinite 3s; background: #FFB347; opacity: 0.2; }
.particle:nth-child(6) { width: 50px; height: 50px; top: 80%; left: 65%; animation: pFloat 16s ease-in-out infinite 5s; background: #FFD93D; opacity: 0.25; }
@keyframes pFloat {
  0%,100% { transform: translateY(0) translateX(0) scale(1); }
  25% { transform: translateY(-30px) translateX(15px) scale(1.08); }
  50% { transform: translateY(-15px) translateX(-10px) scale(0.95); }
  75% { transform: translateY(-40px) translateX(20px) scale(1.02); }
}

.hero__content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 24px;
}
.hero__sub {
  font-family: var(--font-logo); font-size: 0.9rem; font-weight: 600;
  color: var(--gold-dark); letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.3s forwards;
}
.hero__title {
  font-family: var(--font-ja); font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; color: var(--text); line-height: 1.4;
  margin-bottom: 28px; letter-spacing: 0.02em;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.5s forwards;
}
.hero__desc {
  font-size: 1rem; color: var(--text-secondary); line-height: 2;
  margin-bottom: 40px;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.7s forwards;
}
.hero__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--text-white); font-family: var(--font-logo); font-weight: 700;
  font-size: 1rem; padding: 16px 40px;
  border-radius: var(--radius-full); box-shadow: var(--shadow-gold);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.9s forwards;
}
.hero__cta:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(200,150,62,0.35); }
.cta-arrow { transition: transform 0.3s; }
.hero__cta:hover .cta-arrow { transform: translateX(4px); }

.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeIn 1s var(--ease) 1.2s forwards;
}
.hero__scroll span {
  font-family: var(--font-logo); font-size: 0.7rem; color: rgba(0,0,0,0.25);
  letter-spacing: 0.15em; text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 40px; background: rgba(0,0,0,0.1);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: var(--gold);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0% { top: -100%; } 50% { top: 100%; } 100% { top: 100%; }
}

/* --- 6. SECTIONS COMMON --- */
.section { padding: var(--section-py) 0; }
.section--light { background: var(--bg-primary); }
.section--alt { background: var(--bg-alt); }
.section__header { text-align: center; margin-bottom: 64px; }
.section__label {
  display: inline-block; font-family: var(--font-en); font-size: 0.8rem;
  font-weight: 700; color: var(--gold); letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 12px;
}
.section__label--light { color: var(--gold-light); }
.section__title {
  font-family: var(--font-ja); font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900; color: var(--text); line-height: 1.4;
}
.section__subtitle {
  font-size: 0.95rem; color: var(--text-secondary); margin-top: 12px;
}

/* --- 7. MISSION --- */
.mission__main { margin-bottom: 64px; }
.mission__block {
  text-align: center; padding: 40px 24px;
}
.mission__block + .mission__block { border-top: 1px solid var(--border); }
.mission__label {
  font-family: var(--font-en); font-size: 0.75rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.2em; margin-bottom: 16px;
  display: inline-block;
}
.mission__text {
  font-family: var(--font-ja); font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 900; line-height: 1.6; color: var(--text);
}
.values {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.values__card {
  background: var(--bg-surface); border-radius: var(--radius-md);
  padding: 40px 28px; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.values__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.values__icon {
  width: 56px; height: 56px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); background: linear-gradient(135deg, rgba(200,150,62,0.1), rgba(200,150,62,0.05));
  border-radius: var(--radius-sm);
}
.values__icon svg { width: 28px; height: 28px; }
.values__title {
  font-family: var(--font-ja); font-size: 1.2rem; font-weight: 700;
  margin-bottom: 12px; color: var(--text);
}
.values__desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; }

/* --- 8. SERVICE --- */
.service__main { text-align: center; margin-bottom: 56px; }
.service__badge {
  display: inline-block; font-family: var(--font-en); font-size: 0.8rem;
  font-weight: 700; color: var(--gold-dark);
  background: linear-gradient(135deg, var(--gold-lighter), rgba(200,150,62,0.15));
  padding: 6px 20px; border-radius: var(--radius-full);
  letter-spacing: 0.05em; margin-bottom: 16px;
  border: 1px solid rgba(200,150,62,0.3);
}
.service__name {
  font-family: var(--font-en); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 16px;
}
.service__tagline {
  font-size: 1.1rem; font-weight: 600; color: var(--text); margin-bottom: 20px; line-height: 1.8;
}
.service__desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 2; }

.service__features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--bg-surface); border-radius: var(--radius-md);
  padding: 36px 28px; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-card__icon { font-size: 2.4rem; margin-bottom: 16px; }
.feature-card__title {
  font-family: var(--font-ja); font-size: 1.05rem; font-weight: 700;
  margin-bottom: 12px; color: var(--text);
}
.feature-card__desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.8; }

/* --- 9. WHY POICASI --- */
.comparison {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: stretch;
}
.comparison__col {
  background: var(--bg-surface); border-radius: var(--radius-md);
  padding: 36px 32px; box-shadow: var(--shadow-sm);
}
.comparison__col--before { border: 1px solid var(--border); }
.comparison__col--after {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(180deg, #FFFDF5 0%, #FFF8E1 100%);
}
.comparison__heading {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.15rem; font-weight: 700; margin-bottom: 24px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.comparison__icon { font-size: 1.4rem; }
.comparison__list { display: flex; flex-direction: column; gap: 16px; }
.comparison__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; line-height: 1.7; color: var(--text-secondary);
}
.comparison__x { color: #EF4444; font-weight: 700; flex-shrink: 0; }
.comparison__o { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.comparison__col--after .comparison__list li { color: var(--text); }
.comparison__divider {
  display: flex; align-items: center; justify-content: center; padding: 0 20px;
}
.comparison__divider span {
  font-family: var(--font-en); font-size: 1rem; font-weight: 800;
  color: var(--text-secondary); background: var(--bg-primary);
  padding: 12px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

/* --- 10. NEWS --- */
.news__list { max-width: 800px; margin: 0 auto; }
.news__item {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 0; border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.news__item:first-child { border-top: 1px solid var(--border); }
.news__date {
  font-family: var(--font-en); font-size: 0.85rem; font-weight: 600;
  color: var(--text-secondary); white-space: nowrap; min-width: 100px;
}
.news__tag {
  font-size: 0.7rem; font-weight: 700; padding: 3px 12px;
  border-radius: var(--radius-full); white-space: nowrap;
}
.news__tag--info { background: rgba(124,58,237,0.1); color: var(--accent); }
.news__tag--corporate { background: rgba(200,150,62,0.15); color: var(--gold-dark); }
.news__title { font-size: 0.95rem; color: var(--text); }

/* --- 11. MESSAGE --- */
.section--message {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-alt) 100%);
}
.message__content {
  max-width: 780px; margin: 0 auto;
  background: var(--bg-surface); border-radius: var(--radius-lg);
  padding: 56px 48px; box-shadow: var(--shadow-md);
  position: relative; border: 1px solid var(--border);
}
.message__content::before {
  content: '\201C'; position: absolute; top: 16px; left: 32px;
  font-size: 5rem; color: var(--gold-lighter); font-family: Georgia, serif;
  line-height: 1;
}
.message__body { position: relative; z-index: 1; }
.message__body p { font-size: 0.95rem; color: var(--text); line-height: 2; margin-bottom: 20px; }
.message__body p:last-child { margin-bottom: 0; }
.message__body strong { color: var(--gold-dark); }
.message__author {
  display: flex; align-items: center; gap: 16px;
  margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border);
}
.message__position {
  font-size: 0.8rem; color: var(--text-secondary); display: block; margin-bottom: 2px;
}
.message__name {
  font-family: var(--font-ja); font-size: 1.2rem; font-weight: 700; color: var(--text);
}

/* --- 12. COMPANY --- */
.company__table-wrap {
  max-width: 800px; margin: 0 auto;
  background: var(--bg-surface); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.company__table th, .company__table td {
  padding: 20px 28px; text-align: left; font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.company__table tr:last-child th, .company__table tr:last-child td { border-bottom: none; }
.company__table th {
  background: rgba(200,150,62,0.06); font-weight: 600; color: var(--text);
  width: 160px; white-space: nowrap;
}
.company__table td { color: var(--text-secondary); }
.company__table td a { color: var(--gold); text-decoration: underline; }
.company__table td a:hover { color: var(--gold-dark); }

/* --- 13. RECRUIT --- */
.section--recruit {
  background: linear-gradient(135deg, #0F0A1F, #1A1033, #1B1050);
  position: relative; overflow: hidden;
}
.section--recruit::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,150,62,0.08), transparent 60%);
}
.recruit__content { text-align: center; position: relative; z-index: 1; padding: 20px 0; }
.recruit__title {
  font-family: var(--font-ja); font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900; color: var(--text-white); line-height: 1.6; margin: 16px 0 20px;
}
.recruit__desc { font-size: 0.95rem; color: rgba(255,255,255,0.6); margin-bottom: 36px; line-height: 1.8; }
.recruit__cta {
  display: inline-flex; padding: 16px 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--text-white); font-weight: 700; border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.recruit__cta:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(200,150,62,0.35); }

/* --- 14. CONTACT --- */
.contact__form-wrap { max-width: 640px; margin: 0 auto; }
.contact__form {
  background: var(--bg-surface); border-radius: var(--radius-md);
  padding: 48px 40px; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.form__group { margin-bottom: 24px; }
.form__label {
  display: block; font-size: 0.9rem; font-weight: 600; color: var(--text);
  margin-bottom: 8px;
}
.form__required {
  font-size: 0.7rem; color: var(--gold); background: rgba(200,150,62,0.1);
  padding: 2px 8px; border-radius: var(--radius-full); margin-left: 6px;
}
.form__input, .form__select, .form__textarea {
  width: 100%; padding: 14px 16px; font-size: 0.95rem;
  border: 1px solid #E5E7EB; border-radius: var(--radius-sm);
  background: var(--bg-primary); color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,150,62,0.1);
}
.form__input::placeholder, .form__textarea::placeholder { color: #C4C4C4; }
.form__select { cursor: pointer; appearance: auto; }
.form__textarea { resize: vertical; min-height: 120px; }
.form__privacy { margin: 28px 0; }
.form__checkbox-label {
  display: flex; align-items: center; gap: 8px; font-size: 0.9rem;
  color: var(--text-secondary); cursor: pointer;
}
.form__checkbox-label a { color: var(--gold); text-decoration: underline; }
.form__checkbox { width: 18px; height: 18px; accent-color: var(--gold); cursor: pointer; }
.form__submit {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--text-white); font-size: 1rem; font-weight: 700;
  border-radius: var(--radius-sm); cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, opacity 0.3s;
}
.form__submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.form__submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.contact__note {
  text-align: center; font-size: 0.8rem; color: var(--text-secondary);
  margin-top: 20px;
}

/* --- 15. FOOTER --- */
.footer { background: var(--bg-dark); padding: 56px 0 0; }
.footer__inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-logo); font-weight: 700; font-size: 1.3rem;
  color: var(--text-white);
}
.footer .logo-mark { display: flex; align-items: center; line-height: 0; }
.footer__tagline { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 8px; }
.footer__links {
  display: flex; flex-wrap: wrap; gap: 20px 32px;
}
.footer__links a {
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--gold-light); }
.footer__bottom {
  text-align: center; padding: 24px 0;
}
.footer__bottom p {
  font-family: var(--font-en); font-size: 0.75rem;
  color: rgba(255,255,255,0.3); letter-spacing: 0.05em;
}

/* --- 16. ANIMATIONS --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --- 17. RESPONSIVE --- */
@media (max-width: 1024px) {
  :root { --section-py: 96px; }
}
@media (max-width: 768px) {
  :root { --section-py: 72px; --header-h: 64px; }

  .header__nav {
    position: fixed; inset: 0; background: rgba(15,10,31,0.97);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.4s var(--ease);
    backdrop-filter: blur(20px);
  }
  .header__nav.active { opacity: 1; visibility: visible; }
  .header__nav.active .nav__link { color: rgba(255,255,255,0.8) !important; }
  .header__nav.active .nav__link--cta { color: var(--text-white) !important; }
  .nav__list { flex-direction: column; gap: 28px; text-align: center; }
  .nav__link { font-size: 1.1rem; }
  .header__hamburger { display: flex; }
  .header__hamburger.active span { background: #fff !important; }

  .hero__title { font-size: clamp(1.7rem, 6vw, 2.5rem); }
  .hero__desc { font-size: 0.9rem; }

  .values { grid-template-columns: 1fr; gap: 16px; }
  .service__features { grid-template-columns: 1fr; gap: 16px; }

  .comparison { grid-template-columns: 1fr; gap: 16px; }
  .comparison__divider {
    padding: 12px 0;
  }

  .news__item { flex-direction: column; align-items: flex-start; gap: 8px; }
  .news__date { min-width: auto; }

  .message__content { padding: 40px 28px; }
  .message__content::before { font-size: 3rem; top: 8px; left: 16px; }

  .company__table th, .company__table td {
    display: block; width: 100%; padding: 12px 20px;
  }
  .company__table th { padding-bottom: 4px; border-bottom: none; font-size: 0.8rem; color: var(--gold); }
  .company__table td { padding-top: 0; }

  .contact__form { padding: 32px 24px; }

  .footer__inner { flex-direction: column; gap: 28px; }
  .footer__links { gap: 12px 24px; }
}
@media (max-width: 480px) {
  :root { --section-py: 56px; }
  .section__header { margin-bottom: 40px; }
  .hero__cta { padding: 14px 32px; font-size: 0.9rem; }
}
