/* SimpleTap - Main Stylesheet */

/* CSS Variables */
:root {
  --primary-dark: #3F2E56;
  --primary-dark-hover: #4a3968;
  --gold: #E7C75F;
  --gold-start: #C9A86C;
  --gold-end: #E7C75F;
  --gold-mid: #D4B87A;
  --yellow-accent: #E7C75F;
  --bg-light: #F8F7FA;
  --text-dark: #2D2D2D;
  --text-gray: #6B7280;
  --text-light: #9CA3AF;
  --white: #FFFFFF;
  --border-light: #E5E7EB;
}

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

html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-dark), var(--gold));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary-dark-hover), var(--gold));
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-dark) var(--bg-light);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.5rem;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(to right, var(--primary-dark), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 0.1em;
}

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

/* Header / Navigation */
.header {
  padding: 20px 0;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.header.scrolled {
  border-bottom-color: var(--border-light);
}

.header .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  background: linear-gradient(to right, var(--primary-dark), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 0.1em;
}

.logo-icon {
  width: 28px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.nav a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--primary-dark);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

/* Language Selector for Landing Page */
.lang-selector-landing {
  position: relative;
}

.lang-trigger-landing {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.2s ease;
}

.lang-trigger-landing:hover {
  border-color: var(--primary-dark);
  background: var(--bg-light);
}

.lang-flag {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
}

.lang-dropdown-landing {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  min-width: 160px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.lang-dropdown-landing.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option-landing {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: background 0.2s ease;
}

.lang-option-landing:first-child {
  border-radius: 12px 12px 0 0;
}

.lang-option-landing:last-child {
  border-radius: 0 0 12px 12px;
}

.lang-option-landing:hover {
  background: var(--bg-light);
}

.lang-option-landing.active {
  background: var(--bg-light);
  font-weight: 600;
  color: var(--primary-dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
}

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

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border-light);
}

.btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--text-dark);
}

.btn-arrow::after {
  content: '\2192';
  font-size: 1rem;
  margin-left: 4px;
  transition: color 0.2s ease;
}

.btn-primary.btn-arrow:hover::after {
  color: var(--gold);
}

/* Hero Section */
.hero {
  padding: 60px 0 80px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #F5F3F7;
  border: 1px solid #E8E4ED;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--primary-dark);
  margin-bottom: 32px;
}

.hero-badge::before {
  content: '✨';
}

.hero h1 {
  max-width: 800px;
  margin: 0 auto 24px;
  color: var(--primary-dark);
}

.hero-subtitle {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: var(--text-gray);
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

/* App Store Buttons */
.app-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.app-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: var(--white);
  color: var(--text-primary);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  z-index: 0;
}

.app-button::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(to right, var(--primary-dark), var(--gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: -1;
  transition: opacity 0.2s ease;
}

.app-button:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.app-button:hover::before {
  opacity: 0;
}

.app-button:hover svg {
  fill: var(--white);
}

.app-button svg {
  width: 28px;
  height: 28px;
  fill: var(--text-primary);
  flex-shrink: 0;
  transition: fill 0.2s ease;
}

.app-button div {
  text-align: left;
}

.app-button small {
  display: block;
  font-size: 0.7rem;
  opacity: 0.6;
  line-height: 1.2;
}

.app-button strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.3;
}

.hero-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.hero-features span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-features svg {
  width: 20px;
  height: 20px;
  color: var(--gold-start);
}

/* Hero Image Section */
.hero-image-section {
  position: relative;
  margin-top: 60px;
  padding: 0 40px;
}

.hero-image-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #8B7BA8 0%, #6B5B8C 100%);
  padding: 40px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-placeholder {
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: var(--white);
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-badge.left {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.floating-badge.right {
  right: 0;
  bottom: 40px;
}

.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.badge-icon.green {
  background: #D1FAE5;
  color: #059669;
}

.badge-icon.yellow {
  background: #FEF3C7;
  color: #D97706;
}

.badge-content strong {
  display: block;
  font-size: 0.95rem;
}

.badge-content span {
  font-size: 0.8rem;
  color: var(--gold-start);
}

/* Stats Section */
.stats-section {
  background: var(--bg-light);
  padding: 80px 0;
}

.stats-header {
  text-align: center;
  margin-bottom: 60px;
}

.stats-header .overline {
  color: var(--gold-start);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.stats-header p {
  max-width: 600px;
  margin: 16px auto 0;
  color: var(--text-gray);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border-light);
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #FEF3C7;
  color: var(--yellow-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-label {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* Features Section */
.features-section {
  padding: 100px 0;
}

.features-section .stats-header {
  margin-bottom: 60px;
}

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

.feature-card {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  transition: box-shadow 0.2s ease;
}

.feature-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

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

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #4a3f68 100%);
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--primary-dark);
}

.cta-section .btn-primary:hover {
  background: var(--bg-light);
}

/* Section Header (shared) */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .overline {
  color: var(--gold-start);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-header h2 {
  max-width: 700px;
  margin: 0 auto;
}

/* Mastery Suite Section */
.suite-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.suite-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}

.suite-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.suite-tab {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

.suite-tab:hover {
  border-color: var(--primary-dark);
}

.suite-tab.active {
  border-color: var(--primary-dark);
  background: var(--primary-dark);
  color: var(--white);
}

.suite-tab-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.suite-tab-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.suite-tab.active .suite-tab-icon {
  background: rgba(255,255,255,0.2);
}

.suite-tab strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.suite-tab span {
  font-size: 0.8rem;
  opacity: 0.7;
}

.suite-content {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 40px;
  min-height: 350px;
}

.suite-panel {
  display: none;
}

.suite-panel.active {
  display: block;
}

.suite-panel h3 {
  margin-bottom: 16px;
  color: var(--primary-dark);
}

.suite-panel > p,
.suite-panel-text > p {
  color: var(--text-gray);
  margin-bottom: 24px;
  line-height: 1.7;
}

.suite-panel-hero {
  text-align: center;
}

.suite-panel-hero h3 {
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.suite-panel-hero p {
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.suite-image-swap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.suite-image-swap .suite-image {
  width: 100%;
  display: block;
  transition: opacity 0.3s ease;
}

.suite-image-swap .suite-image-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.suite-image-swap:hover .suite-image-default {
  opacity: 0;
}

.suite-image-swap:hover .suite-image-hover {
  opacity: 1;
}

.suite-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}

.suite-panel-grid.reverse .suite-panel-image {
  order: -1;
}

.suite-panel-text h3 {
  margin-bottom: 16px;
  color: var(--primary-dark);
}

.suite-panel-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.suite-image {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.suite-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.suite-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.suite-features li::before {
  content: '\2713';
  color: #059669;
  font-weight: 700;
  flex-shrink: 0;
}

/* Roles / RBAC Section */
.roles-section {
  padding: 100px 0;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.role-card {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  text-align: center;
  transition: box-shadow 0.2s ease;
}

.role-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.role-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.role-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.role-card h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.role-card > p {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.role-permissions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.role-permissions li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.role-permissions li::before {
  content: '\2713';
  color: #059669;
  font-weight: 700;
  flex-shrink: 0;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto 48px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  transition: box-shadow 0.2s ease;
  position: relative;
}

.pricing-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.pricing-card.featured {
  border-color: var(--primary-dark);
  box-shadow: 0 8px 30px rgba(63, 46, 86, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-dark);
  color: var(--gold);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-period {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.pricing-card > p {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.pricing-card .btn {
  width: 100%;
}

.included-section {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.included-section h3 {
  margin-bottom: 24px;
  font-size: 1.25rem;
}

.included-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  text-align: left;
}

.included-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.included-list li::before {
  content: '\2713';
  color: #059669;
  font-weight: 700;
  flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  background: var(--white);
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  color: inherit;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-item.active .faq-question,
.faq-item.active .faq-question:hover {
  background: var(--white);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--text-gray);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s ease;
}

.faq-item.active .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-link {
  color: #635bff;
  text-decoration: none;
  font-weight: 500;
}

.faq-link:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(to right, #C9A86C, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.footer-bottom a {
  color: rgba(255,255,255,0.6);
}

.footer-bottom a:hover {
  color: var(--white);
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.footer-brand-link:hover {
  opacity: 0.7;
}

.footer-brand-link img {
  height: 20px;
  width: auto;
}

/* Contact Page Styles */
.page-header {
  padding: 60px 0;
  text-align: center;
  background: var(--bg-light);
}

.page-header h1 {
  font-size: 2.75rem;
  margin-bottom: 16px;
}

.page-header p {
  color: var(--text-gray);
  max-width: 500px;
  margin: 0 auto;
}

.contact-section {
  padding: 80px 0;
}

.contact-form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-dark);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form .btn {
  width: 100%;
  padding: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.75rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .suite-layout {
    grid-template-columns: 1fr;
  }

  .suite-tabs {
    flex-direction: row;
    overflow-x: auto;
  }

  .suite-tab {
    min-width: 180px;
  }

  .suite-panel-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .suite-panel-grid.reverse .suite-panel-image {
    order: 0;
  }

  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 2rem;
  }

  .nav {
    display: none;
  }

  .header .container {
    grid-template-columns: 1fr auto;
  }

  .logo {
    font-size: 1.15rem;
  }

  .logo-icon {
    width: 22px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .lang-trigger-landing {
    padding: 6px 8px;
    font-size: 0.8rem;
    gap: 4px;
  }

  .lang-flag {
    width: 16px;
    height: 12px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-features {
    flex-direction: column;
    gap: 16px;
  }

  .app-buttons {
    flex-direction: column;
  }

  .floating-badge {
    display: none;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .suite-tabs {
    flex-direction: column;
  }

  .suite-tab {
    min-width: auto;
  }

  .suite-content {
    padding: 24px;
  }

  .roles-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .included-list {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .modal {
    margin: 16px;
    max-height: calc(100vh - 32px);
  }
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: var(--primary-dark);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  z-index: 1100;
  animation: toastIn 0.3s ease;
}

.toast.hidden {
  display: none;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 20px;
  z-index: 1000;
  max-width: 340px;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-icon {
  font-size: 1.5rem;
}

.cookie-text h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  display: inline;
  margin-left: 8px;
}

.cookie-text > p {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin: 8px 0 0;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 6px 16px;
  font-size: 0.8rem;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  padding: 20px;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.modal-overlay.hidden {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

/* Modal */
.modal {
  background: var(--white);
  border-radius: 16px;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
}

.modal-header h2 {
  font-size: 1.25rem;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-gray);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.modal-close:hover {
  background: var(--bg-light);
  color: var(--text-dark);
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.modal-body h4 {
  font-size: 1rem;
  margin: 20px 0 12px;
}

.modal-body h4:first-child {
  margin-top: 0;
}

.modal-body p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.modal-body ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.modal-body ul li {
  margin-bottom: 8px;
}

.modal-body a {
  color: var(--primary-dark);
  text-decoration: underline;
}

.modal-body a:hover {
  color: var(--gold);
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* Company Card */
.company-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.company-card h4 {
  margin: 0 0 12px !important;
}

.company-card p {
  margin-bottom: 4px !important;
  font-size: 0.9rem !important;
}

.company-name {
  font-size: 1rem !important;
}

/* Cookie Status Card */
.cookie-status-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.cookie-status-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cookie-status-header h4 {
  margin: 0 !important;
}

.status-badge {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-badge.not-set {
  background: #FEF3C7;
  color: #D97706;
}

.status-badge.accepted {
  background: #D1FAE5;
  color: #059669;
}

.status-badge.declined {
  background: #FEE2E2;
  color: #DC2626;
}

.cookie-status-card p {
  margin-bottom: 16px !important;
}

.cookie-status-card .btn {
  padding: 8px 16px;
  font-size: 0.85rem;
}
