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

:root {
  --primary: #2563EB;
  --primary-light: #3B82F6;
  --primary-dark: #1D4ED8;
  --primary-50: #EFF6FF;
  --primary-100: #DBEAFE;
  --primary-200: #BFDBFE;
  --primary-700: #1D4ED8;
  --primary-800: #1E40AF;
  --primary-900: #1E3A8A;
  --text-dark: #1E293B;
  --text-medium: #475569;
  --text-light: #94A3B8;
  --white: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-section: #F1F5F9;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

.section-badge {
  display: inline-block;
  background: var(--primary-100);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

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

.section-line {
  width: 50px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 12px auto 20px;
}

.section-desc {
  color: var(--text-medium);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  padding: 12px 0;
  color-scheme: light;
}

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

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

.logo-icon-img {
  height: 42px;
  width: 42px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.logo-icon-img-footer {
  height: 38px;
  width: 38px;
}

.logo-full-img {
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.logo-full-img-navbar {
  height: 42px;
}

.logo-full-img-footer {
  height: 60px;
  background: transparent;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: light-dark(#0f172a, #ffffff);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-medium);
  transition: color 0.3s;
  position: relative;
}

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

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: white;
  z-index: 999;
  padding: 80px 30px 30px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

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

.mobile-menu a {
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu a:hover {
  color: var(--primary);
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
}

/* HERO */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 50%, #60A5FA 100%);
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

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

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 18px;
  opacity: 0.98;
}

.hero-tagline strong {
  font-weight: 800;
}

.hero-desc {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 520px;
}

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

.hero-image {
  text-align: center;
}

.hero-illustration {
  max-width: 480px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
  animation: float 3s ease-in-out infinite;
}

.btn-primary {
  background: white;
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
}

@keyframes float {

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

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

/* ABOUT */
.about {
  padding: 100px 0;
  background: var(--bg-light);
}

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

.about-image img {
  max-width: 500px;
  width: 100%;
  border-radius: var(--radius-lg);
}

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

.about-text {
  color: var(--text-medium);
  margin-bottom: 20px;
  line-height: 1.8;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.badge {
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-outline {
  background: white;
  color: var(--text-dark);
  border: 2px solid var(--border);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: default;
}

.badge-outline:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  cursor: pointer;
}

/* SERVICES */
.services {
  padding: 100px 0;
  background: white;
  text-align: center;
}

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

.service-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover,
.service-card.active {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before,
.service-card.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius);
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: all 0.3s;
}

.service-card:hover .service-icon,
.service-card.active .service-icon {
  background: var(--primary);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 12px;
  transition: all 0.3s;
}

.service-card:hover h3,
.service-card.active h3 {
  color: var(--primary);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-medium);
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 20px;
  border: 2px solid var(--primary);
  border-radius: 30px;
  transition: all 0.3s;
  margin-top: auto;
}

.service-link:hover {
  background: var(--primary);
  color: white;
}

/* TRUST BANNER */
.trust-banner {
  background: linear-gradient(135deg, var(--primary-900), var(--primary-dark));
  color: white;
  padding: 40px 0;
}

.trust-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.trust-main {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-shield {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.trust-main h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.trust-main p {
  font-size: 0.85rem;
  opacity: 0.8;
}

.trust-items {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.trust-item {
  text-align: center;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.trust-item:hover,
.trust-item.hovered {
  transform: translateY(-5px);
}

.trust-item-icon {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin: 0 auto 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: rgba(255, 255, 255, 0.85);
}

.trust-item:hover .trust-item-icon,
.trust-item.hovered .trust-item-icon {
  background: #ffffff !important;
  color: var(--primary) !important;
  border-radius: 50% !important;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.35);
  transform: scale(1.15);
}

.trust-item span {
  font-size: 0.82rem;
  opacity: 0.75;
  transition: all 0.4s ease;
  font-weight: 500;
}

.trust-item:hover span,
.trust-item.hovered span {
  opacity: 1 !important;
  font-weight: 600;
}

/* WHY US */
.why-us {
  padding: 100px 0;
  background: var(--bg-light);
  text-align: center;
}

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

.why-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: left;
  transition: all 0.3s;
}

.why-card:hover,
.why-card.active {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
  transition: all 0.3s;
}

.why-card:hover .why-card-icon,
.why-card.active .why-card-icon {
  background: var(--primary);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 10px;
  transition: all 0.3s;
}

.why-card:hover h3,
.why-card.active h3 {
  color: var(--primary);
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 100px 0;
  background: white;
  text-align: center;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.step {
  text-align: center;
  flex: 1;
  max-width: 220px;
}

.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
  position: relative;
  transition: all 0.3s;
}

.step-circle .step-num {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 8px;
}

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

.step p {
  font-size: 0.82rem;
  color: var(--text-medium);
  line-height: 1.5;
}

.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 30px;
  color: var(--primary-200);
  font-size: 1.5rem;
}

/* PARTNERS */
.partners {
  padding: 80px 0;
  background: var(--bg-light);
  text-align: center;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 10px;
}

.partner-card {
  background: white;
  border-radius: 16px;
  padding: 28px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  cursor: default;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-200);
}

.partner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.partner-card:hover .partner-dot {
  transform: scale(1.5);
}

.partner-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.partner-card:hover .partner-name {
  transform: scale(1.05);
}

.partner-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-light);
  text-transform: uppercase;
}

/* BLOG */
.blog {
  padding: 100px 0;
  background: white;
  text-align: center;
}

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

.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s;
  text-align: left;
}

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

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
}

.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.85rem;
  color: var(--text-medium);
  margin-bottom: 16px;
  line-height: 1.6;
}

.blog-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

/* TESTIMONIALS */
.testimonials {
  padding: 100px 0;
  background: #f0f4f8;
  text-align: center;
}

.testimonials .section-title {
  margin-bottom: 48px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 560px;
  margin: 0 auto;
  gap: 28px;
  text-align: left;
}

.testimonial-card {
  position: relative;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 36px 28px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  border-color: var(--primary-200);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12);
}

.testimonial-quote {
  position: absolute;
  top: -18px;
  left: 24px;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover .testimonial-quote {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.45);
}

.testimonial-text {
  color: var(--text-medium);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
  flex-shrink: 0;
}

.testimonial-meta strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.testimonial-meta span {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
}

/* JOIN CHANNEL (Contact) */
.channel-join {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  background: #f0f4f8;
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  margin-bottom: 48px;
  border: 1px solid var(--border);
}

.channel-join-text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.channel-join-text p {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
}

.channel-phone {
  display: flex;
  justify-content: center;
}

.channel-phone-screen {
  width: 200px;
  background: white;
  border: 10px solid var(--primary);
  border-radius: 28px;
  padding: 20px 16px 16px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
}

.channel-phone-screen::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 5px;
  background: var(--primary-200);
  border-radius: 4px;
}

.channel-phone-screen::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border: 3px solid var(--primary-200);
  border-radius: 50%;
}

.channel-qr {
  width: 140px;
  height: 140px;
  object-fit: contain;
  display: block;
  margin: 16px auto 12px;
  border-radius: 8px;
}

.channel-scan-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 28px;
}

/* CONTACT */
.contact {
  padding: 100px 0;
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: white;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.contact-info>p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 28px;
  line-height: 1.6;
}

.contact-info .nav-cta {
  background: white;
  color: var(--primary) !important;
  margin-bottom: 24px;
  display: inline-flex;
}

.contact-info .nav-cta:hover {
  background: var(--primary-50);
  color: var(--primary-dark) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.contact-details {
  margin-top: 20px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.contact-form>p {
  color: var(--text-medium);
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

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

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
}

.form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* FOOTER */
.footer {
  background: #0F172A;
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
  color-scheme: dark;
}

/* Fallback when light-dark() is unsupported */
@supports not (color: light-dark(black, white)) {
  .logo-text {
    color: #0f172a;
  }

  .footer .logo-text {
    color: #ffffff;
  }
}

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

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 16px;
  opacity: 0.7;
}

.footer-socials {
  display: flex;
  gap: 28px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.1);
  border-color: var(--primary-light);
  color: white;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.35);
}

.footer h5 {
  font-family: var(--font-heading);
  color: white;
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a {
  font-size: 0.85rem;
  opacity: 0.7;
  transition: all 0.3s;
}

.footer ul a:hover {
  opacity: 1;
  color: var(--primary-light);
}

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

.footer-bottom p {
  font-size: 0.8rem;
  opacity: 0.6;
}

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

.footer-bottom-links a {
  font-size: 0.8rem;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.footer-bottom-links a:hover {
  opacity: 1;
}

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  position: relative;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-light);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.modal-close:hover {
  background: var(--bg-section);
}

.modal-emoji {
  font-size: 3rem;
  margin-bottom: 16px;
}

.modal h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.modal p {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.modal-btn {
  background: var(--primary);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.modal-btn:hover {
  background: var(--primary-dark);
}

/* FLOATING BUTTONS */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: all 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  z-index: 900;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
}

.scroll-top.visible {
  display: flex;
}

.scroll-top:hover {
  background: var(--primary-dark);
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

/* RESPONSIVE */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }

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

  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto 32px;
    max-width: 100%;
  }

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

  .hero-illustration {
    max-width: min(350px, 100%);
  }

  .about,
  .services,
  .why-us,
  .how-it-works,
  .partners,
  .blog,
  .testimonials,
  .contact {
    padding: 70px 0;
  }

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

  .channel-join {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-title {
    text-align: center;
  }

  .about-image {
    order: -1;
  }

  .about-image img {
    max-width: min(400px, 100%);
    margin: 0 auto;
    display: block;
  }

  .about-badges {
    justify-content: center;
  }

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

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .step-arrow {
    display: none;
  }

  .step {
    flex: 1 1 calc(50% - 24px);
    max-width: 280px;
  }

  .trust-banner .container {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .trust-main {
    justify-content: center;
  }

  .trust-items {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
}

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

  .nav-links,
  .navbar .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    padding: 10px 0;
  }

  .logo-text {
    font-size: 1.15rem;
  }

  .logo-icon-img {
    height: 36px;
    width: 36px;
  }

  .hero {
    padding: 100px 0 50px;
  }

  .hero-content h1 {
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .hero-tagline {
    font-size: 1.05rem;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .btn-primary,
  .btn-outline {
    justify-content: center;
    width: 100%;
  }

  .hero-illustration {
    max-width: min(300px, 90vw);
  }

  .section-title {
    font-size: clamp(1.5rem, 5.5vw, 1.85rem);
    line-height: 1.25;
  }

  .section-desc {
    font-size: 0.92rem;
    padding: 0 4px;
  }

  .about,
  .services,
  .why-us,
  .how-it-works,
  .partners,
  .blog,
  .testimonials,
  .contact {
    padding: 56px 0;
  }

  .testimonials .section-title {
    margin-bottom: 36px;
  }

  .testimonial-card {
    padding: 32px 20px 24px;
  }

  .channel-join {
    margin-bottom: 36px;
    padding: 28px 20px;
    gap: 28px;
  }

  .channel-phone-screen {
    width: 180px;
  }

  .channel-qr {
    width: 120px;
    height: 120px;
  }

  .contact-header {
    margin-bottom: 36px;
  }

  .services-grid,
  .why-grid,
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .partner-card {
    padding: 20px 12px 16px;
  }

  .partner-name {
    font-size: 0.85rem;
    text-align: center;
  }

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

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-socials {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

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

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
  }

  .trust-banner {
    padding: 32px 0;
  }

  .trust-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
  }

  .trust-item {
    padding: 8px;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .step {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .step-circle {
    width: 72px;
    height: 72px;
  }

  .contact-info,
  .contact-form {
    padding: 28px 20px;
  }

  .contact-info .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .contact-detail {
    word-break: break-word;
  }

  .badge {
    font-size: 0.8rem;
    padding: 8px 14px;
  }

  .about-badges {
    gap: 10px;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .scroll-top {
    bottom: 78px;
    right: 20px;
  }

  .modal {
    padding: 36px 24px;
    margin: 16px;
  }
}

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

  .logo-text {
    font-size: 1rem;
  }

  .logo-icon-img {
    height: 32px;
    width: 32px;
  }

  .hero-content h1 {
    font-size: 1.85rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-desc {
    font-size: 0.88rem;
  }

  .section-badge {
    font-size: 0.7rem;
    padding: 5px 14px;
  }

  .service-card,
  .why-card {
    padding: 28px 20px;
  }

  .partners-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .trust-items {
    grid-template-columns: 1fr 1fr;
  }

  .trust-main h3 {
    font-size: 1rem;
  }

  .about-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .badge {
    justify-content: center;
    width: 100%;
  }

  .mobile-menu {
    padding: 72px 20px 24px;
  }

  .mobile-menu a {
    font-size: 1rem;
    padding: 14px 0;
  }

  .footer-bottom-links {
    flex-direction: column;
    align-items: center;
  }
}