/* ==========================================
   UNIPAWS WEBSITE STYLES
   Modern, Clean, Orange Theme
   ========================================== */

/* CSS Variables */
:root {
  --primary: #F97316;
  --primary-dark: #EA580C;
  --primary-light: #FFEDD5;
  --primary-lighter: #FFF7ED;
  --red: #EF4444;
  --red-light: #FEE2E2;
  --green: #10B981;
  --green-light: #D1FAE5;
  --blue: #3B82F6;
  --blue-light: #DBEAFE;
  --purple: #8B5CF6;
  --purple-light: #EDE9FE;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container-width: 1200px;
  --border-radius: 16px;
  --border-radius-lg: 24px;
  --border-radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style-position: inside;
}

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

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-100);
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo-text {
  font-size: 26px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.5px;
}

.logo-emoji {
  font-size: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  color: var(--gray-600);
  font-size: 15px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.btn-download {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--border-radius-full);
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px;
  border-bottom: 1px solid var(--gray-100);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
  display: block;
}

.mobile-link {
  display: block;
  padding: 16px 0;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  font-size: 16px;
}

.mobile-link:last-child {
  border-bottom: none;
}

.mobile-link.active {
  color: var(--primary);
}

.btn-mobile-download {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white) !important;
  border-radius: var(--border-radius);
  text-align: center;
  margin-top: 8px;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  padding: 140px 0 100px;
  background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--primary-light) 50%, #FED7AA 100%);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 8px 16px;
  border-radius: var(--border-radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.badge-icon {
  font-size: 16px;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title .highlight {
  color: var(--primary);
  display: block;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--border-radius-full);
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.btn-primary {
  background: var(--gray-900);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gray-800);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--white);
  color: var(--gray-900);
  border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-avatars {
  display: flex;
}

.trust-avatars .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-left: -8px;
}

.trust-avatars .avatar:first-child {
  margin-left: 0;
}

.hero-trust span {
  font-size: 14px;
  color: var(--gray-600);
}

.hero-image {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 280px;
  background: var(--gray-900);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-xl);
}

.phone-screen {
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
}

.app-preview {
  padding: 20px 16px;
  min-height: 500px;
}

.app-header {
  text-align: center;
  margin-bottom: 24px;
}

.app-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
}

.app-card {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
}

.app-card.emergency {
  background: linear-gradient(135deg, var(--red-light) 0%, #FECACA 100%);
  border: 1px solid var(--red);
}

.card-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--border-radius-full);
  margin-bottom: 8px;
}

.card-title {
  display: block;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.card-distance {
  font-size: 13px;
  color: var(--gray-500);
}

.app-card.pet {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--primary-lighter);
  border: 1px solid var(--primary-light);
}

.pet-avatar {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.pet-info {
  flex: 1;
}

.pet-name {
  display: block;
  font-weight: 600;
  color: var(--gray-900);
}

.pet-status {
  font-size: 13px;
  color: var(--green);
}

.floating-card {
  position: absolute;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  animation: float 3s ease-in-out infinite;
}

.floating-icon {
  font-size: 20px;
}

.card-1 {
  top: 20%;
  left: -20px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 30%;
  right: -20px;
  animation-delay: 1.5s;
}

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

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}

.hero-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
   SECTION STYLES
   ========================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: var(--border-radius-full);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-badge.light {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features {
  padding: 100px 0;
  background: var(--white);
}

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

.feature-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-icon.emergency {
  background: var(--red-light);
  color: var(--red);
}

.feature-icon.blood {
  background: #FEE2E2;
  color: #DC2626;
}

.feature-icon.health {
  background: var(--green-light);
  color: var(--green);
}

.feature-icon.qr {
  background: var(--purple-light);
  color: var(--purple);
}

.feature-icon.location {
  background: #FEF3C7;
  color: #D97706;
}

.feature-icon.chat {
  background: var(--blue-light);
  color: var(--blue);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.6;
}

/* ==========================================
   HOW IT WORKS SECTION
   ========================================== */
.how-it-works {
  padding: 100px 0;
  background: var(--gray-50);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  font-size: 28px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.step p {
  color: var(--gray-500);
  font-size: 15px;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: var(--gray-200);
  margin-top: 70px;
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

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

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  opacity: 0.9;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

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

.testimonial-card {
  background: var(--gray-50);
  padding: 32px;
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testimonial-content {
  margin-bottom: 24px;
}

.stars {
  margin-bottom: 16px;
  font-size: 18px;
}

.testimonial-content p {
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.author-name {
  display: block;
  font-weight: 600;
  color: var(--gray-900);
}

.author-role {
  font-size: 14px;
  color: var(--gray-500);
}

/* ==========================================
   DOWNLOAD SECTION
   ========================================== */
.download {
  padding: 100px 0;
  background: var(--gray-900);
}

.download-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.download h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.download-text p {
  color: var(--gray-400);
  font-size: 18px;
  margin-bottom: 32px;
}

.download-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 12px 24px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.store-badge:hover {
  transform: scale(1.05);
}

.store-icon {
  width: 32px;
  height: 32px;
  color: var(--gray-900);
}

.store-label {
  font-size: 12px;
  color: var(--gray-500);
  display: block;
}

.store-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
}

.download-note {
  color: var(--gray-500) !important;
  font-size: 14px !important;
}

.download-qr {
  text-align: center;
}

.qr-placeholder {
  background: var(--white);
  padding: 24px;
  border-radius: var(--border-radius);
  display: inline-block;
}

.qr-code {
  font-size: 100px;
  display: block;
  margin-bottom: 12px;
}

.qr-placeholder span {
  font-size: 14px;
  color: var(--gray-500);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--gray-900);
  padding: 60px 0 30px;
  border-top: 1px solid var(--gray-800);
}

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

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--gray-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  color: var(--white);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-links h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links a,
.footer-links p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 14px;
  margin-bottom: 12px;
}

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

.footer-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-address {
  color: var(--gray-400);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--gray-800);
  text-align: center;
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: 14px;
}

.made-with {
  margin-top: 8px;
}

/* ==========================================
   PAGE HEADER
   ========================================== */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--primary-light) 100%);
  text-align: center;
}

.page-header.small {
  padding: 120px 0 40px;
}

.page-badge {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: var(--border-radius-full);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.page-header p {
  font-size: 18px;
  color: var(--gray-600);
}

/* ==========================================
   ABOUT SECTIONS
   ========================================== */
.about-section {
  padding: 80px 0;
}

.about-section.alt-bg {
  background: var(--gray-50);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content.reverse {
  direction: rtl;
}

.about-content.reverse > * {
  direction: ltr;
}

.about-text .section-badge {
  margin-bottom: 12px;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 24px;
}

.about-text p {
  color: var(--gray-600);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

.about-text .highlight-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.about-image {
  display: flex;
  justify-content: center;
}

.image-placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-lighter) 100%);
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.placeholder-icon {
  font-size: 80px;
}

.placeholder-text {
  font-size: 14px;
  color: var(--gray-500);
}

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

.value-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.value-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.6;
}

/* ==========================================
   IMPACT SECTION
   ========================================== */
.impact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

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

.impact-card {
  background: rgba(255,255,255,0.1);
  padding: 32px 24px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  color: var(--white);
}

.impact-number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 8px;
}

.impact-label {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.impact-card p {
  font-size: 14px;
  opacity: 0.8;
}

/* ==========================================
   TEAM SECTION
   ========================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-member {
  text-align: center;
  padding: 40px 24px;
  background: var(--gray-50);
  border-radius: var(--border-radius-lg);
}

.team-photo {
  width: 100px;
  height: 100px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 20px;
}

.team-member h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.team-role {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 8px;
}

.team-bio {
  color: var(--gray-500);
  font-size: 14px;
}

/* ==========================================
   PARTNERS SECTION
   ========================================== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.partner-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid var(--gray-100);
}

.partner-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 12px;
}

.partner-name {
  font-weight: 600;
  color: var(--gray-700);
}

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

.cta-section h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.cta-buttons .btn-primary:hover {
  background: var(--gray-100);
}

/* ==========================================
   LEGAL CONTENT
   ========================================== */
.legal-content {
  padding: 60px 0 100px;
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
}

.legal-toc {
  background: var(--gray-50);
  padding: 24px 32px;
  border-radius: var(--border-radius);
  margin-bottom: 40px;
}

.legal-toc h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.legal-toc ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.legal-toc li a {
  color: var(--gray-600);
  font-size: 14px;
}

.legal-toc li a:hover {
  color: var(--primary);
}

.legal-text h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 48px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}

.legal-text h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-text h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-800);
  margin: 24px 0 12px;
}

.legal-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.legal-text p {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-text ul,
.legal-text ol {
  margin-bottom: 16px;
  padding-left: 0;
}

.legal-text li {
  color: var(--gray-600);
  margin-bottom: 8px;
  padding-left: 8px;
}

.legal-text a {
  color: var(--primary);
}

.legal-text a:hover {
  text-decoration: underline;
}

.legal-highlight {
  background: var(--primary-lighter);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  margin: 24px 0;
}

.legal-highlight p {
  margin-bottom: 12px;
}

.legal-highlight p:last-child {
  margin-bottom: 0;
}

.legal-highlight ul {
  margin-bottom: 0;
}

.legal-warning {
  background: var(--red-light);
  border-left: 4px solid var(--red);
  padding: 20px 24px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  margin: 24px 0;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.right-item {
  background: var(--gray-50);
  padding: 20px;
  border-radius: var(--border-radius);
}

.right-item h4 {
  margin-bottom: 8px;
}

.right-item p {
  margin-bottom: 0;
  font-size: 14px;
}

.contact-box {
  background: var(--gray-50);
  padding: 24px;
  border-radius: var(--border-radius);
  margin: 24px 0;
}

.contact-box p {
  margin-bottom: 8px;
}

.contact-box p:last-child {
  margin-bottom: 0;
}

.legal-date {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  color: var(--gray-500);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-subtitle {
    margin: 0 auto 32px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
  }
  
  .hero-image {
    margin-top: 40px;
  }
  
  .floating-card {
    display: none;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-content.reverse {
    direction: ltr;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .download-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .download-buttons {
    justify-content: center;
  }
  
  .rights-grid {
    grid-template-columns: 1fr;
  }
  
  .legal-toc ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero {
    padding: 120px 0 80px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .steps {
    flex-direction: column;
    align-items: center;
  }
  
  .step {
    max-width: 100%;
  }
  
  .step-connector {
    width: 2px;
    height: 40px;
    margin: 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-links a,
  .footer-links p {
    justify-content: center;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .page-header h1 {
    font-size: 36px;
  }
  
  .values-grid,
  .impact-grid,
  .team-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .about-text h2 {
    font-size: 28px;
  }
  
  .download h2,
  .cta-section h2 {
    font-size: 32px;
  }
  
  .store-badge {
    width: 100%;
    justify-content: center;
  }
  
  .legal-text h2 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .phone-mockup {
    width: 240px;
  }
  
  .stat-item {
    padding: 0 8px;
  }
  
  .stat-number {
    font-size: 28px;
  }
}
