:root {
  --primary: #f97316; /* Orange accent matching the app */
  --primary-hover: #ea580c;
  --secondary: #0ea5e9; /* Blue accent */
  --bg-dark: #090d16;
  --bg-darker: #04060b;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --glass-bg: rgba(17, 24, 39, 0.45);
  --glass-border: rgba(255, 255, 255, 0.08);
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

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

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(9, 13, 22, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.logo-icon svg {
  width: 22px;
  height: 22px;
}

.logo span span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
}

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

.nav-links .nav-cta {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  color: var(--text-main);
}

.nav-links .nav-cta:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
  transform: translateY(-2px);
}

/* ─── HERO SECTION ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.blob {
  position: absolute;
  filter: blur(120px);
  opacity: 0.45;
  border-radius: 50%;
}

.blob-indigo {
  top: 10%;
  right: 15%;
  width: 500px;
  height: 500px;
  background: #3b82f6;
  animation: float-blob 12s ease-in-out infinite alternate;
}

.blob-orange {
  bottom: 10%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: var(--primary);
  animation: float-blob 15s ease-in-out infinite alternate-reverse;
}

@keyframes float-blob {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -60px) scale(1.1); }
  100% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.badge {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
  color: var(--primary);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.hero-title {
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #ffffff 30%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.6;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s backwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}

.btn-playstore {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #000;
  color: #fff;
  border: 1px solid var(--glass-border);
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius-md);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-playstore:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.25);
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.btn-text span {
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.btn-text strong {
  font-size: 1.15rem;
  font-weight: 700;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  border-left: 1px solid var(--glass-border);
  padding-left: 2.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-val {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Mockup Rendering */
.hero-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.screen-glow {
  position: absolute;
  width: 320px;
  height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.2) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.phone-mockup {
  position: relative;
  z-index: 1;
  width: 290px;
  height: 590px;
  border-radius: 40px;
  padding: 10px;
  background: #1e293b;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), inset 0 2px 4px rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.05);
}

.phone-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #0f172a;
  border: 1px solid rgba(255,255,255,0.05);
}

.phone-camera {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 20px;
  background: #000;
  border-radius: 20px;
  z-index: 5;
}

.phone-screen {
  width: 100%;
  height: 100%;
  padding-top: 35px;
}

/* App UI design inside mockup */
.app-ui {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.2rem;
  font-family: 'Outfit', sans-serif;
  color: #1e293b;
  background-color: #f4f6fc;
}

.app-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.65rem;
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0.8rem;
  padding: 0 0.2rem;
}

.status-bar-icons {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.status-bar-icons svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.header-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.header-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
}

.header-date {
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 500;
}

.header-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  flex-shrink: 0;
}

.header-avatar svg {
  width: 18px;
  height: 18px;
}

.app-membership-card {
  background: #eef2ff;
  border: 1px solid #dce9fd;
  border-radius: 16px;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.membership-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.membership-star {
  font-size: 1.1rem;
}

.membership-text {
  display: flex;
  flex-direction: column;
}

.membership-label {
  font-size: 0.55rem;
  text-transform: uppercase;
  color: #4f46e5;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.membership-status {
  font-size: 0.85rem;
  font-weight: 800;
  color: #1e1b4b;
}

.membership-expiry {
  font-size: 0.65rem;
  color: #4b5563;
  margin-top: 0.1rem;
}

.membership-chevron {
  color: #4b5563;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
}

.membership-chevron svg {
  width: 100%;
  height: 100%;
}

.app-grid-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.grid-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  text-align: left;
}

.grid-icon-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.grid-icon-wrapper.sell { background: #e6f4ea; color: #137333; }
.grid-icon-wrapper.purchase { background: #e8f0fe; color: #1a73e8; }
.grid-icon-wrapper.repair { background: #fef7e0; color: #b06000; }
.grid-icon-wrapper.reports { background: #f3f0fd; color: #681da8; }

.grid-icon-wrapper svg {
  width: 18px;
  height: 18px;
  fill: none;
}

.grid-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.35rem;
}

.grid-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
}

.grid-badge.sell { background: #e6f4ea; color: #137333; }
.grid-badge.purchase { background: #e8f0fe; color: #1a73e8; }
.grid-badge.repair { background: #fef7e0; color: #b06000; }
.grid-badge.reports { background: #f3f0fd; color: #681da8; }

.app-horizontal-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  text-align: left;
}

.horizontal-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: 1;
}

.horizontal-icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #e8f0fe;
  color: #1a73e8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.horizontal-icon-wrapper svg {
  width: 20px;
  height: 20px;
  fill: none;
}

.horizontal-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.horizontal-header-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.horizontal-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0f172a;
}

.horizontal-badge {
  background: #e8f0fe;
  color: #1a73e8;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 5px;
}

.horizontal-desc {
  font-size: 0.65rem;
  color: #64748b;
  line-height: 1.3;
}

.horizontal-chevron {
  color: #64748b;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
}

.horizontal-chevron svg {
  width: 100%;
  height: 100%;
}

/* ─── SECTION COMMON ─── */
section {
  padding: 7rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4.5rem;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-title.text-left {
  text-align: left;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  transition: var(--transition);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.2);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  background: rgba(17, 24, 39, 0.6);
}

/* ─── FEATURES ─── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

.icon-blue { background: #0284c7; }
.icon-orange { background: #ea580c; }
.icon-green { background: #16a34a; }
.icon-indigo { background: #4f46e5; }
.icon-red { background: #dc2626; }
.icon-yellow { background: #ca8a04; }

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ─── WHY CHOOSE US ─── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}

.why-visual {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.visual-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #fff;
}

.visual-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.bad-list li {
  color: var(--text-muted);
}

.good-list li {
  color: var(--text-main);
  font-weight: 500;
}

.visual-card.highlighting {
  border-color: rgba(249, 115, 22, 0.35);
  background: rgba(249, 115, 22, 0.05);
}

.why-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
}

.benefit-item {
  margin-bottom: 1.8rem;
}

.benefit-item strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: #fff;
}

.benefit-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ─── PRICING PLANS ─── */
.plans {
  background: var(--bg-darker);
}

.plans-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.plan-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  max-width: 420px;
}

.plan-card.popular {
  border-color: var(--primary);
  background: rgba(249, 115, 22, 0.04);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.plan-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.25rem;
}

.plan-price .currency {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary);
}

.plan-price .value {
  font-size: 3.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.plan-price .duration {
  font-size: 1rem;
  color: var(--text-muted);
  margin-left: 0.4rem;
}

.plan-equivalent {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.plan-card hr {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--glass-border);
  margin-bottom: 1.8rem;
}

.plan-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex: 1;
}

.plan-card li {
  font-size: 0.95rem;
  color: var(--text-main);
}

.btn-plan, .btn-plan-active {
  width: 100%;
  text-align: center;
  padding: 1rem;
  border-radius: var(--border-radius-md);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  display: block;
}

.btn-plan {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
}

.btn-plan:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-plan-active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-plan-active:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 2rem;
}

.owner-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.owner-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 1.1rem;
}

.owner-info div {
  display: flex;
  flex-direction: column;
}

.owner-info div strong {
  font-size: 0.95rem;
  color: #fff;
}

.owner-info div span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── FAQ ACCORDIONS ─── */
.faq {
  background: var(--bg-darker);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-accordion details {
  padding: 1.5rem 2rem;
  cursor: pointer;
  outline: none;
}

.faq-accordion summary {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}

.faq-accordion summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.faq-accordion details[open] summary::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.faq-accordion details p {
  margin-top: 1.2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  cursor: default;
}

/* ─── CONTACT SECTION ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 6rem;
}

.contact-text h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.contact-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-weight: 600;
}

.contact-links a {
  color: var(--primary);
  text-decoration: none;
}

.contact-links a:hover {
  text-decoration: underline;
}

.form-group {
  margin-bottom: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.form-group input, .form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  padding: 1rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 15px rgba(249, 115, 22, 0.15);
}

.btn-submit {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: 0;
  padding: 1.1rem;
  border-radius: var(--border-radius-md);
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-submit:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.form-feedback {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-feedback.success { color: #10b981; }
.form-feedback.error { color: #ef4444; }

/* ─── FOOTER ─── */
.footer {
  background: var(--bg-darker);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1.25fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1.2rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer h3 {
  font-size: 1.1rem;
  margin-bottom: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer p, .footer a {
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 0.85rem;
  display: block;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer a:hover {
  color: var(--primary);
  padding-left: 3px;
}

.footer-legal a {
  display: block;
}

.copyright {
  text-align: center;
  color: var(--text-muted);
  border-top: 1px solid var(--glass-border);
  padding-top: 2.2rem;
  font-size: 0.9rem;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-text {
    align-items: center;
    text-align: center;
  }
  .hero-title {
    font-size: 3.2rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .why-text {
    text-align: center;
  }
  .section-title.text-left {
    text-align: center;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .contact-text {
    text-align: center;
  }
}

@media (max-width: 768px) {
  section {
    padding: 5rem 0;
  }
  .nav-links {
    display: none;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }
  .btn-playstore {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    width: 100%;
    justify-content: center;
  }
  .plans-grid {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .plan-card {
    width: 100%;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
