/* ============================================================
   pSuite.cloud Landing Page — Stylesheet
   ============================================================ */

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

:root {
  --brand-yellow: #FFD000;
  --brand-yellow-dark: #E6BB00;
  --brand-yellow-light: #FFF3B0;
  --brand-black: #1a1a1a;
  --brand-dark: #0f0f0f;
  --text-primary: #1a1a2e;
  --text-secondary: #4a4a6a;
  --text-muted: #7a7a9a;
  --bg-white: #ffffff;
  --bg-light: #f8f9fc;
  --bg-dark: #0f0f0f;
  --bg-card: #ffffff;
  --border-light: #e8e8f0;
  --border-medium: #d0d0dd;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand-yellow);
  color: var(--brand-black);
  border-color: var(--brand-yellow);
}
.btn-primary:hover {
  background: var(--brand-yellow-dark);
  border-color: var(--brand-yellow-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 208, 0, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-medium);
}
.btn-outline:hover {
  border-color: var(--brand-yellow);
  color: var(--brand-black);
  background: var(--brand-yellow-light);
}
.btn-sm { padding: 8px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.nav.scrolled {
  border-bottom-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo img { height: 36px; }
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.lang-toggle:hover {
  border-color: var(--brand-yellow);
  background: var(--brand-yellow-light);
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --- Hero --- */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(255, 208, 0, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(255, 208, 0, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--brand-yellow-light);
  color: var(--brand-black);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--brand-black);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-subliminal {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-yellow-dark);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  background: linear-gradient(90deg, var(--brand-yellow) 0%, var(--brand-yellow-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-black);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- Dashboard Preview --- */
.dashboard-preview {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.4s ease;
}
.dashboard-preview:hover {
  transform: perspective(1000px) rotateY(-1deg) rotateX(1deg);
}
.preview-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #1a1a1a;
  border-bottom: 1px solid #2a2a2a;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.preview-url {
  margin-left: 12px;
  font-size: 0.75rem;
  color: #666;
  font-family: monospace;
}
.preview-content {
  display: flex;
  min-height: 260px;
}
.preview-sidebar {
  width: 50px;
  background: #141414;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.sidebar-item {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #222;
}
.sidebar-item.active {
  background: var(--brand-yellow);
}
.preview-main {
  flex: 1;
  padding: 20px;
}
.preview-header-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.preview-card.metric {
  background: #1e1e1e;
  border-radius: 8px;
  padding: 12px;
}
.metric-label {
  font-size: 0.65rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.metric-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.metric-trend {
  font-size: 0.7rem;
  font-weight: 600;
}
.metric-trend.up { color: #28c840; }
.metric-trend.down { color: #28c840; }
.preview-chart {
  background: #1e1e1e;
  border-radius: 8px;
  padding: 16px;
}
.chart-line { width: 100%; height: auto; }

/* --- Sections --- */
.section {
  padding: 100px 0;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--brand-yellow-light);
  color: var(--brand-black);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--brand-black);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Features Grid --- */
.features { background: var(--bg-light); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.3s ease;
}
.feature-card:hover {
  border-color: var(--brand-yellow);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-yellow-light);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  color: var(--brand-black);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--brand-black);
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Modules Grid --- */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.3s ease;
}
.module-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.module-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  color: #fff;
}
.module-icon svg { width: 26px; height: 26px; }
.module-icon.crm { background: #3b82f6; }
.module-icon.billing { background: #10b981; }
.module-icon.subscriptions { background: #f59e0b; }
.module-icon.provisioning { background: #8b5cf6; }
.module-icon.workflows { background: #ec4899; }
.module-icon.support { background: #06b6d4; }
.module-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--brand-black);
}
.module-card > p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}
.module-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.module-features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}
.module-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-yellow);
}

/* --- Selfcare Section --- */
.selfcare { background: var(--bg-light); }
.selfcare-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}
.selfcare-content { max-width: 560px; }
.selfcare-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--brand-black);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.selfcare-content > p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}
.selfcare-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.sc-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.sc-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-yellow-light);
  border-radius: var(--radius-sm);
  color: var(--brand-black);
}
.sc-icon svg { width: 20px; height: 20px; }
.sc-feature strong {
  display: block;
  font-size: 0.95rem;
  color: var(--brand-black);
  margin-bottom: 2px;
}
.sc-feature span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* --- Phone Frame --- */
.phone-frame {
  width: 280px;
  background: var(--brand-black);
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-xl);
}
.phone-notch {
  width: 100px;
  height: 24px;
  background: var(--brand-black);
  margin: 0 auto 8px;
  border-radius: 0 0 16px 16px;
  position: relative;
  z-index: 1;
}
.phone-screen {
  background: #f7f8fb;
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}
.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 16px;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}
.phone-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brand-black);
}
.phone-avatar {
  width: 28px;
  height: 28px;
  background: var(--brand-yellow);
  border-radius: 50%;
}
.phone-card {
  margin: 12px 16px;
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.phone-card-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.phone-card-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-black);
  margin-bottom: 4px;
}
.phone-card-status {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #10b981;
  background: #ecfdf5;
  padding: 2px 8px;
  border-radius: 100px;
}
.phone-card-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.phone-nav {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  padding: 16px;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
}
.phone-nav-item {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
}
.phone-nav-item.active {
  color: var(--brand-black);
  background: var(--brand-yellow-light);
}
.phone-nav-item svg { width: 20px; height: 20px; }

/* --- Integration Grid --- */
.integration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.integration-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}
.integration-card:hover {
  border-color: var(--brand-yellow);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.integration-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-yellow-light);
  border-radius: var(--radius-sm);
  margin: 0 auto 16px;
  color: var(--brand-black);
}
.integration-icon svg { width: 24px; height: 24px; }
.integration-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--brand-black);
}
.integration-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Deployment Grid --- */
.deployment { background: var(--bg-light); }
.deployment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.deployment-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: all 0.3s ease;
  position: relative;
}
.deployment-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.deployment-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  color: #fff;
}
.deployment-icon svg { width: 28px; height: 28px; }
.deployment-icon.saas { background: #3b82f6; }
.deployment-icon.onprem { background: #8b5cf6; }
.deployment-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.deployment-card:first-child .deployment-label {
  background: #dbeafe;
  color: #1d4ed8;
}
.deployment-card:last-child .deployment-label {
  background: #ede9fe;
  color: #6d28d9;
}
.deployment-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-black);
  margin-bottom: 10px;
}
.deployment-card > p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* --- Industries Grid --- */
.industries { background: var(--bg-white); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.industry-card {
  text-align: center;
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}
.industry-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.industry-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-yellow-light);
  border-radius: 50%;
  margin: 0 auto 20px;
  color: var(--brand-black);
}
.industry-icon svg { width: 28px; height: 28px; }
.industry-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--brand-black);
}
.industry-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- CTA / Contact Section --- */
.cta-section {
  background: var(--bg-white);
  color: var(--text-primary);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.cta-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}
.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.cta-benefit::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--brand-yellow);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12l5 5L19 7'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

/* --- Contact Form --- */
.contact-form {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-form h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--brand-black);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-white);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-yellow);
}
.form-disclaimer {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

/* --- Contact Fallback (mailto) --- */
.contact-fallback {
  text-align: center;
  padding: 20px 0;
}
.contact-fallback-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  opacity: 0.8;
}
.contact-fallback h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-fallback p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.contact-fallback-btn {
  display: inline-block;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.contact-fallback .form-disclaimer {
  margin-top: 16px;
}

/* --- Footer --- */
.footer {
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
  padding: 60px 0 40px;
  color: var(--text-secondary);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
.footer-brand { max-width: 360px; }
.footer-brand img { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 60px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-black);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--brand-yellow); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; max-width: 560px; margin: 0 auto; }
  .dashboard-preview { transform: none; }
  .dashboard-preview:hover { transform: none; }
  .features-grid,
  .modules-grid,
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .integration-grid { grid-template-columns: repeat(2, 1fr); }
  .selfcare-inner { grid-template-columns: 1fr; gap: 48px; }
  .selfcare-visual { order: -1; display: flex; justify-content: center; }
  .cta-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
  }
  .mobile-toggle { display: flex; }
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 24px; }
  .section { padding: 60px 0; }
  .features-grid,
  .modules-grid,
  .industries-grid,
  .integration-grid,
  .deployment-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-links { gap: 40px; }
  .phone-frame { width: 240px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .preview-header-row { grid-template-columns: 1fr; }
}
