/* Henmack Integrated Technologies — shared stylesheet
   Static, responsive. Replaces inline React JSX styles.
   Breakpoints: mobile <640px, tablet 640-1024px, desktop 1024+
*/

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

:root {
  --navy-dark: #0A2E4D;
  --navy-medium: #15436B;
  --navy-deep: #0A1929;
  --blue-accent: #2B7FDB;
  --blue-light: #5BA3E8;
  --cream: #FAF8F5;
  --cream-deep: #F0EDE7;
  --warm-white: #FFFFFF;
  --text-primary: #1A2332;
  --text-secondary: #4A5568;
  --text-tertiary: #718096;
  --border-light: #E2E8F0;
  --success-green: #34A853;
  --success-dark: #1E7A3A;
  --error-red: #c0392b;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--warm-white);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy-dark);
}

a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 1100px; }
.container-prose { max-width: 900px; }
.container-tight { max-width: 800px; }
.container-mid { max-width: 1000px; }
.container-wide { max-width: 1200px; }

section { padding: 80px 0; }
.section-tight { padding: 64px 0; }
.section-pad { padding: 100px 0; }

.section-border { border-bottom: 1px solid var(--border-light); }
.section-cream { background: var(--cream); }
.section-white { background: var(--warm-white); }
.section-navy {
  background: var(--navy-dark);
  color: white;
}
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 { color: white; }
.section-navy-gradient {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy-medium) 100%);
  color: white;
}
.section-navy-gradient h1, .section-navy-gradient h2, .section-navy-gradient h3, .section-navy-gradient h4 { color: white; }
.section-cream-gradient {
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-deep) 100%);
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 16px 0;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--border-light);
}
.nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue-accent), var(--navy-medium));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: white;
}
.brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-dark);
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue-accent); }
.nav-links a.cta-link {
  background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
  color: white;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(43, 127, 219, 0.2);
}
.nav-links a.cta-link:hover { color: white; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  color: var(--navy-dark);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
  color: white;
  box-shadow: 0 4px 12px rgba(43, 127, 219, 0.2);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(43, 127, 219, 0.3); }
.btn-secondary {
  background: transparent;
  color: var(--navy-dark);
  border: 2px solid var(--navy-dark);
}
.btn-secondary:hover { background: var(--navy-dark); color: white; }
.btn-white {
  background: white;
  color: var(--navy-dark);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,0.15); }
.btn-ghost-on-dark {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost-on-dark:hover { background: rgba(255,255,255,0.1); }
.btn-lg { padding: 16px 40px; font-size: 17px; }
.btn-block { display: block; width: 100%; }

/* ============ HERO ============ */
.hero {
  background: var(--warm-white);
  padding-top: 120px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border-light);
}
.hero-page {
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-deep) 100%);
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.hero-page .hero-blob {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(43, 127, 219, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-page-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  background: var(--cream);
  padding: 6px 16px;
  border-radius: 6px;
  margin-bottom: 24px;
  border: 1px solid var(--border-light);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.3px;
}
.eyebrow-green {
  background: rgba(52, 168, 83, 0.1);
  border-color: rgba(52, 168, 83, 0.25);
  color: var(--success-dark);
  border-radius: 100px;
  padding: 6px 16px;
  letter-spacing: 0.5px;
}
.eyebrow-blue-dark {
  background: rgba(43, 127, 219, 0.2);
  border: 1px solid rgba(43, 127, 219, 0.3);
  color: var(--blue-light);
  border-radius: 100px;
  padding: 6px 16px;
  letter-spacing: 0.5px;
}

h1 { font-size: 52px; line-height: 1.15; margin-bottom: 24px; }
.hero-page h1 { font-size: 56px; }
.hero p.lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.hero-page p.lead {
  font-size: 22px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
}
.hero-page .text-center p.lead { margin-left: auto; margin-right: auto; }

h2 { font-size: 40px; margin-bottom: 20px; }
h2.large { font-size: 44px; }
h2.xl { font-size: 52px; }
h3 { font-size: 24px; margin-bottom: 12px; }
h4 { font-size: 18px; margin-bottom: 8px; }

.section-intro {
  margin-bottom: 64px;
}
.section-intro p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
}

/* ============ HERO BUTTONS ROW ============ */
.button-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.button-row.justify-end { justify-content: flex-end; }
.button-row.justify-center { justify-content: center; }

/* ============ HERO STATS ============ */
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}
.hero-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}
.hero-stat-value {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}

/* ============ HERO SIDE CARD ============ */
.hero-side-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--border-light);
}
.hero-side-card h3 {
  font-size: 20px;
  margin-bottom: 24px;
  font-weight: 600;
}
.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}
.bullet-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text-primary);
}
.bullet-list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--blue-accent);
  border-radius: 50%;
}

/* ============ CAPABILITY/PRODUCT CARDS ============ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.grid-auto-tight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.grid-auto-mid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.grid-auto-wide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}
.grid-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.grid-2-uneven {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.grid-2-even {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.grid-2-cta {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: center;
}

.card {
  background: var(--cream);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}
.card-white {
  background: white;
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}
.card-small {
  background: var(--cream);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}
.card-on-dark {
  background: rgba(255, 255, 255, 0.05);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
}
.card-on-dark h4 { color: var(--blue-light); font-size: 20px; }
.card-on-dark p { color: rgba(255,255,255,0.85); }

.label-chip {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(43, 127, 219, 0.12), rgba(10, 46, 77, 0.12));
  border: 1px solid rgba(43, 127, 219, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--blue-accent);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.status-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
}
.status-active { color: var(--success-green); background: rgba(52,168,83,0.08); }
.status-dev { color: var(--blue-accent); background: rgba(43,127,219,0.08); }
.status-planned { color: var(--text-tertiary); background: rgba(113,128,150,0.08); }

/* ============ GIOBIZ FEATURE BOX ============ */
.giobiz-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}
.giobiz-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-size: 15px;
}
.giobiz-feature-list li::before {
  content: "";
  margin-top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-light);
  flex-shrink: 0;
}

/* ============ QUOTE / ITALIC ============ */
.quote-border {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  padding-left: 20px;
  border-left: 3px solid rgba(255, 255, 255, 0.2);
  margin: 0 0 32px;
}
.philosophy-card {
  background: linear-gradient(135deg, rgba(43, 127, 219, 0.05), rgba(10, 46, 77, 0.05));
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(43, 127, 219, 0.15);
}
.philosophy-quote {
  background: linear-gradient(135deg, rgba(43, 127, 219, 0.05), rgba(10, 46, 77, 0.05));
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(43, 127, 219, 0.15);
}
.philosophy-quote p {
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-primary);
}

/* ============ PRODUCT DETAIL ROW ============ */
.product-row {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.product-row-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  padding: 48px;
}
.product-row h3 { font-size: 32px; }
.product-row .tagline {
  font-size: 17px;
  color: var(--blue-accent);
  font-weight: 500;
  margin-bottom: 20px;
}
.product-row .description {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.feature-list li::before {
  content: "—";
  margin-top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(43, 127, 219, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  color: var(--blue-accent);
}

/* ============ VALUE LIST ============ */
.value-row {
  background: white;
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.value-num {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(43, 127, 219, 0.1), rgba(10, 46, 77, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(43, 127, 219, 0.2);
  font-size: 24px;
  font-weight: 700;
  color: var(--blue-accent);
}

/* ============ FORM ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.form-card {
  background: white;
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}
.field { margin-bottom: 24px; }
.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  background: white;
  color: var(--text-primary);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 3px rgba(43,127,219,0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { cursor: pointer; }
.form-error {
  font-size: 14px;
  color: var(--error-red);
  margin-bottom: 16px;
  padding: 12px 16px;
  background: rgba(192,57,43,0.07);
  border-radius: 8px;
}
.form-success {
  background: linear-gradient(135deg, rgba(52, 168, 83, 0.05), rgba(52, 168, 83, 0.1));
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(52, 168, 83, 0.2);
  text-align: center;
}
.form-success h3 { font-size: 28px; margin-bottom: 16px; }
.form-success p { font-size: 17px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 32px; }

/* ============ LEGAL / PROSE PAGES ============ */
.legal-prose {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}
.legal-prose h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--navy-dark);
}
.legal-prose p { margin-bottom: 16px; }
.legal-prose ul { margin-left: 24px; margin-bottom: 16px; }
.legal-prose li { margin-bottom: 8px; }
.legal-prose a { color: var(--blue-accent); font-weight: 600; text-decoration: none; }
.legal-prose a:hover { text-decoration: underline; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
}
.site-footer h4 { color: white; font-size: 16px; margin-bottom: 16px; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}
.footer-grid .brand-name { color: white; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 14px;
}
.footer-blurb {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-address {
  font-size: 13px;
  line-height: 1.6;
}

/* ============ MISC ============ */
.text-muted { color: var(--text-secondary); }
.text-light { color: rgba(255,255,255,0.85); }
.intro-paragraph {
  fontsize: 18px;
  line-height: 1.9;
  color: var(--text-secondary);
}
.intro-paragraph p { margin-bottom: 24px; font-size: 18px; }
.intro-paragraph p:last-child { margin-bottom: 0; }
.intro-paragraph strong { color: var(--text-primary); }
.gap-32 { gap: 32px; }
.mb-56 { margin-bottom: 56px; }
.mb-48 { margin-bottom: 48px; }
.mb-32 { margin-bottom: 32px; }
.mb-24 { margin-bottom: 24px; }
.mt-56 { margin-top: 56px; }

/* ============ RESPONSIVE — TABLET (≤1024px) ============ */
@media (max-width: 1024px) {
  section, .section-pad { padding: 72px 0; }
  .section-tight { padding: 56px 0; }

  h1 { font-size: 40px; }
  .hero-page h1 { font-size: 44px; }
  h2 { font-size: 32px; }
  h2.large, h2.xl { font-size: 36px; }
  h3 { font-size: 22px; }

  .hero p.lead { font-size: 17px; }
  .hero-page p.lead { font-size: 19px; }

  .hero-grid,
  .grid-2,
  .grid-2-uneven,
  .grid-2-even,
  .grid-2-cta,
  .contact-grid,
  .product-row-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .button-row.justify-end { justify-content: flex-start; }
  .hero-page .hero-blob { width: 320px; height: 320px; }
}

/* ============ RESPONSIVE — MOBILE (≤640px) ============ */
@media (max-width: 640px) {
  .container,
  .nav,
  .hero-page-inner { padding-left: 16px; padding-right: 16px; }

  section, .section-pad { padding: 56px 0; }
  .section-tight { padding: 40px 0; }

  .hero { padding-top: 100px; padding-bottom: 56px; }
  .hero-page { padding-top: 110px; padding-bottom: 56px; }

  h1 { font-size: 32px; line-height: 1.2; margin-bottom: 16px; }
  .hero-page h1 { font-size: 34px; }
  h2 { font-size: 26px; margin-bottom: 16px; }
  h2.large, h2.xl { font-size: 28px; }
  h3 { font-size: 20px; }
  h4 { font-size: 17px; }

  .hero p.lead { font-size: 16px; margin-bottom: 24px; }
  .hero-page p.lead { font-size: 17px; }

  .section-intro { margin-bottom: 40px; }
  .section-intro p { font-size: 16px; }

  /* Header collapses */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    padding: 8px 16px 20px;
    border-bottom: 1px solid var(--border-light);
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--border-light);
    font-size: 16px;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a.cta-link {
    margin-top: 12px;
    text-align: center;
    padding: 12px 24px;
  }
  .menu-toggle { display: inline-block; }

  /* Buttons full width on tiny screens */
  .button-row .btn { width: 100%; }
  .button-row.justify-center .btn { width: auto; }

  /* Cards padding */
  .card, .hero-side-card, .product-row-inner, .form-card, .philosophy-card, .philosophy-quote {
    padding: 24px;
  }
  .product-row-inner { gap: 24px; }
  .value-row { padding: 20px; gap: 16px; flex-direction: column; }
  .value-num { width: 40px; height: 40px; font-size: 20px; }

  .hero-stats { gap: 20px; padding-top: 20px; }
  .hero-side-card { padding: 24px; }
  .hero-side-card h3 { font-size: 18px; margin-bottom: 16px; }

  .grid-2, .grid-auto, .grid-auto-tight, .grid-auto-mid, .grid-auto-wide, .grid-1 {
    gap: 16px;
  }

  /* Footer */
  .footer-grid { gap: 32px; margin-bottom: 32px; }
  .site-footer { padding: 48px 0 24px; }

  /* Forms */
  .form-card { padding: 24px; }
  .form-success { padding: 32px 24px; }
  .form-success h3 { font-size: 24px; }
}

/* ============ TINY (≤380px) ============ */
@media (max-width: 380px) {
  h1, .hero-page h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  .btn { padding: 12px 20px; font-size: 15px; }
}

/* ============ DESKTOP TWEAKS (≥1280px) ============ */
@media (min-width: 1280px) {
  /* Already centered with max-width 1280; nothing to override */
}
