/* ========================================
   APPIFY - Senior Care Landing Page
   Design System & Styles
   ======================================== */

/* --- Google Font --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --primary: #0F3D5E;
  --primary-light: #164d74;
  --secondary: #3A7CA5;
  --secondary-light: #4d92bb;
  --bg-light: #EAF4F9;
  --bg-lighter: #F5FAFD;
  --dark: #0D1B2A;
  --dark-card: #132438;
  --white: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-body: #3D4F5F;
  --text-muted: #6B7280;
  --accent: #E8443A;
  --accent-hover: #D63831;
  --accent-light: rgba(232, 68, 58, 0.1);
  --success: #10B981;
  --gradient-primary: linear-gradient(135deg, #0F3D5E 0%, #3A7CA5 100%);
  --gradient-hero: linear-gradient(135deg, #0a2e47 0%, #0F3D5E 40%, #1a5a80 100%);
  --gradient-dark: linear-gradient(180deg, #0D1B2A 0%, #132d4a 100%);
  --shadow-xs: 0 1px 3px rgba(15, 61, 94, 0.06);
  --shadow-sm: 0 2px 8px rgba(15, 61, 94, 0.08);
  --shadow-md: 0 4px 24px rgba(15, 61, 94, 0.12);
  --shadow-lg: 0 8px 40px rgba(15, 61, 94, 0.16);
  --shadow-xl: 0 16px 64px rgba(15, 61, 94, 0.20);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  --max-width: 1200px;
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}

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

.section {
  padding: 100px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 800;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232, 68, 58, 0.3);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 68, 58, 0.4);
}

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

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

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

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

.highlight {
  color: var(--accent);
}

/* --- Scroll Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- 1. NAVIGATION --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
}

.navbar.scrolled .nav-logo {
  color: var(--text-dark);
}

.nav-logo svg {
  width: 40px;
  height: 40px;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

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

.navbar.scrolled .nav-links a {
  color: var(--text-body);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--accent) !important;
  color: var(--white) !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  box-shadow: 0 4px 12px rgba(232, 68, 58, 0.3);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 68, 58, 0.4) !important;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--text-dark);
}

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

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* --- 2. HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(58, 124, 165, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 68, 58, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero-content {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title .accent-text {
  background: linear-gradient(135deg, #F97066 0%, #FBBF24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  max-width: 520px;
}

.hero-value {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  padding: 12px 20px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.hero-value p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

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

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 520px;
}

/* App mockup cards */
.mockup-phone {
  background: var(--white);
  border-radius: 28px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  width: 260px;
  position: relative;
  z-index: 2;
  margin-left: auto;
}

.mockup-phone-screen {
  background: var(--bg-light);
  border-radius: 20px;
  padding: 20px 16px;
  min-height: 380px;
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.mockup-header h4 {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
}

.mockup-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-avatar svg {
  width: 16px;
  height: 16px;
  color: white;
}

.mockup-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-xs);
}

.mockup-card-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.mockup-card-meta {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.mockup-progress {
  height: 4px;
  background: #E5E7EB;
  border-radius: 4px;
  margin-top: 8px;
  overflow: hidden;
}

.mockup-progress-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--gradient-primary);
}

.mockup-tablet {
  position: absolute;
  top: 40px;
  left: 0;
  background: var(--white);
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  width: 220px;
  z-index: 1;
}

.mockup-tablet-screen {
  background: var(--bg-light);
  border-radius: 14px;
  padding: 16px;
}

.mockup-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.mockup-stat-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mockup-stat-icon svg {
  width: 14px;
  height: 14px;
}

.mockup-stat-info h5 {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
}

.mockup-stat-info p {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

.floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: floatBadge 3s ease-in-out infinite;
}

.floating-badge.badge-1 {
  top: 10px;
  left: 20px;
}

.floating-badge.badge-2 {
  bottom: 60px;
  right: -20px;
}

.floating-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-badge-icon svg {
  width: 18px;
  height: 18px;
}

.floating-badge-text h5 {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

.floating-badge-text p {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* --- 3. TRUST BAR --- */
.trust-bar {
  padding: 48px 0;
  background: var(--white);
  border-bottom: 1px solid #f0f0f0;
}

.trust-bar-title {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  font-weight: 500;
}

.trust-bar-title span {
  color: var(--accent);
  font-weight: 700;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.5;
  transition: var(--transition);
}

.trust-logos:hover {
  opacity: 0.8;
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
}

.trust-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
}

.trust-logo-icon svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
}

/* --- 4. PROBLEM STATEMENT --- */
.problems {
  background: var(--bg-lighter);
}

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

.problem-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
}

.problem-card:hover::before {
  transform: scaleX(1);
}

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

.problem-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: var(--accent-light);
}

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

.problem-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- 5. SOLUTION --- */
.solution {
  background: var(--white);
}

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

.solution-visual {
  position: relative;
}

.solution-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--gradient-primary);
  padding: 32px;
}

.solution-mockup {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.solution-mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.solution-mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

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

.solution-mockup-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
}

.solution-mockup-row .icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solution-mockup-row .text-block {
  flex: 1;
}

.solution-mockup-row .text-line {
  height: 8px;
  background: #D1D5DB;
  border-radius: 4px;
  margin-bottom: 4px;
}

.solution-mockup-row .text-line:last-child {
  width: 60%;
  margin-bottom: 0;
}

.solution-content .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.solution-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.solution-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(58, 124, 165, 0.1);
}

.solution-feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
}

.solution-feature h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.solution-feature p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* --- 6. SERVICES --- */
.services {
  background: var(--bg-lighter);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  transition: var(--transition);
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.service-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: var(--bg-light);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  color: var(--secondary);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  font-weight: 700;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag {
  padding: 4px 12px;
  background: var(--bg-light);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--secondary);
}

/* --- 7. WHAT WE OFFER --- */
.offerings {
  background: var(--gradient-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.offerings::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(58, 124, 165, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.offerings .section-label {
  color: var(--accent);
}

.offerings .section-label::before {
  background: var(--accent);
}

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

.offerings .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.offerings .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.offerings-content {
  padding-top: 20px;
}

.offerings-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 32px;
}

.offerings-cta {
  margin-top: 16px;
}

.offerings-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offering-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
  cursor: default;
}

.offering-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(58, 124, 165, 0.3);
  transform: translateX(4px);
}

.offering-number {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  background: var(--gradient-primary);
  color: var(--white);
}

.offering-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.offering-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* --- 8. WHY CHOOSE US --- */
.why-us {
  background: var(--white);
}

.why-us .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-card {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-light);
  text-align: center;
  transition: var(--transition);
}

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

.stat-card:first-child {
  grid-column: 1 / -1;
  background: var(--gradient-primary);
  color: var(--white);
}

.stat-card:first-child h3,
.stat-card:first-child p {
  color: var(--white);
}

.stat-card h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-card p {
  font-size: 0.88rem;
  font-weight: 500;
}

.why-us-content .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.why-us-points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-point-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(16, 185, 129, 0.1);
}

.why-point-icon svg {
  width: 22px;
  height: 22px;
  color: var(--success);
}

.why-point h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-point p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- 9. TESTIMONIALS --- */
.testimonials {
  background: var(--bg-lighter);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid #f0f0f0;
  position: relative;
}

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

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: #FBBF24;
  fill: #FBBF24;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.testimonial-author h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- 10. OUR PROCESS --- */
.process {
  background: var(--white);
}

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

.process-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  opacity: 0.2;
  z-index: 0;
}

.process-card {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.process-card:hover {
  background: var(--bg-light);
}

.process-step {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  background: var(--gradient-primary);
  box-shadow: 0 8px 24px rgba(15, 61, 94, 0.2);
}

.process-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.process-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- 11. FAQ --- */
.faq {
  background: var(--bg-lighter);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 16px;
  border: 1px solid #f0f0f0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--secondary);
}

.faq-item.active {
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

.faq-question {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  flex: 1;
}

.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--bg-light);
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  background: var(--primary);
  transform: rotate(180deg);
}

.faq-toggle svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-toggle svg {
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
  padding: 0 28px 24px;
}

.faq-answer-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* --- 12. FINAL CTA --- */
.final-cta {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

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

.cta-visual {
  position: relative;
}

.cta-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--gradient-primary);
  padding: 40px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-image-wrapper h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
}

.cta-image-wrapper h2 .highlight {
  color: #FBBF24;
}

.cta-image-wrapper p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-decorative-circle {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cta-content {
  padding: 20px 0;
}

.cta-content .section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.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.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid #E5E7EB;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(58, 124, 165, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9CA3AF;
}

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

.form-submit {
  align-self: flex-start;
}

/* --- 13. FOOTER --- */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

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

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-logo svg {
  width: 36px;
  height: 36px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

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

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
}

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

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.55);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

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

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    display: none;
  }

  .hero-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
  }

  .hero-value {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .solution .container,
  .why-us .container,
  .final-cta .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .offerings .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .process-grid::before {
    display: none;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: var(--text-body) !important;
    padding: 14px 20px;
    width: 100%;
    border-radius: var(--radius-sm);
  }

  .nav-links a:hover {
    background: var(--bg-light);
    color: var(--primary) !important;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }

  .nav-toggle {
    display: flex;
  }

  .problems-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

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

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

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

  .stat-card:first-child {
    grid-column: auto;
  }

  .cta-visual {
    order: 2;
  }

  .cta-content {
    order: 1;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 72px;
  }

  .trust-logos {
    gap: 24px;
  }

  .trust-logo span {
    font-size: 0.85rem;
  }
}

/* --- FLOATING WHATSAPP BUTTON --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}