/* ==========================================================================
   SkyBase Systems — Corporate Website Styles
   ========================================================================== */

:root {
  --color-primary: #0F172A;
  --color-secondary: #2563EB;
  --color-accent: #64748B;
  --color-bg: #FFFFFF;
  --color-light: #F8FAFC;
  --color-border: #E2E8F0;
  --color-text: #334155;
  --color-text-light: #64748B;

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

  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.1);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --header-height: 72px;
  --container-max: 1200px;
  --section-padding: 96px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
}

.btn--primary:hover {
  background: #1D4ED8;
  border-color: #1D4ED8;
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}

.btn--outline:hover {
  border-color: var(--color-primary);
  background: var(--color-light);
}

.btn--full {
  width: 100%;
}

/* Header
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.header--scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo__image {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
}

.logo__text {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.logo__text strong {
  font-weight: 700;
}

.logo--footer .logo__text {
  color: #fff;
}

.logo--footer .logo__image {
  background: #fff;
}

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

.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-accent);
  transition: color 0.15s;
}

.nav__link:hover {
  color: var(--color-primary);
}

.header__cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero
   ========================================================================== */

.hero {
  padding: calc(var(--header-height) + 80px) 0 var(--section-padding);
  background: var(--color-bg);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Dashboard Mockup
   ========================================================================== */

.dashboard-mockup {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.dashboard-mockup__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  background: var(--color-light);
  border-bottom: 1px solid var(--color-border);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot--red { background: #FCA5A5; }
.dot--yellow { background: #FDE68A; }
.dot--green { background: #86EFAC; }

.dashboard-mockup__body {
  display: flex;
  min-height: 340px;
}

.dashboard-mockup__sidebar {
  width: 56px;
  padding: 16px 12px;
  background: var(--color-light);
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-item {
  height: 8px;
  border-radius: 4px;
  background: var(--color-border);
}

.sidebar-item--active {
  background: var(--color-secondary);
  width: 80%;
}

.dashboard-mockup__main {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-card {
  background: var(--color-light);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.stat-card__label {
  height: 6px;
  width: 60%;
  background: var(--color-border);
  border-radius: 3px;
  margin-bottom: 8px;
}

.stat-card__value {
  height: 14px;
  width: 40%;
  background: var(--color-primary);
  border-radius: 3px;
  opacity: 0.15;
}

.chart-area {
  flex: 1;
  background: var(--color-light);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  align-items: flex-end;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  width: 100%;
  height: 100%;
}

.chart-bar {
  flex: 1;
  background: var(--color-secondary);
  border-radius: 3px 3px 0 0;
  opacity: 0.7;
  min-height: 20px;
}

.table-area {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.table-row {
  height: 10px;
  background: var(--color-light);
  border-radius: 3px;
}

.table-row:nth-child(1) { width: 100%; }
.table-row:nth-child(2) { width: 85%; }
.table-row:nth-child(3) { width: 70%; }

/* Section Shared
   ========================================================================== */

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Features
   ========================================================================== */

.features {
  padding: var(--section-padding) 0;
  background: var(--color-light);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-light);
  border-radius: var(--radius-sm);
  color: var(--color-secondary);
  margin-bottom: 20px;
}

.feature-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.feature-card__text {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Products
   ========================================================================== */

.products {
  padding: var(--section-padding) 0;
  background: var(--color-bg);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #CBD5E1;
}

.product-card__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-secondary);
  background: #EFF6FF;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.product-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.product-card__text {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.65;
  margin-bottom: 20px;
}

.product-card__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-secondary);
  transition: color 0.15s;
}

.product-card__link:hover {
  color: #1D4ED8;
}

/* About
   ========================================================================== */

.about {
  padding: var(--section-padding) 0;
  background: var(--color-light);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__text {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about__list {
  margin-top: 24px;
}

.about__list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.9375rem;
  color: var(--color-text);
  margin-bottom: 10px;
}

.about__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--color-secondary);
  border-radius: 50%;
}

.about__stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-stat {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
}

.about-stat__number {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.about-stat__label {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-weight: 500;
}

/* Contact
   ========================================================================== */

.contact {
  padding: var(--section-padding) 0;
  background: var(--color-bg);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.contact__text {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.75;
  margin: 16px 0 32px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--color-text);
}

.contact__detail svg {
  color: var(--color-secondary);
  flex-shrink: 0;
}

.contact__form {
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Footer
   ========================================================================== */

.footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.7);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding: 64px 24px 48px;
}

.footer__tagline {
  font-size: 0.875rem;
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  gap: 64px;
}

.footer__col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 16px;
}

.footer__col ul li {
  margin-bottom: 10px;
}

.footer__col a {
  font-size: 0.875rem;
  transition: color 0.15s;
}

.footer__col a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.footer__bottom p {
  font-size: 0.8125rem;
  text-align: center;
}

/* Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  :root {
    --section-padding: 72px;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__grid {
    gap: 48px;
  }

  .about__grid {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    padding: 16px 24px 24px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }

  .nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .nav__link {
    display: block;
    padding: 10px 0;
    font-size: 1rem;
  }

  .header__cta {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header-height) + 48px);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__subtitle {
    max-width: none;
  }

  .hero__visual {
    order: -1;
  }

  .dashboard-mockup__body {
    min-height: 260px;
  }

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

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

  .about__stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .about-stat {
    flex: 1;
    min-width: 140px;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 36px;
  }

  .footer__links {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .features__grid {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .about__stats {
    flex-direction: column;
  }

  .contact__form {
    padding: 24px;
  }

  .footer__links {
    flex-direction: column;
    gap: 28px;
  }
}

/* Modern refinements
   ========================================================================== */

.header {
  background: rgba(255, 255, 255, 0.98);
}

.header__inner {
  gap: 20px;
}

.logo {
  gap: 12px;
}

.logo__image {
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.nav {
  margin-left: auto;
}

.nav__list {
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-light);
}

.nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--color-accent);
  font-weight: 600;
}

.nav__link:hover,
.nav__link--active {
  background: #fff;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.header__cta {
  padding: 10px 18px;
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 86px) 0 96px;
  border-bottom: 1px solid var(--color-border);
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 360px;
  height: 360px;
  top: 96px;
  right: -140px;
}

.hero::after {
  width: 220px;
  height: 220px;
  bottom: -80px;
  left: -80px;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 72px;
  align-items: center;
  max-width: var(--container-max);
  text-align: left;
}

.hero__content {
  max-width: 690px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 7px 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-secondary);
  background: var(--color-light);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__title {
  max-width: 720px;
  margin-left: 0;
  margin-right: 0;
  font-size: clamp(2.65rem, 5.6vw, 4.9rem);
  line-height: 1.02;
}

.hero__subtitle {
  max-width: 620px;
  margin-left: 0;
  margin-right: 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero__actions {
  justify-content: flex-start;
}

.hero__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 24px;
  color: var(--color-accent);
  font-size: 0.95rem;
}

.hero__contact a {
  color: var(--color-primary);
  font-weight: 600;
}

.hero__panel {
  position: relative;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.hero__panel::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  pointer-events: none;
}

.hero__panel-header,
.hero__panel-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero__panel-header {
  margin-bottom: 24px;
}

.hero__panel-label {
  color: var(--color-primary);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero__panel-status {
  padding: 6px 10px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-secondary);
  background: var(--color-light);
  font-size: 0.75rem;
  font-weight: 700;
}

.hero__suite {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.hero__suite-item {
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-light);
}

.hero__suite-item span {
  display: block;
  margin-bottom: 4px;
  color: var(--color-secondary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero__suite-item strong {
  display: block;
  color: var(--color-primary);
  font-size: 1rem;
  line-height: 1.35;
}

.hero__panel-footer {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
  color: var(--color-accent);
  font-size: 0.86rem;
  font-weight: 600;
}

.products {
  background: var(--color-light);
}

.product-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  padding: 34px;
}

.product-card__badge {
  background: #DBEAFE;
}

.contact {
  background: var(--color-bg);
}

.contact-card {
  background: var(--color-primary);
  color: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-card__label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #BFDBFE;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.contact-card p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-card__link {
  display: block;
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 600;
}

.contact__detail a {
  color: var(--color-primary);
  font-weight: 600;
  overflow-wrap: anywhere;
}

@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  .container {
    padding: 0 18px;
  }

  .header {
    height: 68px;
  }

  .header__inner {
    height: 68px;
  }

  .nav {
    margin-left: 0;
  }

  .nav__list {
    align-items: stretch;
    width: 100%;
    padding: 6px;
    border-radius: 18px;
    background: var(--color-light);
  }

  .nav__link {
    width: 100%;
    justify-content: center;
    min-height: 42px;
  }

  .logo__text {
    font-size: 1rem;
  }

  .logo__image {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding: 122px 0 72px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .hero__content {
    max-width: none;
  }

  .hero__title {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions,
  .hero__contact {
    justify-content: center;
  }

  .hero__actions .btn {
    min-height: 48px;
  }

  .hero__panel {
    padding: 22px;
    text-align: left;
  }

  .products__grid {
    gap: 18px;
  }

  .product-card,
  .about-stat,
  .contact-card {
    border-radius: 18px;
  }

  .contact-card {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    width: 100%;
  }

  .hero__panel-header,
  .hero__panel-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__contact {
    flex-direction: column;
    gap: 4px;
  }

  .product-card {
    padding: 26px;
  }

  .contact__detail {
    align-items: flex-start;
  }
}
