/* ============================================================
   PAGES.CSS — Inner Page Styles Matching Homepage Aesthetic
   Inherits: style.css (all CSS variables + resets + nav/footer)
   Design: Deep Dark · Glassmorphism · Bento · Gradient Headlines
   ============================================================ */

/* -----------------------------------------------------------
   1. PAGE HERO — Full-viewport like homepage
----------------------------------------------------------- */
.page-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px; /* offset for fixed nav */
}

/* Background image */
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  filter: saturate(0.65) brightness(0.35);
  animation: heroZoom 22s ease-in-out infinite alternate;
}

/* Animated ambient orbs — identical to homepage */
.page-hero::before {
  content: '';
  position: absolute;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 101, 107, 0.22) 0%, transparent 70%);
  top: 5%; left: 5%;
  z-index: 1;
  pointer-events: none;
  animation: orbFloat 9s ease-in-out infinite;
}

.page-hero::after {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218, 216, 135, 0.12) 0%, transparent 70%);
  bottom: 10%; right: 8%;
  z-index: 1;
  pointer-events: none;
  animation: orbFloat 11s ease-in-out infinite reverse;
}

/* Dark gradient overlay — same as homepage */
.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(54, 101, 107, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(117, 176, 111, 0.10) 0%, transparent 50%),
    linear-gradient(
      180deg,
      rgba(6,13,13,0.75) 0%,
      rgba(6,13,13,0.55) 40%,
      rgba(6,13,13,0.92) 100%
    );
}

/* Floating particles — same as homepage */
.page-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.page-hero-particles .particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: floatUp 8s ease-in infinite;
}
.page-hero-particles .particle:nth-child(1) { width:3px;height:3px;left:8%;background:var(--green-light);animation-delay:0s;animation-duration:9s; }
.page-hero-particles .particle:nth-child(2) { width:2px;height:2px;left:22%;background:var(--cyan);animation-delay:1.5s;animation-duration:7s; }
.page-hero-particles .particle:nth-child(3) { width:4px;height:4px;left:42%;background:var(--green-light);animation-delay:3s;animation-duration:11s; }
.page-hero-particles .particle:nth-child(4) { width:2px;height:2px;left:60%;background:var(--teal);animation-delay:0.8s;animation-duration:8s; }
.page-hero-particles .particle:nth-child(5) { width:3px;height:3px;left:78%;background:var(--green-light);animation-delay:2.2s;animation-duration:10s; }
.page-hero-particles .particle:nth-child(6) { width:2px;height:2px;left:92%;background:var(--cyan);animation-delay:4s;animation-duration:7.5s; }

/* Hero content container */
.page-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
  width: 100%;
  animation: slideInUp 0.7s ease 0.2s both;
}

/* Badge pill — matches homepage .section-label look */
.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-light);
  background: rgba(117, 176, 111, 0.1);
  border: 1px solid rgba(117, 176, 111, 0.3);
  padding: 0.35rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1.25rem;
}

/* Page H1 — matches hero-title sizing */
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-white);
  margin: 0 0 1rem;
}

/* Gradient accent span inside title */
.page-hero-title span {
  background: var(--grad-headline);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

/* Subtitle / meta line */
.page-hero-meta {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: 0.65rem;
  max-width: 540px;
  line-height: 1.7;
}

/* Scroll cue */
.page-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0.4;
  animation: bounce 2.5s ease-in-out infinite;
}
.page-scroll-cue svg { width: 22px; height: 22px; color: var(--green-light); }

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

/* -----------------------------------------------------------
   2. MAIN CONTENT WRAPPER — Section-style with proper spacing
----------------------------------------------------------- */
.page-section {
  padding: 5rem 0;
  position: relative;
}

.page-section + .page-section {
  border-top: 1px solid rgba(255,255,255,0.04);
}

.page-section--alt {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(54,101,107,0.06) 0%, transparent 70%);
}

.page-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

/* Section label (small tag above title) — matches homepage */
.page-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-light);
  background: rgba(117, 176, 111, 0.08);
  border: 1px solid rgba(117, 176, 111, 0.2);
  padding: 0.35rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 0.85rem;
}

/* Section title — matches homepage .section-title */
.page-section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
  line-height: 1.1;
}

.page-section-heading span {
  background: var(--grad-headline);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-section-subtext {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.75;
}

/* -----------------------------------------------------------
   3. GLASS CARDS — matching homepage .glass-card exactly
----------------------------------------------------------- */
.page-glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  transition: border-color var(--t-normal), box-shadow var(--t-normal), transform var(--t-normal);
  position: relative;
  overflow: hidden;
}

/* Subtle inner glow on top edge */
.page-glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(117,176,111,0.18), transparent);
  pointer-events: none;
}

.page-glass-card:hover {
  border-color: rgba(117, 176, 111, 0.18);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

/* Card heading — section title style */
.page-section-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

/* Green left-bar accent before each title */
.page-section-title::before {
  content: '';
  display: inline-flex;
  width: 3px;
  height: 1.1em;
  background: var(--grad-headline);
  border-radius: 2px;
  flex-shrink: 0;
  position: relative;
  top: 0.05em;
}

/* Body text */
.page-glass-card p {
  font-size: 0.93rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}
.page-glass-card p:last-child { margin-bottom: 0; }

/* Lists */
.page-glass-card ul,
.page-glass-card ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.page-glass-card li {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.4rem;
}
.page-glass-card ol li::marker { color: var(--green-light); font-weight: 700; }
.page-glass-card ul li::marker { color: var(--green-light); }

/* Links */
.page-glass-card a {
  color: var(--green-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}
.page-glass-card a:hover { color: var(--orange); }
.page-glass-card strong { color: rgba(255,255,255,0.9); font-weight: 600; }

/* code tags */
.page-glass-card code {
  background: rgba(54,101,107,0.15);
  padding: 0.15em 0.5em;
  border-radius: 4px;
  font-size: 0.85em;
  color: var(--green-light);
  border: 1px solid rgba(54,101,107,0.25);
}

/* -----------------------------------------------------------
   4. CALLOUT / HIGHLIGHT BOX
----------------------------------------------------------- */
.page-callout {
  background: rgba(117, 176, 111, 0.07);
  border: 1px solid rgba(117, 176, 111, 0.2);
  border-left: 3px solid var(--green-light);
  border-radius: var(--r-md);
  padding: 1.1rem 1.35rem;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}
.page-callout.warning {
  background: rgba(218, 216, 135, 0.06);
  border-color: rgba(218, 216, 135, 0.2);
  border-left-color: var(--orange);
  color: rgba(255,255,255,0.65);
}
.page-callout a { color: var(--green-light); text-decoration: underline; }

/* -----------------------------------------------------------
   5. BREADCRUMB
----------------------------------------------------------- */
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.page-breadcrumb a {
  color: var(--green-light);
  text-decoration: none;
  transition: color var(--t-fast);
  font-weight: 500;
}
.page-breadcrumb a:hover { color: var(--orange); }
.page-breadcrumb span { color: rgba(255,255,255,0.2); }
.page-breadcrumb > span:last-child { color: rgba(255,255,255,0.5); }

/* -----------------------------------------------------------
   6. UPDATED DATE CHIP
----------------------------------------------------------- */
.page-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-full);
  padding: 0.35rem 0.9rem;
  margin-bottom: 2.25rem;
}
.page-updated svg { width: 13px; height: 13px; color: var(--green-light); }

/* -----------------------------------------------------------
   7. INFO / DATA TABLE — matching homepage .app-info-table
----------------------------------------------------------- */
.page-info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
  font-size: 0.89rem;
}
.page-info-table thead th {
  background: rgba(117,176,111,0.08);
  color: var(--green-light);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.65rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.page-info-table th,
.page-info-table td {
  padding: 0.72rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
}
.page-info-table th {
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  width: 32%;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.page-info-table td { color: rgba(255,255,255,0.75); }
.page-info-table tr:last-child th,
.page-info-table tr:last-child td { border-bottom: none; }
.page-info-table tr:hover td,
.page-info-table tr:hover th {
  background: rgba(255,255,255,0.02);
}

/* -----------------------------------------------------------
   8. CONTACT FORM
----------------------------------------------------------- */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-input,
.form-textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 0.85rem 1.1rem;
  color: var(--text-white);
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  resize: vertical;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus {
  border-color: rgba(117,176,111,0.5);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(117,176,111,0.08);
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-textarea { min-height: 140px; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, #4A8166 0%, #36656B 100%);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.95rem 2.2rem;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(117,176,111,0.5), 0 8px 28px rgba(54,101,107,0.38);
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  align-self: flex-start;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(218,216,135,0.5), 0 14px 40px rgba(54,101,107,0.55);
  background: linear-gradient(135deg, #5ba37d, #46868e);
}

/* -----------------------------------------------------------
   9. TEAM GRID — matching homepage bento card style
----------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1.25rem;
  margin-top: 0.75rem;
}
.team-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  position: relative;
  overflow: hidden;
}
.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(117,176,111,0.2), transparent);
}
.team-card:hover {
  border-color: rgba(117,176,111,0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4A8166, #36656B);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 0 20px rgba(54,101,107,0.4);
}
.team-name { font-size: 0.95rem; font-weight: 700; color: var(--text-white); margin-bottom: 0.25rem; }
.team-role { font-size: 0.75rem; color: var(--green-light); font-weight: 500; }

/* -----------------------------------------------------------
   10. TWO-COLUMN LAYOUT
----------------------------------------------------------- */
.page-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

/* -----------------------------------------------------------
   11. STATS ROW — mini stats like homepage
----------------------------------------------------------- */
.page-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.page-stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.page-stat-card:hover {
  border-color: rgba(117,176,111,0.3);
  transform: translateY(-2px);
}
.page-stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--grad-headline);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.page-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* -----------------------------------------------------------
   12. TRUST STRIP (reusable badges row)
----------------------------------------------------------- */
.page-trust-strip {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.page-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-full);
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.page-trust-chip:hover { border-color: rgba(117,176,111,0.3); color: var(--text-white); }
.page-trust-chip svg { width: 13px; height: 13px; color: var(--green-light); flex-shrink: 0; }

/* -----------------------------------------------------------
   13. FEATURE LIST — icon + text rows
----------------------------------------------------------- */
.page-feature-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.75rem; }
.page-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.page-feature-item:hover {
  border-color: rgba(117,176,111,0.25);
  background: rgba(117,176,111,0.04);
}
.page-feature-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(117,176,111,0.1);
  border: 1px solid rgba(117,176,111,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.page-feature-icon svg { width: 18px; height: 18px; color: var(--green-light); }
.page-feature-text h3 { font-size: 0.92rem; font-weight: 700; color: var(--text-white); margin-bottom: 0.15rem; }
.page-feature-text p { font-size: 0.83rem; color: var(--text-secondary); margin: 0; line-height: 1.6; }

/* -----------------------------------------------------------
   14. STEP LIST (install guides etc.)
----------------------------------------------------------- */
.page-step-list { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 0.75rem; }
.page-step {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-md);
  padding: 1.1rem 1.35rem;
  transition: border-color var(--t-fast);
}
.page-step:hover { border-color: rgba(117,176,111,0.28); }
.page-step-num {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #4A8166, #36656B);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(54,101,107,0.35);
}
.page-step h3 { font-size: 0.93rem; font-weight: 700; color: var(--text-white); margin-bottom: 0.2rem; }
.page-step p  { font-size: 0.85rem; color: var(--text-secondary); margin: 0; line-height: 1.65; }

/* -----------------------------------------------------------
   15. BENTO MINI GRID (2 or 3 col cards)
----------------------------------------------------------- */
.page-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.75rem;
}
.page-bento-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.25rem;
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.page-bento-card:hover {
  border-color: rgba(117,176,111,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.page-bento-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(117,176,111,0.1);
  border: 1px solid rgba(117,176,111,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.page-bento-icon svg { width: 22px; height: 22px; color: var(--green-light); }
.page-bento-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--text-white); margin-bottom: 0.35rem; }
.page-bento-card p  { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.65; margin: 0; }

/* -----------------------------------------------------------
   16. FAQ — details/summary accordion
----------------------------------------------------------- */
.page-faq { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.75rem; }
.page-faq-item {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast);
}
.page-faq-item:hover { border-color: rgba(117,176,111,0.25); }
.page-faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.35rem;
  cursor: pointer;
  list-style: none;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-white);
  user-select: none;
}
.page-faq-item summary::-webkit-details-marker { display: none; }
.page-faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--green-light);
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--t-fast);
}
.page-faq-item[open] summary::after { transform: rotate(45deg); }
.page-faq-answer {
  padding: 0 1.35rem 1.1rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* -----------------------------------------------------------
   17. CTA BAND — website-wide call-to-action block
----------------------------------------------------------- */
.page-cta-band {
  background: linear-gradient(135deg, rgba(74,129,102,0.12), rgba(54,101,107,0.12));
  border: 1px solid rgba(117,176,111,0.18);
  border-radius: var(--r-xl);
  padding: 3rem 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.page-cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(117,176,111,0.4), transparent);
}
.page-cta-band p  { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 0.5rem; }
.page-cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-white);
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

/* -----------------------------------------------------------
   18. RESPONSIVE
----------------------------------------------------------- */
@media (max-width: 1024px) {
  .page-stats-row { grid-template-columns: repeat(2, 1fr); }
  .page-bento-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .page-hero { min-height: 60vh; }
  .page-hero-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .page-hero-meta  { font-size: 0.9rem; }
  .page-hero-content { padding: 2rem 1.25rem 4rem; }
  .page-two-col { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .page-glass-card { padding: 2rem 1.5rem; border-radius: var(--r-lg); }
  .page-main { padding: 3rem 1.25rem 5rem; }
}

@media (max-width: 480px) {
  .page-hero { min-height: 55vh; }
  .page-hero-title { font-size: clamp(1.9rem, 10vw, 2.8rem); }
  .page-glass-card { padding: 1.5rem 1.25rem; }
  .page-stats-row { grid-template-columns: repeat(2, 1fr); }
  .page-bento-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .page-main { padding: 2.5rem 1rem 4rem; }
  .page-step { padding: 0.9rem 1rem; }
  .page-faq-item summary { font-size: 0.85rem; padding: 0.85rem 1rem; }
}

/* -----------------------------------------------------------
   19. AI-GENERATED ICON IMAGES — Rounded corners + glow
       Applies to all img icons across platform pages
----------------------------------------------------------- */

/* Device icons on iOS page — large card icons */
.device-icon {
  border-radius: 18px;
  box-shadow: 0 0 18px rgba(119, 196, 206, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.device-card:hover .device-icon {
  transform: scale(1.07) translateY(-2px);
  box-shadow: 0 0 28px rgba(119, 196, 206, 0.45);
}

/* Platform download icons on PC page */
.platform-dl-icon img {
  border-radius: 14px;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.platform-dl-card:hover .platform-dl-icon img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 12px rgba(117, 176, 111, 0.7));
}

/* Controller icon on iOS page */
.controller-icon-wrap img {
  border-radius: 12px;
  transition: transform 0.25s ease;
}
.controller-card:hover .controller-icon-wrap img {
  transform: scale(1.1) rotate(-4deg);
}

/* OS badge icons on Tablet page (small inline icons) */
.os-badge img {
  border-radius: 6px;
  flex-shrink: 0;
}

/* Global rule for any other AI icon images used inline */
img[src*="icon_"] {
  border-radius: 14px;
}

