:root {
  --bg: #07111f;
  --bg-soft: #0f1d33;
  --card: #10223c;
  --text: #f8fbff;
  --muted: #9fb3ce;
  --accent: #34d399;
  --accent-2: #38bdf8;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #07111f 0%, #0c1830 100%);
  color: var(--text);
  line-height: 1.6;
}

.mobile-call-banner {
  display: none;
}

.banner-label {
  display: none;
}

.sticky-call-bar {
  display: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.hero {
  padding: 70px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.badge,
.mini-label {
  display: inline-block;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.badge {
  margin-bottom: 14px;
  padding: 6px 12px;
  background: rgba(52, 211, 153, 0.12);
  color: var(--accent);
}

.mini-label {
  padding: 4px 10px;
  background: rgba(56, 189, 248, 0.15);
  color: var(--accent-2);
  margin-bottom: 12px;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
}

.brand-heading {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: 0.05em;
}

.subtitle {
  color: var(--muted);
  max-width: 720px;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--accent);
  color: #012c1a;
  text-decoration: none;
  font-weight: 700;
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.hero-card,
.service-card,
.feature-box,
.contact-box,
.process-step {
  background: rgba(16, 34, 60, 0.9);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-panel {
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(52, 211, 153, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px;
}

.hero-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.panel-badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.15);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-panel-body p {
  margin: 0 0 14px;
  color: var(--muted);
}

.hero-panel-phone {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-panel-phone a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.service-promo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.promo-icon {
  min-width: 62px;
  min-height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), #1d4ed8);
  color: white;
  font-weight: 700;
}

.service-promo p {
  margin: 4px 0 0;
  color: var(--muted);
}

.section {
  padding: 40px 0;
}

.section-title h2 {
  margin: 0 0 6px;
  font-size: 1.9rem;
}

.section-title p {
  margin: 0 0 24px;
  color: var(--muted);
}

.services-grid,
.features-grid,
.process-grid,
.info-grid,
.faq-grid,
.about-grid,
.brand-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.brand-links-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.brand-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 12px 14px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  background: linear-gradient(180deg, rgba(24, 45, 78, 0.98), rgba(12, 24, 46, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, background 0.2s ease;
}

.brand-link:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(33, 60, 102, 0.98), rgba(16, 34, 60, 0.98));
}

.service-card,
.feature-box,
.process-step,
.info-card,
.faq-item,
.about-card {
  padding: 22px;
}

.info-card,
.faq-item,
.about-card {
  background: rgba(16, 34, 60, 0.9);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.info-card h3,
.faq-item h3 {
  margin-top: 0;
  color: var(--accent-2);
}

.service-card h3,
.process-step h3 {
  margin-top: 0;
  color: var(--accent-2);
}

.process-step span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-weight: 700;
}

.alt-bg {
  background: rgba(255, 255, 255, 0.02);
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 24px;
}

.contact-list p {
  margin: 10px 0;
}

.site-disclaimer {
  padding: 14px 18px 28px;
  text-align: center;
}

.site-disclaimer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.site-footer {
  margin-top: 6px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 23, 40, 0.9);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 24px;
  padding: 16px 0;
}

.footer-inner a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
}

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

@media (max-width: 860px) {
  .sticky-call-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
    background: rgba(7, 17, 31, 0.94);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
  }

  .sticky-call-btn {
    display: inline-block;
    text-align: center;
    padding: 12px 14px;
    border-radius: 10px;
    background: var(--accent);
    color: #012c1a;
    text-decoration: none;
    font-weight: 700;
    animation: pulseCallButtons 1.8s infinite;
  }

  .sticky-call-btn.secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    animation: pulseCallButtons 1.8s infinite 0.3s;
  }

  .footer-inner {
    justify-content: flex-start;
    gap: 10px 16px;
    padding: 14px 0;
  }

  .footer-inner a {
    font-size: 0.9rem;
  }

  .info-grid,
  .faq-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .mobile-call-banner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
    position: sticky;
    top: 0;
    z-index: 5;
    padding: 10px 12px;
    background: linear-gradient(90deg, #0f3d55, #0b1830);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    animation: pulseCall 1.8s infinite;
  }

  .banner-label {
    display: inline-block;
    font-size: 0.73rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    justify-self: start;
  }

  .banner-icon {
    justify-self: center;
    color: var(--accent);
    font-size: 0.95rem;
    line-height: 1;
  }

  .mobile-call-banner a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
    justify-self: end;
    text-align: right;
  }

  .hero-grid,
  .services-grid,
  .features-grid,
  .process-grid,
  .contact-box,
  .info-grid,
  .faq-grid,
  .about-grid,
  .brand-links-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero-panel {
    order: -2;
  }

  .hero-panel-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-panel-phone {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 42px;
  }
}

@keyframes pulseCall {
  0%, 100% {
    opacity: 0.75;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes pulseCallButtons {
  0%, 100% {
    opacity: 0.86;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 1.9rem;
  }

  .brand-heading {
    font-size: 2.25rem !important;
    line-height: 1.1;
    letter-spacing: 0.03em;
  }

  .page-toshiba .brand-heading {
    font-size: 2.15rem;
    letter-spacing: 0.02em;
  }

  .page-toshiba .hero-panel {
    padding: 16px 14px;
  }

  .page-toshiba .hero-panel-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .page-toshiba .panel-badge {
    font-size: 0.84rem;
    white-space: nowrap;
  }

  .page-toshiba .hero-panel-top strong {
    font-size: 0.98rem;
  }

  .page-toshiba .hero-panel-body p,
  .page-toshiba .hero-panel-phone a {
    font-size: 1rem;
    line-height: 1.45;
  }

  .page-toshiba .hero-panel-phone {
    gap: 8px;
    flex-wrap: nowrap;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .cta-row {
    flex-direction: column;
  }
}
