/* ============================================
   GPZ 8000 Deposit Microsite — Styles
   Matching outbackprospecting.com.au branding
   Dark theme, orange/gold accents, rugged feel
   ============================================ */

:root {
  /* Colours from outbackprospecting.com.au theme */
  --bg-dark: #060000;
  --bg-body: #111111;
  --bg-card: #1a1410;
  --bg-form: #1e1812;
  --bg-input: #2a221a;
  --orange: #f94c05;
  --orange-hover: #f26323;
  --gold: #fcaf1e;
  --gold-hover: #df5b20;
  --gold-dark: #cb8503;
  --text-primary: #f5f0eb;
  --text-body: #d4ccc4;
  --text-muted: #a1918b;
  --text-dark: #736661;
  --success: #e49603;
  --error: #ba2424;
  --border: #3a2e24;
  --border-light: #4a3e34;
  --radius: 3px;
  --container-max: 1100px;
  --form-max: 640px;
}

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

html {
  scroll-behavior: auto;
}

body {
  font-family: 'Open Sans', -apple-system, system-ui, sans-serif;
  background-color: var(--bg-body);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--orange-hover);
}

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

h1, h2, h3, h4 {
  font-family: 'Exo 2', 'Open Sans', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-primary);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-dark);
  border-bottom: 3px solid var(--orange);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  height: 48px;
  width: auto;
}

.dealer-badge {
  height: 40px;
  width: auto;
  opacity: 0.9;
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(10px); opacity: 1; }
}

@keyframes subtleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:nth-child(2).animate-on-scroll { transition-delay: 0.15s; }
.feature-card:nth-child(3).animate-on-scroll { transition-delay: 0.3s; }
.spec-item:nth-child(2).animate-on-scroll { transition-delay: 0.08s; }
.spec-item:nth-child(3).animate-on-scroll { transition-delay: 0.16s; }
.spec-item:nth-child(4).animate-on-scroll { transition-delay: 0.24s; }
.spec-item:nth-child(5).animate-on-scroll { transition-delay: 0.32s; }
.spec-item:nth-child(6).animate-on-scroll { transition-delay: 0.4s; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--bg-dark);
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  padding: 3rem 0 4rem;
  min-height: 100vh;
  justify-content: center;
}

/* Left side: text + product image stacked */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  animation: fadeInLeft 0.8s ease both;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.hero-product img {
  max-width: 260px;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.6));
  animation: subtleFloat 4s ease-in-out infinite;
}

/* Right side: Jonathan photo */
.hero-photo {
  display: flex;
  justify-content: center;
  animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-photo img {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--border);
}

.hero-tag {
  display: inline-block;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  background: rgba(252, 175, 30, 0.15);
  border: 1px solid rgba(252, 175, 30, 0.3);
  padding: 0.35rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero h1 {
  font-size: 2.2rem;
  font-style: italic;
  line-height: 1.1;
  color: var(--text-primary);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.6s ease 0.5s both;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  animation: fadeInUp 0.6s ease 0.6s both;
}

.hero-price {
  font-size: 1.3rem;
  color: var(--text-primary);
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  animation: fadeInUp 0.6s ease 0.7s both;
}

.hero-price strong {
  color: var(--gold);
}

.hero-cta {
  animation: fadeInUp 0.6s ease 0.8s both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-hint span {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  opacity: 0.5;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  padding: 0.875rem 2.25rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  letter-spacing: 0.03em;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  color: #fff;
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-primary:disabled {
  background-color: var(--border);
  color: var(--text-dark);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-primary:disabled:hover {
  background-color: var(--border);
  transform: none;
  box-shadow: none;
}

.btn-submit {
  width: 100%;
  font-size: 1.1rem;
  padding: 1rem;
  margin-top: 1rem;
  position: relative;
}

.btn-submit.loading .btn-text {
  visibility: hidden;
}

.btn-spinner {
  display: none;
}

.btn-submit.loading .btn-spinner {
  display: block;
  position: absolute;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(6, 0, 0, 0.3);
  border-top-color: var(--bg-dark);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---- Features ---- */
.features {
  padding: 4rem 0;
  background-color: var(--bg-body);
}

.features h2,
.specs h2,
.deposit-section h2 {
  text-align: center;
  font-size: 1.6rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.feature-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  border-left-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.feature-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---- Specs ---- */
.specs {
  padding: 4rem 0;
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: var(--form-max);
  margin: 0 auto;
}

.spec-item {
  display: flex;
  flex-direction: column;
  padding: 1.1rem;
  background-color: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.spec-label {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.spec-value {
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ---- Deposit Section ---- */
.deposit-section {
  padding: 4rem 0;
  background-color: var(--bg-form);
}

.deposit-intro {
  text-align: center;
  max-width: var(--form-max);
  margin: 0 auto 2rem;
}

.deposit-intro strong {
  color: var(--gold);
}

.deposit-balance {
  text-align: center;
  max-width: var(--form-max);
  margin: 0 auto 2rem;
  font-family: 'Exo 2', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--text-primary);
}

#deposit-form {
  max-width: var(--form-max);
  margin: 0 auto;
}

/* ---- Form Fieldset ---- */
.form-fieldset {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background-color: var(--bg-card);
}

.form-fieldset legend {
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 0 0.5rem;
}

/* ---- Package Cards ---- */
.package-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.package-card {
  cursor: pointer;
  display: block;
}

.package-card input[type="radio"] {
  position: absolute;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.package-card-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, background-color 0.2s;
}

.package-card input:checked + .package-card-inner {
  border-color: var(--gold);
  background-color: rgba(252, 175, 30, 0.06);
}

.package-card input:focus-visible + .package-card-inner {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.package-img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.package-name {
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: var(--text-primary);
}

.package-price {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
}

.package-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.package-availability {
  display: inline-block;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius);
  margin-top: 0.5rem;
}

.available-soon {
  color: #2e7d32;
  background: rgba(46, 125, 50, 0.15);
  border: 1px solid rgba(46, 125, 50, 0.3);
}

.available-later {
  color: var(--gold);
  background: rgba(252, 175, 30, 0.12);
  border: 1px solid rgba(252, 175, 30, 0.3);
}

/* ---- Form Controls ---- */
.form-row {
  display: grid;
  gap: 1rem;
}

.form-row-2col {
  grid-template-columns: 1fr;
}

.form-row-3col {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-group label,
.card-label {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group select {
  background-color: var(--bg-input);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 0.85rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input::placeholder {
  color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(252, 175, 30, 0.15);
}

.form-group input.invalid,
.form-group select.invalid {
  border-color: var(--error);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23a1918b'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background-color: var(--bg-input);
  color: var(--text-primary);
}

.field-error {
  font-size: 0.8rem;
  color: var(--error);
  min-height: 1.2rem;
  margin-top: 0.25rem;
}

/* ---- Square Card Container ---- */
.card-container {
  min-height: 56px;
  background-color: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 0.85rem;
  transition: border-color 0.2s;
}

.card-container:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(252, 175, 30, 0.15);
}

.square-secured-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-dark);
  opacity: 0.7;
}

.square-secured-badge svg {
  flex-shrink: 0;
}

/* ---- Turnstile ---- */
.turnstile-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.turnstile-wrapper iframe {
  border-radius: var(--radius);
}

/* ---- Deposit Amount ---- */
.deposit-amount {
  text-align: center;
  font-family: 'Exo 2', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  padding: 1rem 0 0;
}

.deposit-amount strong {
  color: var(--gold);
}

/* ---- Terms agreement ---- */
.terms-agree {
  margin: 1rem 0 0.5rem;
}

.terms-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.terms-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--border);
  border-radius: 3px;
  background-color: var(--bg-input);
  cursor: pointer;
  margin-top: 1px;
  transition: border-color 0.2s, background-color 0.2s;
}

.terms-label input[type="checkbox"]:checked {
  background-color: var(--gold);
  border-color: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='%23060000' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.3 4.3L6 11.6 2.7 8.3 1.3 9.7l4.7 4.7 8.7-8.7z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.terms-label input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.terms-label a {
  color: var(--gold);
  text-decoration: underline;
}

.terms-label a:hover {
  color: var(--orange);
}

.terms-agree .field-error {
  margin-left: 1.6rem;
}

/* ---- Form Result ---- */
.form-result {
  max-width: var(--form-max);
  margin: 2rem auto 0;
}

.result-success {
  background-color: rgba(228, 150, 3, 0.1);
  border: 1px solid var(--success);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.result-success h3 {
  font-style: italic;
  color: var(--success);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.result-success p {
  margin-bottom: 0.5rem;
}

.result-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.result-error {
  background-color: rgba(186, 36, 36, 0.1);
  border: 1px solid var(--error);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.result-error h3 {
  font-style: italic;
  color: var(--error);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

/* ---- Footer ---- */
.site-footer {
  background-color: var(--bg-dark);
  border-top: 3px solid var(--orange);
  padding: 3rem 0;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.footer-brand {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.footer-info p {
  margin-bottom: 0.25rem;
  color: var(--text-muted);
}

.secure-badge {
  display: inline-block;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-legal {
  color: var(--text-dark);
  font-size: 0.8rem;
  line-height: 1.6;
}

.footer-legal p {
  margin-bottom: 0.5rem;
}

.footer-credit {
  margin-top: 1rem;
  font-size: 0.75rem;
  opacity: 0.6;
}

.footer-credit a {
  color: var(--text-dark);
  text-decoration: underline;
}

.footer-credit a:hover {
  color: var(--brand-orange);
}

/* ============================================
   Responsive — Very small screens (<375px)
   ============================================ */
@media (max-width: 374px) {
  .container {
    padding: 0 0.75rem;
  }

  .header-inner {
    height: 56px;
  }

  .logo {
    height: 34px;
  }

  .dealer-badge {
    height: 28px;
  }

  .hero {
    padding: 2rem 0 2.5rem;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-price {
    font-size: 1.1rem;
  }

  .hero-cta {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }

  .hero-product img {
    max-width: 180px;
  }

  .hero-photo img {
    max-width: 300px;
  }

  .features h2,
  .specs h2,
  .deposit-section h2 {
    font-size: 1.3rem;
  }

  .feature-img {
    height: 120px;
  }

  .form-fieldset {
    padding: 1rem;
  }

  .package-card-inner {
    padding: 1rem;
  }

  .package-img {
    max-height: 90px;
  }

  .package-price {
    font-size: 1.1rem;
  }

  .deposit-balance {
    font-size: 1rem;
  }

  .btn-submit {
    font-size: 1rem;
  }

  .turnstile-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ============================================
   Responsive — Small mobile (375px–479px)
   ============================================ */
@media (min-width: 375px) and (max-width: 479px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .hero-product img {
    max-width: 220px;
  }
}

/* ============================================
   Responsive — Large mobile / Small tablet (480px+)
   ============================================ */
@media (min-width: 480px) {
  .hero-product img {
    max-width: 260px;
  }

  .package-options {
    grid-template-columns: 1fr 1fr;
  }

  .package-img {
    max-height: 140px;
  }

  .specs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   Responsive — Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }

  .hero-inner {
    flex-direction: row;
    gap: 2.5rem;
    padding: 0;
    min-height: 100vh;
    align-items: center;
  }

  .hero-left {
    flex: 1;
    text-align: left;
    align-items: flex-start;
    min-width: 0;
  }

  .hero-content {
    align-items: flex-start;
  }

  .hero-product img {
    max-width: 280px;
  }

  .hero-photo {
    flex: 0 0 40%;
  }

  .hero-photo img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: cover;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .features {
    padding: 5rem 0;
  }

  .features h2,
  .specs h2,
  .deposit-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .feature-img {
    height: 180px;
  }

  .specs {
    padding: 5rem 0;
  }

  .deposit-section {
    padding: 5rem 0;
  }

  .form-row-2col {
    grid-template-columns: 1fr 1fr;
  }

  .form-row-3col {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }

  .footer-legal {
    max-width: 400px;
    text-align: right;
  }
}

/* ============================================
   Responsive — Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-product img {
    max-width: 360px;
  }

  .hero-photo {
    flex: 0 0 42%;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-img {
    height: 200px;
  }

  .package-img {
    max-height: 160px;
  }
}

/* ============================================
   Responsive — Large desktop (1200px+)
   ============================================ */
@media (min-width: 1200px) {
  .hero-product img {
    max-width: 420px;
  }

  .hero-photo {
    flex: 0 0 44%;
  }
}
