/* JW Organizer Website Styles */
/* Primary Color: DeepPurple #2E2370 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2E2370;
  --primary-light: #4A3F8C;
  --primary-dark: #1E1650;
  --accent: #08A1C7;
  --accent-light: #26C6DA;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #EEEEEE;
  --gray-300: #E0E0E0;
  --gray-400: #BDBDBD;
  --gray-500: #9E9E9E;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;
  --shadow-sm: 0 2px 8px rgba(46,35,112,0.08);
  --shadow-md: 0 4px 16px rgba(46,35,112,0.12);
  --shadow-lg: 0 8px 32px rgba(46,35,112,0.16);
  --shadow-xl: 0 16px 48px rgba(46,35,112,0.2);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 32px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: transparent;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.navbar > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.navbar.scrolled .logo {
  color: var(--primary);
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a .material-icons-outlined {
  font-size: 18px;
  opacity: 0.8;
}

.nav-links a:hover {
  background: rgba(255,255,255,0.15);
}

.nav-links a:hover .material-icons-outlined {
  opacity: 1;
}

.navbar.scrolled .nav-links a {
  color: var(--gray-800);
}

.navbar.scrolled .nav-links a:hover {
  background: var(--gray-100);
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Selector */
.language-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.navbar.scrolled .lang-btn {
  background: var(--gray-100);
  border-color: var(--gray-300);
  color: var(--gray-800);
}

.lang-btn:hover {
  background: rgba(255,255,255,0.25);
}

.lang-btn .arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  max-height: 320px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.lang-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown a {
  display: block;
  padding: 12px 16px;
  color: var(--gray-700);
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.lang-dropdown a:hover {
  background: var(--gray-100);
  color: var(--primary);
}

.lang-dropdown a.active {
  background: var(--primary);
  color: var(--white);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(46,35,112,0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(46,35,112,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}

.navbar.scrolled .mobile-menu-btn {
  color: var(--gray-800);
}

.mobile-menu-btn .material-icons-outlined {
  font-size: 28px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 2000;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.show {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.mobile-menu-header .logo {
  color: var(--primary);
}

.close-menu-btn {
  background: none;
  border: none;
  color: var(--gray-800);
  cursor: pointer;
  padding: 8px;
}

.close-menu-btn .material-icons-outlined {
  font-size: 28px;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-800);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 16px;
  border-radius: 12px;
  background: var(--gray-50);
  transition: all 0.3s ease;
}

.mobile-menu-links a .material-icons-outlined {
  font-size: 22px;
  color: var(--primary);
}

.mobile-menu-links a:hover {
  background: var(--primary);
  color: var(--white);
}

.mobile-menu-links a:hover .material-icons-outlined {
  color: var(--white);
}

.mobile-lang-selector {
  margin-top: 32px;
}

.mobile-lang-selector p {
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--gray-600);
}

.mobile-lang-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.mobile-lang-grid a {
  padding: 12px;
  background: var(--gray-100);
  border-radius: 8px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.mobile-lang-grid a.active {
  background: var(--primary);
  color: var(--white);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: var(--primary);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(8,161,199,0.15) 0%, transparent 70%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 3.25rem;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-text h1 .highlight {
  color: var(--accent-light);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  width: 280px;
}

.phone-mockup img {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  animation: float 4s ease-in-out infinite;
}

.floating-card .material-icons-outlined {
  color: var(--primary);
  font-size: 24px;
}

.floating-card.card-1 {
  top: 15%;
  left: -20px;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 30%;
  right: -30px;
  animation-delay: 1.5s;
}

.floating-card.card-3 {
  top: 55%;
  left: -40px;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===== SECTIONS COMMON ===== */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(46,35,112,0.08);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--gray-900);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
}

/* ===== FEATURES SECTION ===== */
.features {
  background: var(--gray-50);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-normal);
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(46,35,112,0.25);
  transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(46,35,112,0.35);
}

.feature-icon .material-icons-outlined {
  font-size: 30px;
  color: var(--white);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.feature-card > p {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 6px 0;
  color: var(--gray-700);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-list li::before {
  content: '\2713';
  color: var(--accent);
  font-weight: bold;
}

/* ===== SCREENSHOTS SECTION ===== */
.screenshots {
  background: var(--white);
}

.screenshots-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.screenshot-item {
  text-align: center;
}

.screenshot-item img {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  border-radius: var(--border-radius-xl);
  box-shadow: 0 12px 40px rgba(46,35,112,0.2);
  transition: all var(--transition-normal);
  background: var(--gray-200);
  aspect-ratio: 9/16;
  object-fit: cover;
  border: 3px solid var(--white);
}

.screenshot-item:hover img {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 20px 60px rgba(46,35,112,0.3);
}

.screenshot-label {
  margin-top: 20px;
  font-weight: 600;
  color: var(--gray-800);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.screenshot-item:hover .screenshot-label {
  color: var(--primary);
}

/* ===== MINISTRY ROLES SECTION ===== */
.ministry-roles {
  background: var(--primary);
  color: var(--white);
}

.ministry-roles .section-header h2 {
  color: var(--white);
}

.ministry-roles .section-header p {
  color: rgba(255,255,255,0.8);
}

.ministry-roles .section-tag {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.role-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--border-radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-normal);
}

.role-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.role-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.role-icon .material-icons-outlined {
  font-size: 36px;
  color: var(--white);
}

.role-card:hover .role-icon {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

.role-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.role-card p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

/* ===== LANGUAGES SECTION ===== */
.languages-section {
  background: var(--gray-50);
}

.languages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.language-item {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.language-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.flag {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: block;
}

.lang-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-800);
  display: block;
  margin-bottom: 8px;
}

.lang-check {
  font-size: 16px;
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.language-item:hover .lang-check {
  opacity: 1;
}

/* ===== DOWNLOAD SECTION ===== */
.download-section {
  background: var(--white);
}

.download-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.download-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--gray-900);
}

.download-text p {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 32px;
}

.download-features {
  margin-bottom: 32px;
}

.download-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--gray-700);
}

.download-feature .material-icons-outlined {
  color: var(--accent);
}

.download-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.store-button {
  display: inline-block;
  position: relative;
  transition: all var(--transition-normal);
}

.store-button img {
  height: 56px;
  width: auto;
  border-radius: 8px;
}

.store-button:hover {
  transform: translateY(-3px);
}

.store-button.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.store-button.disabled:hover {
  transform: none;
}

.coming-soon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(46, 35, 112, 0.9);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.coming-soon {
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo .logo-icon {
  width: 44px;
  height: 44px;
}

.footer-tagline {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.social-link .material-icons-outlined {
  font-size: 20px;
}

.footer-nav {
  display: flex;
  gap: 60px;
}

.footer-column h4 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: var(--gray-500);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright p {
  color: var(--gray-500);
  font-size: 0.85rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal a {
  color: var(--gray-500);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-legal .divider {
  color: var(--gray-700);
}

.footer-disclaimer {
  text-align: center;
  color: var(--gray-600);
  font-size: 0.75rem;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--primary);
  padding: 160px 0 80px;
  text-align: center;
}

.header-content {
  max-width: 600px;
  margin: 0 auto;
}

.header-icon {
  font-size: 64px !important;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.75rem;
  margin-bottom: 16px;
}

.page-header p {
  color: rgba(255,255,255,0.85);
  font-size: 1.25rem;
}

/* ===== HELP CONTENT ===== */
.help-content {
  padding: 80px 0;
}

.help-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
  color: var(--gray-600);
  font-size: 1.1rem;
}

.help-section {
  margin-bottom: 48px;
}

.help-section .section-title {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-200);
}

.help-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.help-card:hover {
  border-color: var(--primary);
}

.help-card-header {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--gray-50);
  gap: 16px;
}

.help-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.help-icon .material-icons-outlined {
  color: var(--white);
  font-size: 22px;
}

.help-card-header h3 {
  flex: 1;
  font-size: 1.1rem;
  color: var(--gray-900);
}

.expand-icon {
  color: var(--gray-500);
  transition: transform 0.3s ease;
}

.help-card.expanded .expand-icon {
  transform: rotate(180deg);
}

.help-card-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.help-card.expanded .help-card-content {
  max-height: 500px;
  padding: 24px;
  border-top: 1px solid var(--gray-200);
}

.help-card-content p {
  color: var(--gray-700);
  line-height: 1.8;
  white-space: pre-line;
}

/* Contact Section */
.contact-section {
  text-align: center;
}

.contact-card {
  background: var(--primary);
  border-radius: 24px;
  padding: 48px;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto;
}

.contact-icon {
  font-size: 48px !important;
  margin-bottom: 24px;
  opacity: 0.9;
}

.contact-card h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.contact-card > p {
  margin-bottom: 24px;
  opacity: 0.9;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.contact-buttons .btn-primary {
  background: var(--white);
  color: var(--primary);
}

.contact-buttons .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.email-display {
  font-size: 0.9rem;
  opacity: 0.8;
  background: rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-block;
}

/* Credits */
.credits {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}

.credits p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.credits a {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
}

.credits a:hover {
  text-decoration: underline;
}

/* ===== PRIVACY CONTENT ===== */
.privacy-content {
  padding: 80px 0;
}

.privacy-intro {
  margin-bottom: 48px;
}

.last-updated {
  color: var(--gray-500);
  font-style: italic;
}

.privacy-section {
  margin-bottom: 40px;
}

.privacy-section h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.privacy-section p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 16px;
}

.privacy-section ul {
  margin-left: 24px;
  margin-bottom: 16px;
  list-style: disc;
}

.privacy-section li {
  color: var(--gray-700);
  margin-bottom: 8px;
  line-height: 1.7;
}

.privacy-section li strong {
  color: var(--gray-900);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    margin: 0 auto 32px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    order: -1;
    margin-bottom: 40px;
  }

  .floating-card {
    display: none;
  }

  .download-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .download-text {
    order: 1;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .features-grid,
  .roles-grid {
    grid-template-columns: 1fr;
  }

  .screenshots-carousel {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .footer-brand {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-tagline {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: 32px;
    width: 100%;
  }

  .footer-column {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .contact-card {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-text h1 {
    font-size: 1.75rem;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .screenshots-carousel {
    grid-template-columns: 1fr;
  }

  .languages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
