/*====================================================
 FIMNEST WEBSITE
 Part 1
 Variables + Reset + Header + Hero
=====================================================*/

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap");

/*==========================
 Variables
==========================*/

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;

  --secondary: #10b981;

  --green: #22c55e;

  --accent: #8b5cf6;

  --dark: #0f172a;

  --text: #334155;

  --muted: #64748b;

  --light: #f8fafc;

  --white: #ffffff;

  --border: #e5e7eb;

  --radius: 22px;

  --transition: 0.35s ease;

  --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.05);

  --shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  --shadow-lg: 0 25px 70px rgba(0, 0, 0, 0.15);
}

/*==========================
 Reset
==========================*/

* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;

  background: var(--light);

  color: var(--text);

  overflow-x: hidden;

  padding-top: 85px;
}

/*==========================
 Scrollbar
==========================*/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #eef2ff;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--secondary));

  border-radius: 20px;
}

/*==========================
 Typography
==========================*/

h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;

  color: var(--dark);
}

p {
  line-height: 1.8;

  color: var(--muted);
}

/*==========================
 Container
==========================*/

.container {
  max-width: 1280px;

  margin: auto;

  padding: 0 30px;
}

/*==========================
 Navbar
==========================*/

#navbar {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 85px;

  z-index: 999;

  transition: 0.35s;

  background: rgba(255, 255, 255, 0.82);

  backdrop-filter: blur(18px);

  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
  height: 85px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 30px;
}

/*==========================
 Logo
==========================*/

.logo {
  display: flex;

  align-items: center;

  gap: 12px;

  text-decoration: none;
}

.logo-icon {
  font-size: 34px;
}

.logo img {
  width: auto;
  height: 50px;
}

.logo-text {
  font-size: 34px;

  font-weight: 800;

  font-family: "Poppins", sans-serif;

  color: var(--primary);

  letter-spacing: -1px;
}

.logo-text span {
  color: var(--secondary);
}

/*==========================
 Navigation
==========================*/

nav {
  display: flex;

  justify-content: center;

  flex: 1;
}

nav ul {
  display: flex;

  list-style: none;

  gap: 45px;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;

  font-size: 16px;

  font-weight: 600;

  color: var(--text);

  transition: 0.3s;
}

nav ul li a:hover {
  color: var(--primary);
}

nav ul li::after {
  content: "";

  position: absolute;

  bottom: -8px;

  left: 0;

  width: 0;

  height: 3px;

  background: linear-gradient(90deg, var(--primary), var(--secondary));

  transition: 0.3s;

  border-radius: 30px;
}

nav ul li:hover::after {
  width: 100%;
}

/*==========================
 Buttons
==========================*/

.download-btn,
.hero-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 16px 34px;

  border-radius: 50px;

  background: linear-gradient(135deg, var(--primary), var(--secondary));

  color: white;

  font-weight: 700;

  text-decoration: none;

  transition: 0.35s;

  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.25);
}

.download-btn:hover,
.hero-btn:hover {
  transform: translateY(-4px);

  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.35);
}

/*==========================
 Hero
==========================*/

.hero {
  position: relative;

  overflow: hidden;

  min-height: calc(100vh - 85px);

  display: flex;

  align-items: center;

  padding: 40px 0;

  background:
    radial-gradient(
      circle at top left,

      rgba(34, 197, 94, 0.18),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,

      rgba(37, 99, 235, 0.18),
      transparent 35%
    ),
    linear-gradient(135deg, #ecfdf5, #eff6ff, #ffffff);
}

/*==========================
 Background Blobs
==========================*/

.hero::before {
  content: "";

  position: absolute;

  width: 420px;

  height: 420px;

  background: #22c55e22;

  border-radius: 50%;

  filter: blur(70px);

  top: -120px;

  left: -120px;

  animation: floatBlob 8s infinite ease-in-out;
}

.hero::after {
  content: "";

  position: absolute;

  width: 350px;

  height: 350px;

  background: #2563eb22;

  border-radius: 50%;

  filter: blur(70px);

  bottom: -80px;

  right: -80px;

  animation: floatBlob2 10s infinite ease-in-out;
}

/*==========================
 Hero Layout
==========================*/

.hero-content {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: 1.2fr 0.8fr;

  align-items: center;

  gap: 70px;
}

/*==========================
 Hero Text
==========================*/

.hero-text h1 {
  font-size: 68px;

  line-height: 1.1;

  margin-bottom: 24px;
}

.hero-text p {
  font-size: 20px;

  margin-bottom: 40px;

  max-width: 620px;
}

/*==========================
 Hero Card
==========================*/

.hero-card {
  display: flex;

  justify-content: center;

  align-items: center;
}

.mockup {
  width: 360px;

  background: white;

  border-radius: 34px;

  padding: 25px;

  box-shadow: var(--shadow-lg);

  position: relative;

  transition: 0.4s;
}

.mockup:hover {
  transform: translateY(-8px) rotate(-1deg);
}

.balance-card {
  padding: 28px;

  border-radius: 24px;

  background: linear-gradient(135deg, var(--primary), var(--secondary));

  color: white;

  margin-bottom: 20px;
}

.balance-card h3 {
  font-size: 15px;

  font-weight: 500;

  color: #e5e7eb;
}

.balance-card h2 {
  font-size: 34px;

  margin-top: 10px;

  color: white;
}

.tile {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 18px 0;

  font-size: 16px;

  font-weight: 600;

  border-bottom: 1px solid var(--border);
}

.tile:last-child {
  border-bottom: none;
}

/*==========================
 Floating Animation
==========================*/

@keyframes floatBlob {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(30px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes floatBlob2 {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-30px);
  }

  100% {
    transform: translateY(0);
  }
}

/*====================================================
 PART 2
 Features + Showcase
=====================================================*/

/*==========================
 Features
==========================*/

.features {
  padding: 120px 0;

  background: #ffffff;

  position: relative;

  overflow: hidden;
}

.features::before {
  content: "";

  position: absolute;

  width: 350px;

  height: 350px;

  background: rgba(37, 99, 235, 0.05);

  border-radius: 50%;

  top: -120px;

  right: -120px;

  filter: blur(60px);
}

.features::after {
  content: "";

  position: absolute;

  width: 280px;

  height: 280px;

  background: rgba(34, 197, 94, 0.08);

  border-radius: 50%;

  bottom: -80px;

  left: -80px;

  filter: blur(50px);
}

.section-title {
  position: relative;

  z-index: 2;

  text-align: center;

  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 48px;

  font-weight: 800;

  margin-bottom: 18px;
}

.section-title p {
  max-width: 720px;

  margin: auto;

  font-size: 19px;
}

/*==========================
 Feature Grid
==========================*/

.feature-grid {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 32px;
}

/*==========================
 Feature Card
==========================*/

.feature-card {
  background: #fff;

  border-radius: 28px;

  padding: 40px 35px;

  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.05);

  transition: 0.35s;

  position: relative;

  overflow: hidden;

  cursor: pointer;

  border: 1px solid rgba(37, 99, 235, 0.05);
}

.feature-card::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 6px;

  background: linear-gradient(90deg, var(--primary), var(--secondary));

  transform: scaleX(0);

  transition: 0.4s;

  transform-origin: left;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 30px 70px rgba(37, 99, 235, 0.15);
}

.feature-card:hover .icon {
  transform: rotate(-10deg) scale(1.1);
}

.icon {
  width: 75px;

  height: 75px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: linear-gradient(135deg, #eef4ff, #ecfdf5);

  border-radius: 20px;

  font-size: 36px;

  margin-bottom: 28px;

  transition: 0.35s;
}

.feature-card h3 {
  font-size: 24px;

  margin-bottom: 16px;
}

.feature-card p {
  font-size: 16px;

  line-height: 1.8;
}

/*==========================
 Showcase
==========================*/

.showcase {
  padding: 120px 0;

  background: linear-gradient(180deg, #ffffff, #f8fafc);

  position: relative;

  overflow: hidden;
}

.showcase::before {
  content: "";

  position: absolute;

  width: 500px;

  height: 500px;

  background: rgba(34, 197, 94, 0.06);

  border-radius: 50%;

  right: -180px;

  top: -180px;

  filter: blur(80px);
}

/*==========================
 Showcase Wrapper
==========================*/

.showcase-wrapper {
  display: grid;

  grid-template-columns: 420px 1fr;

  gap: 90px;

  align-items: center;
}

/*==========================
 Phone Frame
==========================*/

.phone-frame {
  position: relative;

  width: 360px;

  margin: auto;

  padding: 18px;

  background: #111827;

  border-radius: 45px;

  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.18);

  transition: 0.35s;
}

.phone-frame:hover {
  transform: translateY(-10px);
}

.phone-frame::before {
  content: "";

  position: absolute;

  top: 10px;

  left: 50%;

  transform: translateX(-50%);

  width: 120px;

  height: 24px;

  background: #111827;

  border-radius: 20px;

  z-index: 2;
}

.phone-frame img {
  width: 100%;

  height: 720px;

  object-fit: cover;

  border-radius: 32px;

  display: block;
}

/*==========================
 Screen List
==========================*/

.screen-list {
  display: flex;

  flex-direction: column;

  gap: 18px;
}

/*==========================
 Screen Item
==========================*/

.screen-item {
  display: flex;

  align-items: center;

  gap: 16px;

  padding: 22px 28px;

  background: #fff;

  border-radius: 20px;

  cursor: pointer;

  font-size: 18px;

  font-weight: 600;

  transition: 0.35s;

  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);

  border: 1px solid transparent;
}

.screen-item:hover {
  transform: translateX(10px);

  border-color: rgba(37, 99, 235, 0.2);

  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
}

.screen-item.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));

  color: #fff;
}

/*==========================
 Floating Screenshot Card
==========================*/

.screen-item.active::after {
  content: "";

  position: absolute;
}

/*==========================
 Phone Glow
==========================*/

.phone-frame::after {
  content: "";

  position: absolute;

  width: 250px;

  height: 250px;

  background: rgba(37, 99, 235, 0.12);

  border-radius: 50%;

  left: 50%;

  bottom: -120px;

  transform: translateX(-50%);

  filter: blur(70px);

  z-index: -1;
}

/*==========================
 Hover Animation
==========================*/

.phone-frame,
.feature-card,
.screen-item {
  will-change: transform;
}

/*==========================
 Desktop Large
==========================*/

@media (max-width: 1200px) {
  .showcase-wrapper {
    grid-template-columns: 340px 1fr;

    gap: 60px;
  }

  .phone-frame {
    width: 320px;
  }

  .phone-frame img {
    height: 640px;
  }
}

/*==========================
 Tablet
==========================*/

@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-wrapper {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .phone-frame {
    margin-bottom: 30px;
  }

  .screen-list {
    max-width: 550px;

    margin: auto;
  }
}

/*==========================
 Mobile
==========================*/

@media (max-width: 768px) {
  .features,
  .showcase {
    padding: 90px 0;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .section-title p {
    font-size: 17px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 30px;
  }

  .phone-frame {
    width: 290px;

    padding: 14px;
  }

  .phone-frame img {
    height: 580px;
  }

  .screen-item {
    padding: 18px;

    font-size: 16px;
  }
}

/*====================================================
 PART 3
 Why FimNest + Statistics
=====================================================*/

/*==========================
 Why Section
==========================*/

.why-fimnest {
  padding: 120px 0;

  background: linear-gradient(180deg, #f8fafc, #ffffff);

  position: relative;

  overflow: hidden;
}

.why-fimnest::before {
  content: "";

  position: absolute;

  top: -180px;

  left: -180px;

  width: 420px;

  height: 420px;

  border-radius: 50%;

  background: rgba(34, 197, 94, 0.08);

  filter: blur(80px);
}

.why-fimnest::after {
  content: "";

  position: absolute;

  bottom: -180px;

  right: -180px;

  width: 420px;

  height: 420px;

  border-radius: 50%;

  background: rgba(37, 99, 235, 0.08);

  filter: blur(80px);
}

/*==========================
 Layout
==========================*/

.why-wrapper {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: 1fr 420px;

  gap: 80px;

  align-items: center;
}

/*==========================
 Left Side
==========================*/

.why-left {
  display: flex;

  flex-direction: column;

  gap: 30px;
}

/*==========================
 Why Item
==========================*/

.why-item {
  display: flex;

  gap: 20px;

  padding: 25px;

  background: #fff;

  border-radius: 22px;

  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);

  transition: 0.35s;
}

.why-item:hover {
  transform: translateX(10px);

  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.12);
}

.check {
  width: 55px;

  height: 55px;

  flex-shrink: 0;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 18px;

  font-size: 24px;

  font-weight: bold;

  background: linear-gradient(135deg, var(--primary), var(--secondary));

  color: #fff;
}

.why-item h3 {
  font-size: 24px;

  margin-bottom: 10px;
}

.why-item p {
  font-size: 16px;

  line-height: 1.8;
}

/*==========================
 Glass Card
==========================*/

.glass-card {
  padding: 35px;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.8);

  backdrop-filter: blur(25px);

  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.1);

  border: 1px solid rgba(255, 255, 255, 0.5);

  position: sticky;

  top: 110px;
}

.glass-card h4 {
  font-size: 18px;

  color: var(--primary);

  margin-bottom: 12px;
}

.glass-card h1 {
  font-size: 48px;

  margin-bottom: 25px;
}

.glass-card hr {
  border: none;

  height: 1px;

  background: #e5e7eb;

  margin: 20px 0;
}

.mini-row {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 18px 0;

  border-bottom: 1px solid #e5e7eb;

  font-size: 17px;
}

.mini-row:last-child {
  border-bottom: none;
}

/*==========================
 Statistics
==========================*/

.statistics {
  padding: 120px 0;

  background: linear-gradient(135deg, #2563eb, #10b981);

  position: relative;

  overflow: hidden;
}

.statistics::before {
  content: "";

  position: absolute;

  width: 450px;

  height: 450px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  top: -200px;

  right: -180px;

  filter: blur(50px);
}

.statistics::after {
  content: "";

  position: absolute;

  width: 350px;

  height: 350px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.06);

  bottom: -160px;

  left: -120px;

  filter: blur(40px);
}

.statistics .section-title h2,
.statistics .section-title p {
  color: #fff;
}

/*==========================
 Statistics Grid
==========================*/

.stats-grid {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
}

/*==========================
 Statistic Card
==========================*/

.stat-card {
  padding: 40px;

  background: rgba(255, 255, 255, 0.14);

  backdrop-filter: blur(18px);

  border-radius: 28px;

  text-align: center;

  transition: 0.35s;

  border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-card:hover {
  transform: translateY(-10px);

  background: rgba(255, 255, 255, 0.22);
}

.stat-icon {
  width: 90px;

  height: 90px;

  margin: auto;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 25px;

  font-size: 42px;

  background: rgba(255, 255, 255, 0.18);

  margin-bottom: 25px;
}

.stat-card h2 {
  font-size: 52px;

  font-weight: 800;

  color: #fff;

  margin-bottom: 12px;
}

.stat-card span {
  font-size: 18px;

  color: #f1f5f9;
}

/*==========================
 Counter
==========================*/

.counter {
  display: inline-block;

  min-width: 120px;
}

/*==========================
 Floating Animation
==========================*/

.stat-card {
  animation: floatCard 5s ease-in-out infinite;
}

.stat-card:nth-child(2) {
  animation-delay: 0.4s;
}

.stat-card:nth-child(3) {
  animation-delay: 0.8s;
}

.stat-card:nth-child(4) {
  animation-delay: 1.2s;
}

@keyframes floatCard {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0);
  }
}

/*==========================
 Tablet
==========================*/

@media (max-width: 992px) {
  .why-wrapper {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .glass-card {
    position: relative;

    top: 0;

    max-width: 420px;

    margin: auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*==========================
 Mobile
==========================*/

@media (max-width: 768px) {
  .why-fimnest,
  .statistics {
    padding: 90px 0;
  }

  .why-item {
    padding: 20px;
  }

  .check {
    width: 48px;

    height: 48px;

    font-size: 20px;
  }

  .why-item h3 {
    font-size: 20px;
  }

  .glass-card {
    padding: 28px;
  }

  .glass-card h1 {
    font-size: 38px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 30px;
  }

  .stat-card h2 {
    font-size: 42px;
  }

  .stat-icon {
    width: 75px;

    height: 75px;

    font-size: 34px;
  }
}

/*====================================================
 PART 4
 Testimonials + FAQ + CTA + Premium Footer
=====================================================*/

/*==========================
 Testimonials
==========================*/

.testimonials {
  padding: 120px 0;

  background: #ffffff;

  position: relative;

  overflow: hidden;
}

.testimonials::before {
  content: "";

  position: absolute;

  width: 380px;

  height: 380px;

  background: rgba(34, 197, 94, 0.08);

  border-radius: 50%;

  left: -180px;

  top: -120px;

  filter: blur(70px);
}

.testimonial-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;

  position: relative;

  z-index: 2;
}

.testimonial-card {
  background: #fff;

  border-radius: 30px;

  padding: 35px;

  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);

  transition: 0.35s;

  border: 1px solid rgba(37, 99, 235, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 30px 70px rgba(37, 99, 235, 0.15);
}

.user {
  display: flex;

  align-items: center;

  margin-bottom: 20px;

  gap: 15px;
}

.avatar {
  width: 65px;

  height: 65px;

  border-radius: 50%;

  background: linear-gradient(135deg, var(--primary), var(--secondary));

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 26px;

  font-weight: 700;

  color: #fff;
}

.user h4 {
  font-size: 20px;

  margin-bottom: 4px;
}

.user span {
  color: var(--muted);

  font-size: 14px;
}

.stars {
  color: #facc15;

  font-size: 20px;

  margin-bottom: 15px;
}

.testimonial-card p {
  line-height: 1.9;
}

/*==========================
 FAQ
==========================*/

.faq {
  padding: 120px 0;

  background: #f8fafc;
}

.faq-container {
  max-width: 900px;

  margin: auto;
}

.faq-item {
  background: #fff;

  border-radius: 20px;

  margin-bottom: 20px;

  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);

  overflow: hidden;

  transition: 0.3s;
}

.faq-item:hover {
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.faq-question {
  padding: 24px 28px;

  font-size: 20px;

  font-weight: 700;

  cursor: pointer;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

.faq-question span {
  font-size: 28px;

  color: var(--primary);

  transition: 0.3s;
}

.faq-answer {
  padding: 0 28px;

  max-height: 0;

  overflow: hidden;

  transition:
    max-height 0.4s ease,
    padding 0.4s ease;

  line-height: 1.9;

  color: var(--muted);
}

.faq-item.active .faq-answer {
  padding: 0 28px 25px;

  max-height: 300px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/*==========================
 Download CTA
==========================*/

.download-section {
  padding: 120px 0;

  background: linear-gradient(135deg, var(--primary), var(--secondary));

  position: relative;

  overflow: hidden;
}

.download-section::before {
  content: "";

  position: absolute;

  width: 500px;

  height: 500px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  top: -250px;

  right: -120px;

  filter: blur(60px);
}

.download-card {
  position: relative;

  z-index: 2;

  max-width: 900px;

  margin: auto;

  text-align: center;

  background: rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(18px);

  padding: 70px;

  border-radius: 35px;

  border: 1px solid rgba(255, 255, 255, 0.15);
}

.download-card h2 {
  font-size: 48px;

  color: #fff;

  margin-bottom: 20px;
}

.download-card p {
  color: #e2e8f0;

  font-size: 20px;

  margin-bottom: 40px;
}

.download-buttons {
  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;
}

.play-btn {
  display: flex;

  align-items: center;

  gap: 15px;

  padding: 18px 34px;

  background: #fff;

  border-radius: 50px;

  font-weight: 700;

  color: var(--primary);

  transition: 0.35s;
}

.play-btn:hover {
  transform: translateY(-5px);
}

.play-btn img {
  width: 32px;
}

/*==========================
 Footer
==========================*/

footer {
  background: #0f172a;

  padding: 90px 0 30px;

  color: #cbd5e1;
}

.footer-container {
  max-width: 1280px;

  margin: auto;

  padding: 0 30px;

  display: grid;

  grid-template-columns: 2fr 1fr 1fr 1fr;

  gap: 60px;
}

.footer-brand h2 {
  color: #fff;

  font-size: 34px;

  margin-bottom: 15px;
}

.footer-brand span {
  color: var(--secondary);
}

.footer-brand p {
  color: #94a3b8;

  line-height: 1.8;

  margin-bottom: 25px;
}

.social {
  display: flex;

  gap: 15px;
}

.social a {
  width: 45px;

  height: 45px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  background: rgba(255, 255, 255, 0.08);

  color: #fff;

  transition: 0.3s;
}

.social a:hover {
  background: var(--secondary);

  transform: translateY(-5px);
}

.footer-column h3 {
  color: #fff;

  margin-bottom: 25px;

  font-size: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 14px;
}

.footer-column a {
  color: #cbd5e1;

  transition: 0.3s;
}

.footer-column a:hover {
  color: #fff;

  padding-left: 8px;
}

.footer-bottom {
  margin-top: 60px;

  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  text-align: center;
}

.footer-bottom p {
  width: 100%;

  margin: 0;

  color: #94a3b8;

  font-size: 15px;
}

.footer-links {
  display: flex;

  gap: 25px;
}

.footer-links a {
  color: #94a3b8;
}

.footer-links a:hover {
  color: #fff;
}

/*==========================
 Tablet
==========================*/

@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .download-card {
    padding: 50px;
  }

  .download-card h2 {
    font-size: 38px;
  }
}

/*==========================
 Mobile
==========================*/

@media (max-width: 768px) {
  .testimonials,
  .faq,
  .download-section {
    padding: 90px 0;
  }

  .faq-question {
    font-size: 18px;

    padding: 20px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .download-card {
    padding: 35px 25px;
  }

  .download-card h2 {
    font-size: 30px;
  }

  .download-card p {
    font-size: 17px;
  }

  .play-btn {
    width: 100%;

    justify-content: center;
  }

  .footer-container {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;

    text-align: center;
  }

  .footer-links {
    justify-content: center;

    flex-wrap: wrap;
  }
}

/*====================================================
 PART 5
 Mobile Menu + Utilities + Animations + Final Polish
=====================================================*/

/*==========================
 Hamburger Menu
==========================*/

.menu-toggle {
  display: none;

  width: 48px;

  height: 48px;

  border: none;

  background: transparent;

  cursor: pointer;

  padding: 0;

  position: relative;

  z-index: 1001;
}

.menu-toggle span {
  display: block;

  width: 28px;

  height: 3px;

  margin: 6px auto;

  background: var(--dark);

  border-radius: 5px;

  transition: 0.35s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/*==========================
 Mobile Navigation
==========================*/

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;

    top: 72px;

    left: -100%;

    width: 100%;

    height: calc(100vh - 72px);

    background: #fff;

    display: flex;

    justify-content: flex-start;

    align-items: flex-start;

    padding: 40px 30px;

    transition: 0.35s;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  }

  nav.active {
    left: 0;
  }

  nav ul {
    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 25px;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    display: block;

    padding: 15px;

    font-size: 18px;

    border-radius: 14px;
  }

  nav ul li a:hover {
    background: #eef4ff;
  }
}

/*==========================
 Floating Icons
==========================*/

.float-icon {
  position: absolute;

  width: 70px;

  height: 70px;

  border-radius: 22px;

  display: flex;

  justify-content: center;

  align-items: center;

  background: rgba(255, 255, 255, 0.8);

  backdrop-filter: blur(15px);

  box-shadow: var(--shadow);

  font-size: 32px;

  animation: floating 6s ease-in-out infinite;
}

.float-1 {
  top: 120px;

  left: 5%;
}

.float-2 {
  bottom: 120px;

  left: 8%;

  animation-delay: 1s;
}

.float-3 {
  top: 120px;

  right: 8%;

  animation-delay: 2s;
}

.float-4 {
  bottom: 120px;

  right: 5%;

  animation-delay: 3s;
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }

  100% {
    transform: translateY(0);
  }
}

/*==========================
 Fade Animation
==========================*/

.fade-up {
  opacity: 0;

  transform: translateY(40px);

  transition: all 0.7s ease;
}

.fade-up.show {
  opacity: 1;

  transform: translateY(0);
}

/*==========================
 Zoom Animation
==========================*/

.zoom {
  transition: 0.4s;
}

.zoom:hover {
  transform: scale(1.05);
}

/*==========================
 Back To Top
==========================*/

.back-top {
  position: fixed;

  right: 25px;

  bottom: 25px;

  width: 55px;

  height: 55px;

  border-radius: 50%;

  background: linear-gradient(135deg, var(--primary), var(--secondary));

  display: flex;

  justify-content: center;

  align-items: center;

  color: #fff;

  font-size: 22px;

  cursor: pointer;

  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);

  opacity: 0;

  visibility: hidden;

  transition: 0.35s;

  z-index: 999;
}

.back-top.show {
  opacity: 1;

  visibility: visible;
}

.back-top:hover {
  transform: translateY(-5px);
}

/*==========================
 Section Spacing
==========================*/

section {
  position: relative;
}

section:not(.hero) {
  padding-top: 120px;

  padding-bottom: 120px;
}

/*==========================
 Utility Classes
==========================*/

.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.w-100 {
  width: 100%;
}

/*==========================
 Image Utilities
==========================*/

img {
  max-width: 100%;

  height: auto;

  display: block;
}

.phone-frame img {
  transition: 0.5s;
}

.phone-frame:hover img {
  transform: scale(1.02);
}

/*==========================
 Button Ripple
==========================*/

.download-btn,
.hero-btn,
.play-btn {
  position: relative;

  overflow: hidden;
}

.download-btn::before,
.hero-btn::before,
.play-btn::before {
  content: "";

  position: absolute;

  top: 50%;

  left: 50%;

  width: 0;

  height: 0;

  background: rgba(255, 255, 255, 0.3);

  border-radius: 50%;

  transform: translate(-50%, -50%);

  transition: 0.5s;
}

.download-btn:hover::before,
.hero-btn:hover::before,
.play-btn:hover::before {
  width: 350px;

  height: 350px;
}

/*==========================
 Small Devices
==========================*/

@media (max-width: 576px) {
  .container {
    padding: 0 18px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 16px;
  }

  .logo-text {
    font-size: 28px;
  }

  .mockup {
    width: 100%;

    padding: 18px;
  }

  .phone-frame {
    width: 260px;
  }

  .phone-frame img {
    height: 520px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .section-title p {
    font-size: 16px;
  }

  .feature-card,
  .stat-card,
  .testimonial-card {
    padding: 25px;
  }

  .icon {
    width: 60px;

    height: 60px;

    font-size: 28px;
  }

  .download-btn,
  .hero-btn {
    width: 100%;
  }

  .float-icon {
    display: none;
  }
}

/*==========================
 Extra Small Devices
==========================*/

@media (max-width: 380px) {
  .hero-text h1 {
    font-size: 1.75rem;
  }

  .logo-text {
    font-size: 24px;
  }

  .phone-frame {
    width: 230px;
  }

  .phone-frame img {
    height: 460px;
  }
}

/*==========================
 Smooth Transitions
==========================*/

a,
button,
.card,
.feature-card,
.stat-card,
.screen-item,
.why-item {
  transition: all 0.35s ease;
}

/*==========================
 Selection Color
==========================*/

::selection {
  background: var(--primary);

  color: #fff;
}

/*==================================
 Contact Us
==================================*/

.contact-us {
  padding: 120px 0;

  background: linear-gradient(180deg, #ffffff, #f8fafc);

  position: relative;

  overflow: hidden;
}

.contact-us::before {
  content: "";

  position: absolute;

  width: 350px;

  height: 350px;

  border-radius: 50%;

  background: rgba(34, 197, 94, 0.08);

  top: -150px;

  right: -150px;

  filter: blur(70px);
}

.contact-wrapper {
  display: grid;

  grid-template-columns: 380px 1fr;

  gap: 60px;

  margin-top: 60px;

  position: relative;

  z-index: 2;
}

.contact-info {
  display: flex;

  flex-direction: column;

  gap: 25px;
}

.contact-card {
  display: flex;

  align-items: center;

  gap: 20px;

  padding: 25px;

  background: #fff;

  border-radius: 24px;

  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);

  transition: 0.35s;
}

.contact-card:hover {
  transform: translateX(10px);
}

.contact-icon {
  width: 65px;

  height: 65px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 18px;

  font-size: 28px;

  background: linear-gradient(135deg, #2563eb, #10b981);

  color: #fff;
}

.contact-card h3 {
  margin-bottom: 8px;

  font-size: 22px;
}

.contact-form {
  background: #fff;

  padding: 40px;

  border-radius: 30px;

  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);

  display: flex;

  flex-direction: column;

  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  padding: 18px 22px;

  border: 1px solid #e5e7eb;

  border-radius: 16px;

  font-size: 16px;

  outline: none;

  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2563eb;

  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.contact-form button {
  padding: 18px;

  border: none;

  border-radius: 50px;

  background: linear-gradient(135deg, #2563eb, #10b981);

  color: #fff;

  font-size: 18px;

  font-weight: 700;

  cursor: pointer;

  transition: 0.35s;
}

.contact-form button:hover {
  transform: translateY(-3px);

  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.25);
}

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-us {
    padding: 90px 0;
  }

  .contact-form {
    padding: 25px;
  }

  .contact-card {
    padding: 20px;
  }
}

/* Hide hamburger on desktop */
.menu-toggle {
  display: none;
}

/* Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1001;
  }

  .menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--dark);
    margin: 3px 0;
    border-radius: 5px;
    transition: 0.3s;
  }

  /* Hide desktop menu */
  nav {
    position: fixed;

    top: 82px;

    left: -100%;

    width: 100%;

    height: calc(100vh - 82px);

    background: #fff;

    transition: 0.35s;

    z-index: 999;

    padding: 30px;
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;

    gap: 25px;
  }

  .download-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-content {
    display: flex;

    flex-direction: column;

    text-align: center;

    gap: 40px;
  }

  .hero-text {
    order: 1;
  }

  .hero-card {
    order: 2;
  }

  .hero-text p {
    margin: auto;
  }

  .mockup {
    width: 280px;
  }
}

nav ul li.active a {
  color: var(--primary);
}

nav ul li.active::after {
  width: 100%;
}
#phoneImage {
  transition: opacity 0.35s ease;
}
