/* ===== Variables ===== */
:root {
  --blue-900: #002855;
  --blue-800: #003d7a;
  --blue-700: #0052a3;
  --blue-600: #0066cc;
  --blue-500: #1a7fd4;
  --blue-400: #4da3e8;
  --blue-100: #e8f2fc;
  --blue-50: #f4f9fd;
  --white: #ffffff;
  --gray-100: #f5f7fa;
  --gray-200: #e8ecf1;
  --gray-400: #94a3b8;
  --gray-600: #64748b;
  --gray-800: #1e293b;
  --green: #10b981;
  --red: #ef4444;
  --shadow-sm: 0 1px 3px rgba(0, 40, 85, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 40, 85, 0.12);
  --shadow-lg: 0 10px 40px rgba(0, 40, 85, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Ticker Bar ===== */
.ticker-bar {
  background: var(--blue-900);
  color: var(--white);
  display: flex;
  align-items: stretch;
  height: 44px;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 2px solid var(--blue-600);
}

.ticker-label {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-700);
  padding: 0 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.ticker-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--blue-900), transparent);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--blue-900), transparent);
}

.ticker-track {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  animation: tickerScroll 60s linear infinite;
  will-change: transform;
}

.ticker-track:hover { animation-play-state: paused; }

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  font-size: 0.85rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  height: 100%;
}

.ticker-symbol {
  font-weight: 700;
  color: var(--blue-400);
}

.ticker-price { font-weight: 600; }

.ticker-change {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}

.ticker-change.up { color: #6ee7b7; background: rgba(16,185,129,0.15); }
.ticker-change.down { color: #fca5a5; background: rgba(239,68,68,0.15); }
.ticker-change.neutral { color: var(--gray-400); background: rgba(255,255,255,0.08); }

.ticker-loading {
  display: flex;
  align-items: center;
  padding: 0 24px;
  font-size: 0.85rem;
  color: var(--blue-400);
  animation: none;
}

/* ===== Header ===== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 44px;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.logo-img {
  height: 58px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.footer-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius-lg);
  padding: 16px 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.footer-logo {
  height: 100px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 320px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover { color: var(--blue-700); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-900);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 102, 204, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-700) 50%, var(--blue-600) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(77,163,232,0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 24px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius-lg);
  padding: 20px 36px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-logo {
  height: clamp(150px, 28vw, 240px);
  width: auto;
  max-width: min(88vw, 460px);
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(90deg, #93c5fd, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 24px 48px;
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* ===== Sections ===== */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--blue-50);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-tag {
  display: inline-block;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--gray-600);
  font-size: 1rem;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 24px;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.about-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 10px;
}

.about-card p {
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ===== Features ===== */
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.features-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--blue-100);
  color: var(--blue-700);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.market-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.market-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: var(--blue-900);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6ee7b7;
}

.market-index {
  padding: 24px;
  border-bottom: 1px solid var(--gray-200);
}

.index-value {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue-900);
  line-height: 1;
  margin-bottom: 6px;
}

.index-change {
  font-size: 0.9rem;
  font-weight: 600;
}

.index-change.up { color: var(--green); }
.index-change.down { color: var(--red); }

.market-mini-list {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mini-stock {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}

.mini-stock-name { font-weight: 600; color: var(--blue-900); }
.mini-stock-price { font-weight: 700; }
.mini-stock-change { font-size: 0.8rem; font-weight: 600; }
.mini-stock-change.up { color: var(--green); }
.mini-stock-change.down { color: var(--red); }

/* ===== News ===== */
.news-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.news-update-time {
  font-size: 0.82rem;
  color: var(--gray-400);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 24px;
}

.news-loading {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 60px;
  color: var(--gray-600);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--blue-100);
  border-top-color: var(--blue-600);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.news-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-400);
}

.news-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-700);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.news-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-900);
  line-height: 1.45;
  flex: 1;
}

.news-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-date {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 500;
}

.news-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-600);
}

.news-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  color: var(--gray-600);
  background: var(--blue-50);
  border-radius: var(--radius);
  border: 1px dashed var(--blue-400);
}

/* ===== Social ===== */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 20px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

.social-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-icon svg { width: 24px; height: 24px; }

.social-card.instagram .social-icon { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: white; }
.social-card.tiktok .social-icon { background: #010101; color: white; }
.social-card.facebook .social-icon { background: #1877f2; color: white; }
.social-card.youtube .social-icon { background: #ff0000; color: white; }
.social-card.telegram .social-icon { background: #0088cc; color: white; }

.social-info { flex: 1; }
.social-info h3 { font-size: 0.95rem; font-weight: 700; color: var(--blue-900); margin-bottom: 2px; }
.social-info p { font-size: 0.82rem; color: var(--gray-600); }

.social-arrow {
  font-size: 1.2rem;
  color: var(--blue-400);
  transition: transform 0.2s;
}

.social-card:hover .social-arrow { transform: translateX(4px); color: var(--blue-700); }

/* ===== Contact Form ===== */
.contact-form-section {
  margin-bottom: 0;
}

.social-section {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--gray-200);
}

.contact-form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue-900);
}

.required {
  color: var(--red);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.12);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown) {
  border-color: var(--red);
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  border: none;
}

.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: 16px;
  font-size: 0.9rem;
  text-align: center;
  min-height: 1.4em;
}

.form-message.success {
  color: var(--green);
  font-weight: 600;
}

.form-message.error {
  color: var(--red);
  font-weight: 600;
}

/* ===== Footer ===== */
.footer {
  background: var(--blue-900);
  color: rgba(255,255,255,0.8);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  max-width: 600px;
  line-height: 1.5;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .container { padding: 0 20px; }

  .features-layout { grid-template-columns: 1fr; gap: 40px; }

  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    gap: 4px;
    max-height: calc(100vh - 116px);
    overflow-y: auto;
  }

  .nav.open { display: flex; }

  .nav a {
    padding: 14px 12px;
    font-size: 1rem;
    border-radius: 8px;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav a:hover,
  .nav a:active {
    background: var(--blue-50);
    color: var(--blue-700);
  }

  .menu-toggle { display: flex; }

  .form-row { grid-template-columns: 1fr; }

  .section-header { margin-bottom: 36px; }

  .hero-logo-wrap {
    width: calc(100% - 8px);
    max-width: 100%;
    padding: 16px 20px;
  }

  .hero-logo {
    max-width: 100%;
    height: clamp(110px, 32vw, 180px);
  }

  .index-value { font-size: 2rem; }

  .news-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }

  .ticker-bar { height: 40px; }
  .ticker-label { font-size: 0.6rem; padding: 0 8px; gap: 5px; }
  .ticker-item { padding: 0 14px; font-size: 0.75rem; gap: 6px; }
  .ticker-change { font-size: 0.7rem; padding: 2px 4px; }
  .ticker-wrap::before,
  .ticker-wrap::after { width: 24px; }

  .header { top: 40px; }
  .header-inner { height: 64px; }

  .logo-img { height: 42px; max-width: 150px; }

  .hero {
    padding: 48px 0 40px;
    padding-top: max(48px, env(safe-area-inset-top));
  }

  .hero-logo-wrap {
    padding: 12px 16px;
    margin-bottom: 16px;
    border-radius: var(--radius);
  }

  .hero-logo { height: 110px; }

  .hero-badge {
    font-size: 0.75rem;
    padding: 5px 12px;
    margin-bottom: 16px;
  }

  .hero h1 { font-size: 1.75rem; margin-bottom: 14px; }

  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 32px;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 14px 20px;
    min-height: 48px;
  }

  .hero-stats {
    padding: 16px;
    gap: 16px;
    flex-direction: column;
  }

  .stat { width: 100%; }
  .stat-divider { display: none; }
  .stat-value { font-size: 1.5rem; }

  .section { padding: 48px 0; }
  .section-header { margin-bottom: 28px; }
  .section-header h2 { font-size: 1.45rem; }
  .section-header p { font-size: 0.92rem; }

  .about-card { padding: 24px 20px; }

  .market-card-header { padding: 14px 16px; font-size: 0.85rem; }
  .market-index { padding: 18px 16px; }
  .market-mini-list { padding: 14px 16px; }

  .mini-stock {
    flex-wrap: wrap;
    gap: 4px 8px;
  }

  .news-card { padding: 20px; }
  .news-loading { padding: 40px 20px; }

  .social-card { padding: 16px 18px; }

  .contact-form { padding: 20px 16px; }
  .social-section { margin-top: 40px; padding-top: 40px; }

  .form-group input,
  .form-group select {
    font-size: 16px;
    padding: 14px;
    min-height: 48px;
  }

  .form-submit { min-height: 48px; font-size: 1rem; }

  .footer {
    padding: 40px 0 28px;
    padding-bottom: max(28px, env(safe-area-inset-bottom));
  }

  .footer-logo-wrap { padding: 10px 16px; margin-bottom: 12px; }
  .footer-logo { height: 76px; max-width: 220px; }

  .footer-links {
    gap: 12px 20px;
    flex-direction: column;
  }

  .footer-links a {
    padding: 8px 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .footer-disclaimer { font-size: 0.7rem; padding: 0 8px; }
}

@media (max-width: 380px) {
  .hero-logo { height: 96px; }
  .logo-img { max-width: 130px; }
  .ticker-label { letter-spacing: 0.04em; }
}
