/* ============================================
   Clean Bees - Main Stylesheet
   Matching HomyClean Dribbble design exactly
   Brand yellow: #ffc703
   ============================================ */

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

:root {
  --yellow: #ffc703;
  --yellow-hover: #e6b200;
  --yellow-light: #fff8e0;
  --black: #110E0D;
  --grey-dark: #5C5353;
  --grey-medium: #A4A3A3;
  --grey-light: #F4F4F6;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-pill: 100px;
  --shadow-card: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 4px 16px rgba(0, 0, 0, 0.1);
  --max-width: 1200px;
  --section-pad: 100px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

p {
  color: var(--grey-dark);
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--yellow-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 199, 3, 0.4);
}

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

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover {
  background: var(--grey-light);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

/* --- Section Label Pills --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--black);
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.section-label svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

.section-intro {
  max-width: 640px;
  color: var(--grey-dark);
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.7;
}

/* --- Placeholder images --- */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e4df, #d4cfc8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-medium);
  font-size: 0.8rem;
  text-align: center;
  padding: 16px;
}

/* ============================================
   HEADER / NAVIGATION — Dark floating pill
   ============================================ */
.header {
  position: fixed;
  top: 16px;
  left: 24px;
  right: 24px;
  z-index: 1000;
}

.header-inner {
  background: var(--black);
  border-radius: var(--radius-pill);
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 calc((100% - var(--max-width)) / 2 + 36px);
}

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

.logo img {
  height: 54px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

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

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > a svg {
  width: 10px;
  height: 10px;
  transition: transform 0.2s;
}

.nav-dropdown:hover > a svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: -16px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: var(--grey-dark);
}

.dropdown-menu a:hover {
  background: var(--grey-light);
  color: var(--black);
}

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 0.8125rem;
  color: var(--black);
}

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

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO — Full-width image with overlay text
   ============================================ */
.hero {
  padding: 112px 24px 0;
}

.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-pill);
  aspect-ratio: 16/7;
  min-height: 480px;
}

.hero-banner .img-placeholder,
.hero-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner .img-placeholder {
  background: linear-gradient(135deg, #3a3530, #5c5550, #3a3530);
}

/* Dark gradient overlay at bottom */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.55) 35%,
      rgba(0, 0, 0, 0.2) 65%,
      transparent 100%
    ),
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.2) 40%,
      transparent 70%
    );
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: var(--max-width);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  max-width: 560px;
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.1;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 440px;
}

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

.hero-review {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  flex-shrink: 0;
  max-width: 280px;
}

.hero-review-star {
  width: 40px;
  height: 40px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-review-star svg {
  width: 18px;
  height: 18px;
  fill: var(--black);
}

.hero-review-text {
  font-size: 0.8125rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

.hero-review-text strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}

/* ============================================
   ABOUT — Card-style two-column
   ============================================ */
.about {
  padding: var(--section-pad) 0;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content h2 {
  margin-bottom: 16px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.2;
}

.about-content > p {
  margin-bottom: 28px;
  font-size: 0.9375rem;
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--black);
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--black);
  fill: none;
  stroke-width: 3;
}

.about-image {
  min-height: 500px;
}

.about-image .img-placeholder,
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   STATS — Three cards row
   ============================================ */
.stats {
  padding: 0 0 var(--section-pad);
}

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

.stat-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  margin-bottom: 16px;
}

.stat-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.875rem;
  color: var(--grey-medium);
  line-height: 1.6;
}

/* ============================================
   SERVICES — Header + tall image cards
   ============================================ */
.services {
  padding: var(--section-pad) 0 0;
  background: var(--grey-light);
}

.services-header {
  padding-bottom: 48px;
}

.services-header .section-intro {
  max-width: 700px;
}

.services-cards {
  padding: 0 0 var(--section-pad);
}

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

.service-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card .img-placeholder,
.service-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .img-placeholder,
.service-card:hover > img {
  transform: scale(1.05);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  );
}

.service-card-body {
  position: relative;
  z-index: 1;
  padding: 28px;
}

.service-card h3 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.service-card .btn {
  padding: 10px 24px;
  font-size: 0.8125rem;
}

/* View all services link */
.services-view-all {
  padding: 40px 0 var(--section-pad);
  text-align: center;
  background: var(--grey-light);
}

.services-view-all a {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.services-view-all a:hover {
  gap: 12px;
}

.services-view-all svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
  padding: var(--section-pad) 0;
}

.why-us-header {
  text-align: center;
  margin-bottom: 56px;
}

.why-us-header .section-intro {
  margin-left: auto;
  margin-right: auto;
}

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

.why-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all 0.3s ease;
}

.why-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.why-card-icon {
  width: 48px;
  height: 48px;
  background: var(--yellow-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--yellow-hover);
}

.why-card h3 {
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
}

/* ============================================
   CLIENT PORTAL
   ============================================ */
.portal {
  padding: var(--section-pad) 0;
  background: var(--grey-light);
}

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

.portal-content .section-label {
  margin-bottom: 20px;
}

.portal-content h2 {
  margin-bottom: 20px;
}

.portal-content > p {
  margin-bottom: 28px;
}

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

.portal-feature {
  display: flex;
  gap: 16px;
}

.portal-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--yellow-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.portal-feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--yellow-hover);
}

.portal-feature h4 {
  margin-bottom: 4px;
}

.portal-feature p {
  font-size: 0.9rem;
}

.portal-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.portal-image .img-placeholder {
  aspect-ratio: 4/3;
}

/* ============================================
   HOW WE WORK
   ============================================ */
.how-it-works {
  padding: var(--section-pad) 0;
}

.how-header {
  text-align: center;
  margin-bottom: 56px;
}

.how-header .section-intro {
  margin-left: auto;
  margin-right: auto;
}

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

.how-step {
  text-align: center;
  position: relative;
}

.how-step-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--yellow);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}

.how-step h3 {
  margin-bottom: 10px;
}

.how-step p {
  font-size: 0.9rem;
}

.how-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: var(--yellow);
  opacity: 0.3;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--grey-light);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars svg {
  width: 18px;
  height: 18px;
  fill: var(--yellow);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-card .quote-icon {
  width: 32px;
  height: 32px;
  color: var(--yellow);
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--grey-dark);
  flex: 1;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-light);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--yellow-hover);
  flex-shrink: 0;
}

.testimonial-author-info strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-author-info .stars {
  margin-top: 4px;
}

.testimonial-author-info .stars svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   TEAM / ABOUT
   ============================================ */
.team {
  padding: var(--section-pad) 0;
}

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

.team-content .section-label {
  margin-bottom: 20px;
}

.team-content h2 {
  margin-bottom: 20px;
}

.team-content p {
  margin-bottom: 16px;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.team-stat {
  text-align: center;
}

.team-stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}

.team-stat-label {
  font-size: 0.8rem;
  color: var(--grey-dark);
  margin-top: 4px;
}

.team-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.team-images .img-placeholder {
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
}

.team-images .img-placeholder:first-child {
  margin-top: 40px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: var(--section-pad) 0;
  background: var(--grey-light);
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-header .section-intro {
  margin-left: auto;
  margin-right: auto;
}

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

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  text-align: left;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--grey-medium);
}

.faq-item.active .faq-question svg {
  transform: rotate(45deg);
  color: var(--yellow-hover);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   BOTTOM CTA — Image background
   ============================================ */
.cta-bottom {
  padding: 0 24px;
  margin-bottom: var(--section-pad);
}

.cta-banner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-banner .img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3a3530, #5c5550);
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  padding: 48px 24px;
  max-width: 580px;
}

.cta-banner-content h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.cta-trust {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand p {
  color: var(--grey-medium);
  font-size: 0.875rem;
  margin-top: 16px;
  max-width: 280px;
}

.footer-brand .logo img {
  filter: brightness(0) invert(1);
}

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

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--grey-medium);
  transition: color 0.2s;
}

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

.footer-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.875rem;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.footer-col a {
  font-size: 0.875rem;
  color: var(--grey-medium);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--yellow);
}

/* Large watermark text */
.footer-watermark {
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  text-align: center;
  line-height: 1;
  padding: 20px 0;
  white-space: nowrap;
  overflow: hidden;
  user-select: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}

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

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--grey-medium);
}

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

.footer-legal a {
  font-size: 0.8125rem;
  color: var(--grey-medium);
}

.footer-legal a:hover {
  color: var(--yellow);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --section-pad: 72px;
  }

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

  .how-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }

  .how-step:not(:last-child)::after {
    display: none;
  }

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

@media (max-width: 768px) {
  :root {
    --section-pad: 60px;
  }

  .header {
    top: 8px;
    width: calc(100% - 24px);
  }

  .header-inner {
    padding: 0 6px 0 20px;
    height: 52px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 12px;
    right: 12px;
    background: var(--white);
    border-radius: var(--radius-lg);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

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

  .nav-links a {
    padding: 12px 0;
    font-size: 1rem;
    color: var(--black);
    border-bottom: 1px solid var(--grey-light);
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 16px;
    display: none;
    min-width: 0;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .nav-cta {
    margin-top: 12px;
    width: 100%;
  }

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

  .mobile-toggle {
    display: flex;
  }

  .hero {
    padding-top: 76px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-banner {
    aspect-ratio: auto;
    min-height: 420px;
  }

  .hero-content {
    flex-direction: column;
    padding: 24px;
    align-items: flex-start;
  }

  .hero-review {
    max-width: 100%;
  }

  .about .container {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 300px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-cards .container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    aspect-ratio: 4/3;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .portal .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .team .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-images {
    order: -1;
  }

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

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

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

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
