/* ═══════════════════════════════════════════════════════════
   WHODINI — Global Styles
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --gradient: linear-gradient(135deg, #f62c7d 0%, #b216d5 100%);
  --magenta: #f62c7d;
  --purple: #b216d5;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.12);
  --text-dark: #1a001d;
  --text-body: #3d1a42;
  --text-light: #ffffff;
  --bg-light: #faf7fb;
  --bg-white: #ffffff;
  --section-pad: 100px 0;
  --container: 1200px;
  --radius: 16px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
  line-height: 1.7;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

/* ---------- Utility ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s var(--transition),
    transform 0.7s var(--transition);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(246, 44, 125, 0.35);
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(246, 44, 125, 0.55);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(178, 22, 213, 0.3);
}

.btn-dark {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(246, 44, 125, 0.3);
}
.btn-dark:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(246, 44, 125, 0.5);
}

/* ---------- Section Headings ---------- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .tag {
  display: inline-block;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
}
.section-header p {
  max-width: 600px;
  margin: 16px auto 0;
  color: var(--text-body);
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    padding var(--transition);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(26, 0, 29, 0.08);
  padding: 12px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo h2 {
  color: #fff;
  font-size: 1.25rem;
  margin: 0;
  transition: color var(--transition);
}
.navbar.scrolled .nav-logo h2 {
  color: var(--text-dark);
}
.nav-logo-img {
  height: 44px;
  width: auto;
  transition: filter var(--transition);
}
.navbar.scrolled .nav-logo-img {
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width var(--transition);
}
.nav-links a:hover::after {
  width: 100%;
}
.navbar.scrolled .nav-links a {
  color: var(--text-body);
}
.nav-links .btn {
  padding: 10px 28px;
  font-size: 0.85rem;
}
.navbar.scrolled .nav-links .btn {
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span {
  background: var(--text-dark);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  object-fit: cover;
  inset: 0;
  background: url("/images/hero-image-bg.webp") center/cover no-repeat;
}

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

.hero-content {
  /* background: rgba(255, 255, 255, 0.2); */
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  padding: 40px;
}

.hero-content h1 {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.hero-content h1 span {
  display: block;
  background: linear-gradient(90deg, #ffd6e7, #e8b4f8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  border-radius: var(--radius);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}
.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 20px 28px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-float-card .icon {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.hero-float-card .stat-number {
  font-size: 1.6rem;
  font-weight: 700;
}
.hero-float-card .stat-label {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* ═══════════════════════════════════════════════════════════
   TRUSTED BY
   ═══════════════════════════════════════════════════════════ */
.trusted {
  padding: 60px 0;
  background: var(--bg-white);
  border-bottom: 1px solid rgba(26, 0, 29, 0.06);
  overflow: hidden;
}
.trusted p {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 30px;
}

/* Infinite carousel */
.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll-carousel 30s linear infinite;
}
.carousel-slide {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 0 25px;
}
.carousel-slide .logo-item {
  font-size: 1.3rem;
  font-weight: 700;
  color: #c0c0c0;
  white-space: nowrap;
  transition: color var(--transition);
}
.carousel-slide .logo-item:hover {
  color: var(--text-body);
}

@keyframes scroll-carousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════════════════════════
   FEATURES / SERVICES — Vertical Carousel
   ═══════════════════════════════════════════════════════════ */
.features {
  padding: var(--section-pad);
  background: var(--bg-light);
  overflow: hidden;
}
.features-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  height: 620px;
  overflow: hidden;
}
.features-col {
  overflow: hidden;
  position: relative;
}
.features-col::before,
.features-col::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 2;
  pointer-events: none;
}
.features-col::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg-light), transparent);
}
.features-col::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg-light), transparent);
}
.features-col-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features-col[data-direction="down"] .features-col-inner {
  animation: scroll-col-down 25s linear infinite;
}
.features-col[data-direction="up"] .features-col-inner {
  animation: scroll-col-up 25s linear infinite;
}

@keyframes scroll-col-down {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes scroll-col-up {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

.features-col:hover .features-col-inner {
  animation-play-state: paused;
}

.feature-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(26, 0, 29, 0.06);
  transition: box-shadow var(--transition);
}
.feature-card:hover {
  box-shadow: 0 12px 36px rgba(178, 22, 213, 0.1);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.about {
  padding: var(--section-pad);
  background: var(--bg-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-image img {
  height: 420px;
  width: 100%;
  border-radius: var(--radius);
}
.about-image::after {
  content: "";
  position: absolute;
  inset: 0;

  mix-blend-mode: multiply;
  border-radius: var(--radius);
}
.about-content .tag {
  display: inline-block;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.about-content h2 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-content p {
  color: var(--text-body);
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}
.stat {
  text-align: center;
}
.stat .number {
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat .label {
  font-size: 0.85rem;
  color: var(--text-body);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════
   ACCOUNTS
   ═══════════════════════════════════════════════════════════ */
.accounts {
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}
.accounts-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #e8446c 0%,
    #c93a8e 30%,
    #a12dab 60%,
    #8a25b8 100%
  );
  z-index: 0;
}
.accounts .container {
  position: relative;
  z-index: 1;
}
.accounts .section-header h2 {
  color: #fff;
  font-size: 2.4rem;
}
.accounts .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

/* Floating bubble decorations */
.accounts-bg::before,
.accounts-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}
.accounts-bg::before {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 5%;
}
.accounts-bg::after {
  width: 120px;
  height: 120px;
  bottom: 15%;
  right: 8%;
}

.accounts-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: end;
}

/* Phone-shaped glass card */
.account-card {
  position: relative;
  transition: transform var(--transition);
}
.account-card:hover {
  transform: translateY(-12px) scale(1.04);
}

.account-card-inner {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  padding: 36px 24px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-height: 360px;
}
.account-card.featured .account-card-inner {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
}

.account-icon {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.account-card h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}
.account-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.5;
  flex: 1;
}

.account-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 4px;
}
.account-badge.free {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.account-badge.paid {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--magenta);
  color: #fff;
  border: none;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}
.btn-accent:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(246, 44, 125, 0.45);
  background: #ff3d8a;
}

/* ═══════════════════════════════════════════════════════════
   NEWS
   ═══════════════════════════════════════════════════════════ */
.news {
  padding: var(--section-pad);
  background: var(--bg-white);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.news-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-white);
  border: 1px solid rgba(26, 0, 29, 0.06);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(178, 22, 213, 0.1);
}
.news-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.news-card:hover .news-card-img img {
  transform: scale(1.05);
}
.news-card-img .category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.news-card-body {
  padding: 28px;
}
.news-card-body .date {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 10px;
}
.news-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
.news-card-body p {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.7;
}
.news-card-body .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.testimonials {
  padding: var(--section-pad);
  background: var(--text-dark);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(246, 44, 125, 0.15),
    transparent 70%
  );
  top: -200px;
  right: -200px;
  border-radius: 50%;
}
.testimonials .section-header h2 {
  color: #fff;
}
.testimonials .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 36px;
}
.testimonial-card .stars {
  color: #f6c12d;
  font-size: 1rem;
  margin-bottom: 16px;
}
.testimonial-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(246, 44, 125, 0.4);
}
.testimonial-author .name {
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
}
.testimonial-author .role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact {
  padding: var(--section-pad);
  position: relative;
  background: linear-gradient(160deg, #1a001d 0%, #2d0836 50%, #1a001d 100%);
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(178, 22, 213, 0.2), transparent 70%);
  bottom: -200px;
  left: -100px;
  border-radius: 50%;
}
.contact::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(246, 44, 125, 0.15),
    transparent 70%
  );
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

.contact .section-header h2 {
  color: #fff;
}
.contact .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 20px;
}
.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-info-item .icon-circle {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.contact-info-item h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-info-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  transition:
    border-color var(--transition),
    background var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--magenta);
  background: rgba(255, 255, 255, 0.08);
}
.form-group textarea {
  height: 120px;
  resize: vertical;
}
.form-group select option {
  background: var(--text-dark);
  color: #fff;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: #0f000f;
  padding: 70px 0 30px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand .footer-logo {
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 50px;
  width: auto;
  filter: brightness(1.5);
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition:
    background var(--transition),
    color var(--transition);
}
.footer-social a:hover {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
}
.footer-col h4 {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col a:hover {
  color: var(--magenta);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a:hover {
  color: var(--magenta);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content p {
    margin: 0 auto 36px;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-image {
    display: none;
  }
  .hero-content h1 {
    font-size: 3rem;
  }

  .features-columns {
    grid-template-columns: repeat(3, 1fr);
    height: 500px;
  }
  .accounts-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--text-dark);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: right var(--transition);
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
  }
  .hamburger {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }
  .section-header h2 {
    font-size: 2rem;
  }

  .features-columns {
    grid-template-columns: 1fr 1fr;
    height: 450px;
  }
  .features-col:nth-child(3) {
    display: none;
  }
  .accounts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .account-card-inner {
    padding: 24px 16px 20px;
    min-height: 260px;
    border-radius: 20px;
    gap: 8px;
  }
  .account-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }
  .account-icon svg {
    width: 44px;
    height: 44px;
  }
  .account-card h3 {
    font-size: 1rem;
  }
  .account-card p {
    font-size: 0.78rem;
  }
  .btn-accent {
    padding: 8px 16px;
    font-size: 0.78rem;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .about-stats {
    flex-wrap: wrap;
    justify-content: center;
  }
  .about-image {
    max-height: 280px;
  }
  .about-image img {
    max-height: 280px;
    object-fit: cover;
  }
  .about-content h2 {
    font-size: 1.6rem;
  }
  .about-content p {
    font-size: 0.9rem;
    line-height: 1.65;
  }
  .stat .number {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .features-columns {
    grid-template-columns: 1fr;
    height: 400px;
  }
  .features-col:nth-child(2),
  .features-col:nth-child(3) {
    display: none;
  }
  .accounts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .account-card-inner {
    padding: 20px 12px 16px;
    min-height: 220px;
    border-radius: 18px;
  }
  .account-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
  .account-icon svg {
    width: 36px;
    height: 36px;
  }
  .account-card h3 {
    font-size: 0.9rem;
  }
  .account-card p {
    font-size: 0.72rem;
    line-height: 1.4;
  }
  .account-badge {
    font-size: 0.65rem;
    padding: 3px 12px;
  }
  .btn-accent {
    padding: 7px 14px;
    font-size: 0.72rem;
  }
}
