/* Design Tokens & Variables */
:root {
  --clr-primary: #336E9B;
  --clr-primary-dark: #2A5A80;
  --clr-secondary: #679B4A;
  --clr-dark: #1F3647;
  --clr-charcoal: #111D25;
  --clr-accent: #E5F0F9;
  --clr-light: #F8FAFC;
  --clr-white: #FFFFFF;
  --clr-text-muted: #64748B;

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-btn: 2px;
  --radius-card: 4px;
  --radius-img: 4px;

  --shadow-sm: 0 4px 6px -1px rgba(17, 29, 37, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(17, 29, 37, 0.08);
  --shadow-lg: 0 20px 25px -5px rgba(17, 29, 37, 0.1);
  --shadow-hover: 0 25px 35px -5px rgba(51, 110, 155, 0.15);

  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --section-padding: 140px 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--clr-charcoal);
  background-color: var(--clr-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  color: var(--clr-charcoal);
}

h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

p {
  font-size: 1.125rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.split-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 2rem;
}

.full-width {
  width: 100%;
  text-align: center;
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--clr-primary);
  color: var(--clr-white);
}

.btn-primary:hover {
  background-color: var(--clr-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--clr-charcoal);
  border-color: var(--clr-charcoal);
}

.btn-outline:hover {
  background-color: var(--clr-secondary);
  border-color: var(--clr-secondary);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.link-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--clr-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.link-btn:hover {
  color: var(--clr-secondary);
  gap: 0.75rem;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--clr-accent);
  color: var(--clr-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--radius-btn);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.75rem 0;
  background-color: var(--clr-white);
  z-index: 1000;
  border-bottom: 1px solid #f1f5f9;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.75rem 0;
  background-color: var(--clr-white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--clr-charcoal);
  line-height: 1;
  letter-spacing: -0.02em;
}

.logo-title span {
  color: var(--clr-primary);
}

.logo-subtitle {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: #718096;
  margin-top: 4px;
}

.nav-links ul {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  color: #4a5568;
  /* dark gray like in screenshot */
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-primary);
}

.btn-rounded {
  border-radius: 6px;
  padding: 0.75rem 1.75rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-login {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--clr-charcoal);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav-login:hover {
  color: var(--clr-primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--clr-charcoal);
}

.mobile-only {
  display: none;
}

/* Hero Section */
.bg-image-full {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero {
  margin: 0;
  width: 100%;
  aspect-ratio: 1440 / 585;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.slider-container {
  position: relative;
}

.slider-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--clr-white);
  color: var(--clr-charcoal);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0.8;
}

.slider-btn:hover {
  background-color: var(--clr-primary);
  color: var(--clr-white);
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 24px;
}

.next-btn {
  right: 24px;
}

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(17, 29, 21, 0.2);
}

.dot.active {
  background-color: var(--clr-primary);
  transform: scale(1.3);
  border-color: transparent;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-subtitle {
  display: block;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--clr-charcoal);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--clr-charcoal);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: #64748b;
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 1rem;
}

.btn-thin {
  padding: 0.6rem 1.5rem;
  font-size: 0.95rem;
}

.outline-dark {
  border: 1px solid rgba(17, 29, 21, 0.4);
  background-color: transparent;
  color: var(--clr-charcoal);
}

.outline-dark:hover {
  background-color: var(--clr-charcoal);
  color: var(--clr-white);
  border-color: var(--clr-charcoal);
}

.image-frame {
  position: relative;
  border-radius: var(--radius-img);
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  /* Prevent edge bleeding */
  transition: transform 0.8s ease;
}

.image-frame:hover img {
  transform: scale(1.05);
}

/* Organic Shapes */
.organic-shape {
  position: absolute;
  z-index: -1;
  opacity: 0.1;
}

.hero-shape {
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background-color: var(--clr-primary);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(80px);
}

.about-shape {
  bottom: 0;
  left: -10%;
  width: 500px;
  height: 500px;
  background-color: var(--clr-dark);
  border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
  filter: blur(100px);
}

/* Services */
.section-bg-accent {
  background-color: #f3f8f5;
}

.services {
  padding-top: 100px;
  padding-bottom: 140px;
}

.services-top-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 4rem;
  margin-bottom: 2rem;
}

.services-heading {
  flex: 1;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--clr-charcoal);
  line-height: 1.2;
}

.services-intro {
  flex: 1;
}

.services-subheading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-charcoal);
  margin-bottom: 0.5rem;
}

.services-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

.services-divider {
  border: 0;
  height: 1px;
  background-color: rgba(17, 29, 21, 0.1);
  margin-bottom: 3rem;
}

.services-cards-wrapper {
  position: relative;
}

.services-slider-nav {
  position: absolute;
  top: 120px; /* will be dynamically updated by JS to center exactly on image */
  left: -20px;
  right: -20px;
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
}

.service-prev,
.service-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-white);
  border: 1px solid #e2e8f0;
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-prev:hover,
.service-next:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary);
  transform: scale(1.05);
}

.services-slider-viewport {
  overflow: hidden;
  padding: 10px;
  margin: -10px;
}

.new-grid {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 2rem;
}

.service-card-new {
  flex: 0 0 calc(33.333% - 1.33rem);
  display: flex;
  flex-direction: column;
}

@media (max-width: 991px) {
  .service-card-new {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .service-card-new {
    flex: 0 0 100%;
  }
  .services-slider-nav {
    left: 10px;
    right: 10px;
  }
  
  /* Make pricing grid horizontally scrollable on mobile */
  .pricing-grid-new {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding-bottom: 2rem;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  .pricing-grid-new::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  .price-card-new {
    flex: 0 0 85%;
    scroll-snap-align: center;
    min-width: 280px;
  }
}

.mobile-only {
  display: none;
}

.service-card-new {
  display: flex;
  flex-direction: column;
}

.service-img-wrapper {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 4 / 3;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card-new:hover .service-img-wrapper img {
  transform: scale(1.05);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-charcoal);
  margin-bottom: 0.75rem;
}

.service-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  border-width: 1px;
}

.btn-outline.service-btn {
  border-color: #cbd5e1;
  color: var(--clr-charcoal);
}

.btn-outline.service-btn:hover {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
  color: var(--clr-charcoal);
}

.service-btn svg {
  transition: transform 0.3s;
}

.service-btn:hover svg {
  transform: translateX(3px) translateY(-3px);
}

.services-slider-btn {
  position: absolute;
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--clr-primary);
  color: var(--clr-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(51, 110, 155, 0.3);
  z-index: 10;
  transition: transform 0.3s, background-color 0.3s;
}

.services-slider-btn:hover {
  background-color: var(--clr-secondary);
  transform: translateY(-50%) scale(1.1);
}

/* About */
.about {
  padding: var(--section-padding);
  position: relative;
  background-color: var(--clr-white);
}

.new-about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.about-subtitle {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--clr-charcoal);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.about-desc {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 480px;
}

/* Image group overlapping */
.about-images-group {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 2rem;
  padding-right: 2rem;
}

.img-large {
  width: 80%;
  position: relative;
  z-index: 1;
}

.img-large::after {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 6px solid var(--clr-primary);
  border-radius: 24px;
  z-index: -1;
}

.img-large img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.img-small {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 55%;
  z-index: 2;
  border: 8px solid var(--clr-white);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--clr-white);
}

.img-small img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

/* Team */
.team {
  padding: var(--section-padding);
}

.team-top-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 2rem;
}

.team-heading {
  flex: 1;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--clr-charcoal);
  line-height: 1.2;
}

.team-intro {
  flex: 1;
}

.team-subheading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-charcoal);
  margin-bottom: 0.5rem;
}

.team-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

.new-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card-new {
  display: flex;
  flex-direction: column;
  background-color: var(--clr-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid transparent;
  padding-bottom: 1.5rem;
}

.featured-team-card {
  border-color: var(--clr-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-img-new {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: #d1e7dd;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.team-img-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.team-info-new {
  padding: 0 1.5rem;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-charcoal);
  margin-bottom: 0.5rem;
}

.team-rating {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.team-text {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.team-socials {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.team-socials a {
  color: var(--clr-charcoal);
  transition: color 0.3s;
  display: inline-flex;
}

.team-socials a:hover {
  color: var(--clr-primary);
}

/* Welcome Section */
.welcome {
  padding: var(--section-padding);
}

.welcome-images-group {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 2rem;
  padding-left: 2rem;
}

.img-large-welcome {
  width: 80%;
  position: relative;
  z-index: 1;
}

.img-large-welcome::after {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 6px solid var(--clr-primary);
  border-radius: 24px;
  z-index: -1;
}

.img-large-welcome img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.img-small-welcome {
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 55%;
  z-index: 2;
  border: 8px solid var(--clr-white);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--clr-white);
}

.img-small-welcome img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.welcome-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--clr-charcoal);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.welcome-desc {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.welcome-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.welcome-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #f8f9fa;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-charcoal);
}

.welcome-btns {
  display: flex;
  gap: 1rem;
}

/* Pricing */
.new-pricing-section {
  position: relative;
  padding: 6rem 0 8rem;
  z-index: 1;
}

.new-pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 65%;
  background-color: var(--clr-primary);
  z-index: -1;
}

.pricing-top {
  margin-bottom: 3rem;
}

.pricing-subtitle {
  color: var(--clr-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.pricing-title {
  color: var(--clr-white);
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.pricing-toggle-new {
  display: inline-flex;
  background-color: var(--clr-white);
  border-radius: 40px;
  padding: 0.35rem;
  margin-bottom: 3rem;
}

.pricing-toggle-new span {
  padding: 0.6rem 2rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-charcoal);
  cursor: pointer;
  transition: all 0.3s;
}

.pricing-toggle-new span.active {
  background-color: var(--clr-primary);
  color: var(--clr-white);
}

.pricing-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}

.price-card-new {
  background: var(--clr-white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.featured-price-card {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.plan-header-new {
  text-align: center;
  margin-bottom: 1.5rem;
}

.plan-header-new h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--clr-charcoal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.price-box {
  background-color: var(--clr-primary);
  color: var(--clr-white);
  border-radius: 8px;
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

.price-box .currency {
  font-size: 1.2rem;
  font-weight: 600;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.price-box .amount {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.price-box .period {
  font-size: 0.85rem;
  font-weight: 500;
  align-self: flex-end;
  margin-bottom: 0.4rem;
}

.plan-features-new {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  flex: 1;
}

.plan-features-new li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
}

.plan-features-new li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 5px;
  height: 5px;
  background-color: var(--clr-secondary);
  border-radius: 50%;
}

.plan-btn-wrapper {
  text-align: center;
}

.outline-gray {
  border: 1px solid #cbd5e1;
  color: var(--clr-charcoal);
  background-color: transparent;
}

.outline-gray:hover {
  background-color: #f1f5f9;
}

/* Testimonials */
.testimonials {
  padding: var(--section-padding);
  background-color: var(--clr-white);
  overflow: hidden;
}

.testimonials .split-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
  align-items: center;
}

.testimonials .content-col,
.testimonials .image-col {
  min-width: 0;
}

.testimonials-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--clr-charcoal);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.testimonials-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #64748b;
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 90%;
}

.testimonials-nav {
  display: flex;
  gap: 1rem;
}

.nav-prev,
.nav-next {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: none;
}

.nav-prev {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-primary);
  color: var(--clr-primary);
}

.nav-prev:hover {
  background-color: #f0fdf4;
}

.nav-next {
  background-color: var(--clr-primary);
  border: 1px solid var(--clr-primary);
  color: var(--clr-white);
}

.nav-next:hover {
  background-color: var(--clr-primary-dark);
}

/* Right Side Card */
.testimonial-card-wrapper {
  position: relative;
  width: 100%;
  padding-right: 1.5rem;
  padding-bottom: 1.5rem;
}

.testimonial-card-wrapper::after {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: 0;
  bottom: 0;
  border: 4px solid var(--clr-primary);
  border-radius: 20px;
  z-index: 1;
}

.testimonial-slider-viewport {
  overflow: hidden;
  padding: 20px;
  margin: -20px;
  z-index: 2;
  position: relative;
}

.testimonial-track {
  display: flex;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 100%;
  width: 100%;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-sizing: border-box;
  background-color: var(--clr-white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.testimonial-img {
  width: 180px;
  flex-shrink: 0;
}

.testimonial-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  aspect-ratio: 3 / 4;
}

.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.testimonial-header h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-charcoal);
  margin-bottom: 0.2rem;
}

.testimonial-header span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #94a3b8;
}

.quote-icon {
  background-color: var(--clr-primary);
  width: 54px;
  height: 54px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

/* Blog Section */
.blog-section {
  padding: var(--section-padding);
  background-color: var(--clr-white);
}

.blog-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--clr-charcoal);
  line-height: 1.15;
  margin: 0;
}

.blog-subtitle {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-charcoal);
  margin-bottom: 0.5rem;
}

.blog-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background-color: var(--clr-white);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}

.blog-card.featured {
  border: 1px solid var(--clr-primary);
}

.blog-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  position: relative;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.blog-card.featured .green-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(103, 155, 74, 0.4);
  border-radius: 20px;
  z-index: 1;
}

.blog-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.blog-meta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-charcoal);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.blog-card-excerpt {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.blog-divider {
  height: 1px;
  background-color: #e2e8f0;
  margin: 0 auto 1.5rem;
  width: 100%;
}

.blog-link {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  border-bottom: 1px solid #cbd5e1;
  padding-bottom: 2px;
  display: inline-block;
  align-self: center;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: var(--clr-primary);
  border-bottom-color: var(--clr-primary);
}

/* Contact Section */
.contact-section {
  padding: var(--section-padding);
  background-color: var(--clr-white);
}

.contact-title-main {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--clr-charcoal);
  margin-bottom: 2.5rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  background-color: #f8fafc;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-icon {
  background-color: var(--clr-secondary);
  color: var(--clr-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-charcoal);
  margin-bottom: 0.3rem;
}

.contact-text p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
}

.contact-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 0.5rem;
  display: block;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--clr-charcoal);
  margin-bottom: 1rem;
}

.contact-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 90%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.24);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--clr-charcoal);
  background-color: var(--clr-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #cbd5e1;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 4px 15px rgba(51, 110, 155, 0.05);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* Auth Modal */
.auth-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.auth-modal {
  background-color: var(--clr-white);
  width: 100%;
  max-width: 440px;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-modal-overlay.active .auth-modal {
  transform: translateY(0) scale(1);
}

.auth-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f8fafc;
}

.auth-close:hover {
  color: var(--clr-charcoal);
  background-color: #f1f5f9;
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--clr-charcoal);
  margin-bottom: 0.5rem;
}

.auth-header p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #64748b;
}

.auth-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  background-color: #f8fafc;
  padding: 0.4rem;
  border-radius: 12px;
}

.auth-tab {
  flex: 1;
  padding: 0.75rem;
  border: none;
  background: transparent;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: #64748b;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s;
}

.auth-tab.active {
  background-color: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: 0 4px 12px var(--shadow-primary-soft);
}

.auth-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  cursor: pointer;
}

.forgot-pass {
  color: var(--clr-primary);
  text-decoration: none;
  font-weight: 500;
}

.forgot-pass:hover {
  text-decoration: underline;
}

.auth-form .form-group {
  margin-bottom: 1rem;
}

.auth-form .btn {
  margin-top: 1rem;
}

/* =========================================
   Premium Footer
========================================= */
.footer {
  background: linear-gradient(to bottom, #1e293b, #0f172a);
  color: var(--clr-white);
  padding: 6rem 0 2rem;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--clr-primary);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 0%, rgba(51, 110, 155, 0.15) 0%, transparent 40%);
  pointer-events: none;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.footer-logo {
  color: var(--clr-white);
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: translateY(-3px);
}

.brand-col p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--clr-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(51, 110, 155, 0.4);
}

.footer h4 {
  color: var(--clr-white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 2rem;
  height: 2px;
  background: var(--clr-primary);
  border-radius: 2px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 1rem;
}

.footer ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer ul a::before {
  content: '→';
  margin-right: 0.5rem;
  opacity: 0;
  transform: translateX(-10px);
  color: var(--clr-primary);
  transition: all 0.3s ease;
}

.footer ul a:hover {
  color: var(--clr-white);
  transform: translateX(5px);
}

.footer ul a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.newsletter p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  position: relative;
}

.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--clr-white);
  border-radius: 12px;
  font-family: var(--font-body);
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .btn {
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  background: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--clr-white);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {

  .hero-wrapper,
  .split-wrapper {
    gap: 2rem;
  }

  .services-grid,
  .team-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid,
  .pricing-grid-new {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .price-card.featured {
    transform: scale(1);
  }

  .price-card.featured:hover {
    transform: translateY(-5px);
  }

  .footer-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--clr-white);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .mobile-only {
    display: block !important;
    width: 100%;
  }

  .mobile-only.mobile-nav-actions {
    display: flex !important;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .nav-actions .btn {
    display: none;
  }
  
  .hero {
    aspect-ratio: 1000 / 1200;
  }

  .hero-wrapper,
  .split-wrapper,
  .testimonials .split-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-image {
    order: 1;
  }

  .services-grid,
  .team-grid,
  .footer-wrapper,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials Mobile Fix */
  .testimonial-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }
  
  .testimonial-img {
    width: 120px;
    margin: 0 auto;
  }
  
  .testimonial-header {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .testimonials-nav {
    justify-content: center;
    margin-bottom: 2rem;
  }
  
  .quote-icon {
    margin-top: 0.5rem;
  }
  
  .stars {
    justify-content: center;
  }

  .feature-list li {
    justify-content: center;
  }

  .organic-shape {
    display: none;
  }
}

/* =========================================
   Auth Modal (Login / Register)
========================================= */
.auth-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.auth-modal {
  background: var(--clr-white);
  width: 100%;
  max-width: 450px;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-modal-overlay.active .auth-modal {
  transform: translateY(0) scale(1);
}

.auth-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  transition: all 0.2s ease;
}

.auth-close:hover {
  background: #e2e8f0;
  color: var(--clr-charcoal);
  transform: rotate(90deg);
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h2 {
  font-size: 1.75rem;
  color: var(--clr-charcoal);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.auth-header p {
  color: #64748b;
  font-size: 0.95rem;
}

.auth-tabs {
  display: flex;
  background: #f8fafc;
  border-radius: 12px;
  padding: 0.35rem;
  margin-bottom: 2rem;
}

.auth-tab {
  flex: 1;
  padding: 0.75rem;
  border: none;
  background: transparent;
  font-family: var(--font-heading);
  font-weight: 600;
  color: #64748b;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.auth-tab.active {
  background: var(--clr-white);
  color: var(--clr-primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.auth-form {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.auth-form.active {
  display: block;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--clr-charcoal);
  background: #f8fafc;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--clr-primary);
  background: var(--clr-white);
  box-shadow: 0 0 0 4px rgba(51, 110, 155, 0.1);
}

.auth-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  cursor: pointer;
}

.remember-me input {
  accent-color: var(--clr-primary);
  width: 16px;
  height: 16px;
}

.forgot-pass {
  color: var(--clr-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.forgot-pass:hover {
  text-decoration: underline;
  color: var(--clr-primary-dark);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .auth-modal {
    padding: 2rem 1.5rem;
  }
}