:root {
  /* Dark base */
  --bg-deep: #020617;        /* very dark navy */
  --bg-dark: #050816;
  --bg-dark-alt: #0b1220;
  --bg-deep-blue: #020c24;

  /* Accents */
  --yellow: #facc15;
  --yellow-soft: #fde68a;
  --orange: #f97316;
  --orange-soft: #fed7aa;
  --green: #22c55e;
  --green-soft: #bbf7d0;
  --blue: #3b82f6;
  --blue-soft: #bfdbfe;

  /* Text & generic */
  --text-main: #e5e7eb;
  --text-soft: #9ca3af;
  --text-muted: #6b7280;

  --border-subtle: rgba(148, 163, 184, 0.45);
  --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.6);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at top, #111827 0%, var(--bg-deep) 42%, #020617 100%);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Announcement bar */
.announcement-bar {
  background: linear-gradient(90deg, #0f172a, #1e293b);
  color: var(--text-soft);
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.announcement-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-right: 0.5rem;
}

/* Header / Nav */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: conic-gradient(from 120deg, var(--yellow), var(--orange), var(--green), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #020617;
  font-weight: 800;
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.8);
}

.logo-text-main {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.logo-text-sub {
  font-size: 0.68rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-soft);
}

nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.94rem;
}

nav a {
  opacity: 0.85;
  transition: opacity 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

nav a:hover {
  opacity: 1;
  color: var(--yellow);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--yellow);
  color: #111827;
  font-weight: 600;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: #fde047;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.6);
}

/* Responsive nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 800px) {
  nav {
    position: fixed;
    top: 56px;
    right: 0;
    left: 0;
    background: #020617;
    flex-direction: column;
    padding: 0.75rem 1.5rem 1rem;
    transform: translateY(-120%);
    transition: transform 0.22s ease;
  }

  nav.open {
    transform: translateY(0);
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 0.4rem;
  }

  .nav-toggle {
    display: block;
  }
}

/* Hero */
.hero {
  position: relative;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(250, 204, 21, 0.08), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(59, 130, 246, 0.18), transparent 55%),
    linear-gradient(135deg, #020617, #020c24 40%, #020617 100%);
  padding: 5rem 0 4rem;
}

.hero-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow-soft);
  margin-bottom: 0.7rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero h1 .highlight {
  color: var(--yellow);
}

.hero-subtitle {
  font-size: 1.02rem;
  max-width: 520px;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.6rem;
}

.badge {
  font-size: 0.78rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
}

.badge-yellow {
  border-color: rgba(250, 204, 21, 0.9);
  color: var(--yellow-soft);
}

.badge-blue {
  border-color: rgba(59, 130, 246, 0.9);
  color: var(--blue-soft);
}

.badge-green {
  border-color: rgba(34, 197, 94, 0.9);
  color: var(--green-soft);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.btn-primary {
  background: var(--yellow);
  color: #111827;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.65);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: #fde047;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.8);
}

.btn-secondary {
  background: transparent;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  color: var(--text-soft);
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.9);
  border-color: var(--blue-soft);
  color: var(--blue-soft);
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-note strong {
  color: var(--yellow-soft);
}

.hero-visual {
  background: radial-gradient(circle at top, rgba(148, 163, 184, 0.18), transparent 55%),
    rgba(15, 23, 42, 0.96);
  border-radius: 1.3rem;
  padding: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
}

.hero-visual-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
  margin-bottom: 0.9rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  font-size: 0.8rem;
}

.hero-card {
  border-radius: 0.9rem;
  padding: 0.8rem;
  background: #020617;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.hero-card h4 {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.hero-card span {
  font-size: 0.75rem;
  color: var(--text-soft);
}

.hero-card-yellow {
  border-color: rgba(250, 204, 21, 0.8);
}

.hero-card-blue {
  border-color: rgba(59, 130, 246, 0.8);
}

.hero-card-green {
  border-color: rgba(34, 197, 94, 0.8);
}

.hero-card-orange {
  border-color: rgba(249, 115, 22, 0.8);
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    padding-bottom: 1rem;
  }
  .hero-visual {
    margin-top: 1.8rem;
  }
}

/* Generic sections */
section {
  padding: 4rem 0;
}

.section-dark-alt {
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.06), transparent 55%),
    #020617;
}

.section-deep-blue {
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.09), transparent 55%),
    #020c24;
}

.section-deep {
  background: radial-gradient(circle at center, rgba(249, 115, 22, 0.06), transparent 58%),
    #020617;
}

.section-header {
  text-align: center;
  margin-bottom: 2.6rem;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.45rem;
}

.section-kicker-orange {
  color: var(--orange-soft);
}

.section-kicker-green {
  color: var(--green-soft);
}

.section-kicker-blue {
  color: var(--blue-soft);
}

.section-kicker-yellow {
  color: var(--yellow-soft);
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 0.96rem;
  max-width: 620px;
  margin: 0.25rem auto 0;
  color: var(--text-soft);
}

/* Solutions Preview */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.solution-card {
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.solution-card-blue {
  background: radial-gradient(circle at top, rgba(59, 130, 246, 0.16), transparent 60%),
    #020617;
}

.solution-card-yellow {
  background: radial-gradient(circle at top, rgba(250, 204, 21, 0.16), transparent 60%),
    #020617;
}

.solution-card-green {
  background: radial-gradient(circle at top, rgba(34, 197, 94, 0.16), transparent 60%),
    #020617;
}

.solution-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #020617;
}

.solution-icon.security {
  background: var(--blue-soft);
}

.solution-icon.automation {
  background: var(--yellow-soft);
}

.solution-icon.networking {
  background: var(--green-soft);
}

.solution-card h3 {
  font-size: 1.1rem;
}

.solution-card p {
  font-size: 0.92rem;
  color: var(--text-soft);
}

.solution-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.solution-meta-blue {
  color: var(--blue-soft);
}

.solution-meta-yellow {
  color: var(--yellow-soft);
}

.solution-meta-green {
  color: var(--green-soft);
}

.solution-link {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  color: var(--orange-soft);
  cursor: pointer;
  padding: 0;
}

.solution-link span {
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .solutions-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Tabs */
.tabs-wrapper {
  margin-top: 2.6rem;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.5);
  padding-bottom: 0.5rem;
  margin-bottom: 1.8rem;
}

.tab-button {
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  font-weight: 500;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.tab-button.active {
  background: linear-gradient(135deg, #0b1120, #020617);
  color: var(--yellow-soft);
  border-color: var(--yellow-soft);
}

.tab-panel {
  display: none;
  gap: 2.5rem;
  align-items: center;
}

.tab-panel.active {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
}

.tab-panel h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.tab-panel p {
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
  color: var(--text-soft);
}

.tab-bullets {
  margin: 0.5rem 0 1rem;
  padding-left: 1.05rem;
}

.tab-bullets li {
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}

.tab-bullets li::marker {
  color: var(--blue-soft);
}

.tab-cta {
  margin-top: 0.6rem;
}

.tab-media {
  border-radius: 1.2rem;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-align: center;
  padding: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.tab-media-blue {
  background: radial-gradient(circle at top, rgba(59, 130, 246, 0.2), transparent 60%),
    #020617;
}

.tab-media-yellow {
  background: radial-gradient(circle at top, rgba(250, 204, 21, 0.2), transparent 60%),
    #020617;
}

.tab-media-green {
  background: radial-gradient(circle at top, rgba(34, 197, 94, 0.2), transparent 60%),
    #020617;
}

@media (max-width: 900px) {
  .tab-panel.active {
    grid-template-columns: minmax(0, 1fr);
  }
  .tab-media {
    margin-top: 1rem;
  }
}

/* Industries */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 1.5rem 0 2rem;
}

.pill {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.84rem;
  background: #020617;
  color: var(--text-soft);
}

.pill-yellow {
  border-color: rgba(250, 204, 21, 0.9);
}

.pill-blue {
  border-color: rgba(59, 130, 246, 0.9);
}

.pill-orange {
  border-color: rgba(249, 115, 22, 0.9);
}

.pill-green {
  border-color: rgba(34, 197, 94, 0.9);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.industry-card {
  border-radius: 1rem;
  padding: 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: #020617;
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}

.industry-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.industry-card p {
  color: var(--text-soft);
}

.industry-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  display: inline-block;
  margin-bottom: 0.3rem;
}

.industry-label-yellow {
  color: var(--yellow-soft);
}

.industry-label-blue {
  color: var(--blue-soft);
}

.industry-label-green {
  color: var(--green-soft);
}

@media (max-width: 900px) {
  .industries-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.project-card {
  border-radius: 1rem;
  padding: 1.2rem;
  font-size: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #020617;
  box-shadow: var(--shadow-soft);
}

.project-card-yellow {
  border-color: rgba(250, 204, 21, 0.9);
}

.project-card-green {
  border-color: rgba(34, 197, 94, 0.9);
}

.project-card-blue {
  border-color: rgba(59, 130, 246, 0.9);
}

.project-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.35rem;
  color: var(--text-soft);
}

.project-tags {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.75rem;
}

.project-tag {
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.about-highlight {
  font-size: 0.9rem;
  border-left: 4px solid var(--yellow);
  padding-left: 1rem;
  margin: 1rem 0 1.2rem;
  color: var(--text-soft);
}

.about-list {
  list-style: none;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.about-list li {
  margin-bottom: 0.35rem;
  position: relative;
  padding-left: 1.1rem;
}

.about-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--orange-soft);
  font-size: 1.1rem;
  top: -0.05rem;
}

.about-image {
  border-radius: 1.25rem;
  background: radial-gradient(circle at top, rgba(59, 130, 246, 0.18), transparent 60%),
    #020617;
  border: 1px solid rgba(148, 163, 184, 0.7);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-align: center;
  padding: 1.5rem;
  color: var(--text-soft);
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-form {
  background: #020617;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-soft);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.9);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  background: #020617;
  color: var(--text-main);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-soft);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.2);
  background: #020617;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-footnote {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.contact-info {
  border-radius: 1.25rem;
  background: #020617;
  color: var(--text-main);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.contact-item-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.2rem;
}

.contact-item-title-yellow {
  color: var(--yellow-soft);
}

.contact-item-title-green {
  color: var(--green-soft);
}

.contact-item-title-blue {
  color: var(--blue-soft);
}

.contact-item-title-orange {
  color: var(--orange-soft);
}

.contact-item p {
  font-size: 0.92rem;
  color: var(--text-soft);
}

.contact-item a {
  color: var(--yellow-soft);
}

.map-embed-wrapper {
  margin-top: 0.75rem;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Footer */
footer {
  background: #020617;
  color: var(--text-soft);
  padding: 2.5rem 0 1.5rem;
  font-size: 0.85rem;
  border-top: 1px solid rgba(148, 163, 184, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.25rem;
}

.footer-links a {
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--yellow-soft);
}

.footer-text {
  color: var(--text-muted);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.social-links a {
  font-size: 0.82rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: var(--text-soft);
}

.social-links a:hover {
  color: var(--yellow-soft);
  border-color: var(--yellow-soft);
}

.newsletter-input {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.newsletter-input input {
  flex: 1;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #020617;
  color: var(--text-main);
  font-size: 0.82rem;
}

.newsletter-input input::placeholder {
  color: var(--text-muted);
}

.newsletter-input button {
  border-radius: 999px;
  border: none;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--orange);
  color: #111827;
  cursor: pointer;
  transition: background 0.15s ease;
}

.newsletter-input button:hover {
  background: #fb923c;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.5);
  padding-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Utilities */
.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}
/* Holiday promo bar inside hero */
.hero-holiday-promo {
  margin-top: 1.75rem;
  background: #f9fafb;
  color: #111827;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.hero-holiday-left {
  flex: 2 1 260px;
  min-width: 0;
}

.hero-holiday-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: #b45309;
  margin-bottom: 0.2rem;
}

.hero-holiday-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.hero-holiday-text {
  font-size: 0.9rem;
  color: #374151;
}

.hero-holiday-right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}

.hero-holiday-cta {
  background: #111827;
  color: #fefce8;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.hero-holiday-cta:hover {
  background: #020617;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.65);
  transform: translateY(-1px);
}

.hero-holiday-cta span.icon {
  font-size: 1rem;
}

.hero-holiday-note {
  font-size: 0.78rem;
  color: #4b5563;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-holiday-promo {
    align-items: flex-start;
  }
  .hero-holiday-right {
    width: 100%;
    align-items: stretch;
  }
  .hero-holiday-cta {
    justify-content: center;
    width: 100%;
  }
}
/* FULL-WIDTH HOLIDAY PROMO BAR */
/* FULL-WIDTH HOLIDAY PROMO BAR */
.holiday-fullwidth-bar {
  width: 100%;
  background: #f9fafb;
  color: #111827;
  border-bottom: 1px solid rgba(148, 163, 184, 0.5);
  padding: 1.5rem 0;
  box-shadow: 0px 12px 45px rgba(0, 0, 0, 0.15);
  z-index: 50;
  position: relative;      /* needed for ::before */
  overflow: hidden;        /* keeps confetti inside */
}

.holiday-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.2rem;
  align-items: center;
  position: relative;      /* so content sits above confetti */
  z-index: 1;
}

.old-price {
  text-decoration: line-through;
  color: #94a3b8; /* slate-400 */
  font-size: 0.9rem;
  margin-right: 0.4rem;
}

.sale-price {
  color: var(--yellow-soft);
  font-weight: 700;
  font-size: 1.2rem;
}

.sale-price-installed {
  color: var(--green-soft);
  font-weight: 700;
  font-size: 1.2rem;
}


/* Confetti background */
.holiday-fullwidth-bar::before {
  content: "";
  position: absolute;
  inset: -40px;
  background-image:
    /* Strong red */
    radial-gradient(circle at 12% 18%, rgba(239, 68, 68, 0.40) 9px, transparent 0),
    /* Strong green */
    radial-gradient(circle at 78% 12%, rgba(34, 197, 94, 0.40) 11px, transparent 0),
    /* Gold */
    radial-gradient(circle at 28% 82%, rgba(250, 204, 21, 0.45) 10px, transparent 0),
    /* Blue accents */
    radial-gradient(circle at 58% 66%, rgba(59, 130, 246, 0.40) 9px, transparent 0),
    /* Orange highlights */
    radial-gradient(circle at 88% 52%, rgba(249, 115, 22, 0.42) 10px, transparent 0);

  background-size: 160px 160px;
  opacity: 0.75;          /* stronger visibility */
  pointer-events: none;
  z-index: 0;
  animation: confetti-float 16s linear infinite;
}


/* Floating animation */
@keyframes confetti-float {
  0%   { background-position: 0 0; }
  100% { background-position: 0 260px; }
}

.holiday-bar-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #b45309;
  margin-bottom: 0.3rem;
}

.holiday-bar-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.holiday-bar-text {
  font-size: 0.92rem;
  color: #374151;
}

.holiday-bar-right {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.holiday-bar-cta {
  background: #111827;
  color: white;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}

.holiday-bar-cta:hover {
  background: #020617;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.4);
}

.holiday-bar-note {
  font-size: 0.8rem;
  color: #4b5563;
  line-height: 1.3;
}

/* MOBILE */
@media (max-width: 850px) {
  .holiday-bar-inner {
    grid-template-columns: 1fr;
  }
  .holiday-bar-right {
    align-items: stretch;
  }
  .holiday-bar-cta {
    width: 100%;
    justify-content: center;
  }
}


/* MOBILE */
@media (max-width: 850px) {
  .holiday-bar-inner {
    grid-template-columns: 1fr;
  }
  .holiday-bar-right {
    align-items: stretch;
  }
  .holiday-bar-cta {
    width: 100%;
    justify-content: center;
  }
}

/* SALE PRICING STYLES */
.old-price {
  text-decoration: line-through;
  color: #a1a1aa; /* zinc-400 */
  font-size: 0.85rem;
  margin-right: 0.4rem;
}

.sale-price,
.sale-price-installed {
  font-weight: 800;
  font-size: 1.35rem;
  display: inline-block;
  position: relative;
  animation: price-reveal 0.7s ease-out forwards;
  opacity: 0;
  transform: translateY(6px);
}

/* DIY sale = yellow glow */
.sale-price {
  color: var(--yellow-soft);
  text-shadow: 0 0 8px rgba(250, 204, 21, 0.45);
}

/* Installed sale = green glow */
.sale-price-installed {
  color: var(--green-soft);
  text-shadow: 0 0 8px rgba(34, 197, 94, 0.45);
}

/* Animation */
@keyframes price-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SAVE BADGE */
.save-badge {
  display: inline-block;
  background: #dc2626; /* bright red */
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-weight: 700;
  margin-left: 0.5rem;
  box-shadow: 0 0 6px rgba(220, 38, 38, 0.4);
}

/* HOLIDAY TAG */
.holiday-tag {
  display: inline-block;
  background: #fef08a;
  color: #7c2d12;
  font-size: 0.72rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  box-shadow: 0 0 6px rgba(250, 204, 21, 0.25);
}

/* BEST VALUE FLAG */
.best-value-flag {
  background: linear-gradient(90deg, #22c55e, #16a34a);
  color: white;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  align-self: flex-start;
  margin-bottom: 0.5rem;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.45);
}
