/* Page Hero Styles */
.hero {
  background: linear-gradient(120deg, #1b9db1, #138294);
  color: #fff;
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero.has-image {
  background-size: cover;
  background-position: center;
}

.hero.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.page-title {
  font-size: clamp(28px, 3.2vw, 40px);
  margin: 0 0 12px;
}

.page-subtitle {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.page-content {
  max-width: 900px;
  margin: -40px auto 3rem;
  padding: 0 2rem;
}

.content-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.page-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #4b5563;
}

.page-body p {
  margin-bottom: 1.5rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: #1b9db1;
  font-weight: 600;
}

.back-link:hover {
  text-decoration: underline;
}

/* Services Page Styles */
.services-hero {
  background: linear-gradient(135deg, #1b9db1 0%, #138294 100%);
  color: #fff;
  padding: 100px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.services-hero-inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.services-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.services-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.services-section {
  padding: 80px 0;
}

.services-section.alt {
  background: #f8fafc;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

/* Services Page - Main Content */
.main-content {
  padding: 80px 0;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 15px;
  color: #2d2d2d;
  text-align: center;
}

.section-subtitle {
  font-size: 18px;
  color: #6b6b6b;
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.service-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.service-content {
  padding: 30px;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1b9db1 0%, #138294 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.service-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 15px;
  color: #2d2d2d;
}

.service-description {
  font-size: 15px;
  line-height: 1.7;
  color: #6b6b6b;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.service-features li {
  padding: 8px 0;
  font-size: 14px;
  color: #2d2d2d;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li::before {
  content: "✓";
  color: #1b9db1;
  font-weight: 700;
  font-size: 16px;
}

.service-button {
  width: 100%;
  padding: 12px;
  background: #1b9db1;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.service-button:hover {
  background: #138294;
}

/* Process Section */
.process-section {
  background: #f5f7f8;
  padding: 80px 0;
  margin-top: 60px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.process-step {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #1b9db1;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 15px;
  color: #2d2d2d;
}

.step-description {
  font-size: 14px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0;
}

/* Why Choose Section */
.why-choose-section {
  padding: 80px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-card {
  background: #f5f7f8;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1b9db1 0%, #138294 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
}

.benefit-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #2d2d2d;
}

.benefit-description {
  font-size: 14px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0;
}

/* CTA Banner */
.cta-banner {
  background: #2d2d2d;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 32px;
  margin: 0 0 30px;
}

.cta-banner .btn {
  background: #1b9db1;
  color: #fff;
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.cta-banner .btn:hover {
  background: #138294;
}
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.services-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* About Us Page Styles -The Designer Bridge Style */
.main-content {
  padding: 60px 0;
}

.section {
  margin-bottom: 80px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 20px;
  color: #2d2d2d;
}

.section-tagline {
  font-size: 18px;
  color: #6b6b6b;
  margin-bottom: 40px;
  font-style: italic;
}

/* About Us Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.about-text {
  font-size: 15px;
  line-height: 1.8;
  color: #2d2d2d;
}

.about-text p {
  margin-bottom: 20px;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-mission-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f8fafc 0%, #fff 100%);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.mission-card {
  background: #fff;
  padding: 48px 40px;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #1b9db1, #138294);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.mission-card:hover::before {
  transform: scaleX(1);
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(27, 157, 177, 0.2);
  border-color: #1b9db1;
}

.mission-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1b9db1, #138294);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(27, 157, 177, 0.3);
  transition: transform 0.3s ease;
}

.mission-card:hover .mission-icon {
  transform: scale(1.1) rotate(5deg);
}

.mission-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.mission-card h3 {
  font-size: 28px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 20px;
}

.mission-card p {
  color: #6b7280;
  line-height: 1.8;
  font-size: 16px;
}

.about-stats-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1b9db1 0%, #138294 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 900;
  margin-bottom: 16px;
  color: #fff;
  line-height: 1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-values-section {
  padding: 100px 0;
  background: #fff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.value-card {
  background: linear-gradient(to bottom, #f8fafc 0%, #fff 100%);
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #e5e7eb;
  position: relative;
}

.value-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(27, 157, 177, 0.05), rgba(19, 130, 148, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card:hover::after {
  opacity: 1;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(27, 157, 177, 0.15);
  border-color: #1b9db1;
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  border-radius: 20px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(-5deg);
}

.value-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.value-card h4 {
  font-size: 24px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.value-card p {
  color: #6b7280;
  line-height: 1.8;
  font-size: 16px;
  position: relative;
  z-index: 1;
}

.about-team-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f8fafc 0%, #fff 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.team-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(27, 157, 177, 0.2);
  border-color: #1b9db1;
}

.team-image {
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
}

.team-card:hover .team-image {
  border-color: #1b9db1;
  transform: scale(1.05);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h4 {
  font-size: 22px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 8px;
}

.team-card p {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
}

.about-testimonials-section {
  padding: 100px 0;
  background: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonial-item {
  background: linear-gradient(to bottom, #f8fafc 0%, #fff 100%);
  padding: 40px;
  border-radius: 24px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.testimonial-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(27, 157, 177, 0.15);
  border-color: #1b9db1;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 4px solid #1b9db1;
  box-shadow: 0 4px 12px rgba(27, 157, 177, 0.3);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  flex: 1;
}

.testimonial-text {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 48px;
  color: #1b9db1;
  position: absolute;
  top: -20px;
  left: -15px;
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-author {
  font-weight: 800;
  color: #1f2937;
  font-size: 18px;
}

/* Subscription Packages Styles */
.subscription-packages-section {
  padding: 100px 0;
  background: #f8fafc;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.package-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #e5e7eb;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(27, 157, 177, 0.15);
}

.package-card.featured {
  border-color: #1b9db1;
  background: linear-gradient(to bottom, #fff 0%, #f0fdfa 100%);
  transform: scale(1.05);
}

.package-card.featured:hover {
  transform: scale(1.08) translateY(-8px);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #1b9db1, #138294);
  color: #fff;
  padding: 6px 24px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(27, 157, 177, 0.3);
}

.package-header {
  text-align: center;
  margin-bottom: 32px;
}

.package-header h3 {
  font-size: 28px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 12px;
}

.package-description {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
}

.package-price {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 2px solid #e5e7eb;
}

.price-amount {
  font-size: 48px;
  font-weight: 800;
  color: #1b9db1;
  line-height: 1;
}

.price-period {
  font-size: 18px;
  color: #6b7280;
  font-weight: 500;
  text-transform: capitalize;
}

.package-features {
  flex: 1;
  margin-bottom: 32px;
}

.package-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
}

.package-features li svg {
  flex-shrink: 0;
  color: #1b9db1;
  margin-top: 2px;
}

.package-features li span {
  flex: 1;
}

.package-footer {
  margin-top: auto;
}

.package-button {
  display: block;
  width: 100%;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.button-primary {
  background: linear-gradient(135deg, #1b9db1, #138294);
  color: #fff;
  box-shadow: 0 4px 15px rgba(27, 157, 177, 0.3);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 157, 177, 0.4);
}

.button-outline {
  background: #fff;
  color: #1b9db1;
  border-color: #1b9db1;
}

.button-outline:hover {
  background: #1b9db1;
  color: #fff;
  transform: translateY(-2px);
}

/* How It Works Page Styles */
.how-it-works-intro {
  padding: 80px 0;
  background: #fff;
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.intro-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.intro-image img {
  width: 100%;
  height: auto;
  display: block;
}

.intro-text h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 24px;
  line-height: 1.2;
}

.intro-body {
  font-size: 18px;
  line-height: 1.8;
  color: #4b5563;
}

.intro-body p {
  margin-bottom: 20px;
}

.how-it-works-steps-section {
  padding: 100px 0;
  background: #f8fafc;
}

.how-it-works-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.how-step-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.how-step-card:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(27, 157, 177, 0.15);
}

.step-number-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1b9db1, #138294);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(27, 157, 177, 0.3);
  z-index: 2;
}

.step-connector {
  width: 4px;
  height: 60px;
  background: linear-gradient(180deg, #1b9db1, #e5e7eb);
  margin-top: 20px;
  border-radius: 2px;
}

.how-step-card:last-child .step-connector {
  display: none;
}

.step-image {
  width: 100%;
  max-width: 300px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-image img {
  width: 100%;
  height: auto;
  display: block;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.step-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
}

.how-it-works-benefits-section {
  padding: 100px 0;
  background: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.benefit-card {
  background: #f8fafc;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: #1b9db1;
  box-shadow: 0 12px 40px rgba(27, 157, 177, 0.15);
  background: #fff;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #1b9db1, #138294);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(27, 157, 177, 0.3);
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
}

@media (max-width: 820px) {
  .page-content {
    margin-top: -30px;
  }

  .services-hero {
    padding: 60px 0 80px;
  }

  .services-section {
    padding: 60px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .profiles-grid {
    grid-template-columns: 1fr;
  }

  .leadership-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .awards-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-item {
    flex-direction: column;
    text-align: center;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .package-card.featured {
    transform: scale(1);
  }

  .package-card.featured:hover {
    transform: translateY(-8px);
  }

  .intro-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .how-step-card {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .step-number-wrapper {
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }

  .step-connector {
    width: 60px;
    height: 4px;
    margin-top: 0;
    margin-left: 20px;
    background: linear-gradient(90deg, #1b9db1, #e5e7eb);
  }

  .how-step-card:last-child .step-connector {
    display: none;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Page Styles -The Designer Bridge Style */
.faq-page .main-content {
  padding: 60px 0;
}

.faq-page .page-title {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 50px;
  color: var(--text);
}

/* FAQ Accordion */
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question-number {
  margin-right: 15px;
  font-weight: 600;
  color: var(--primary);
  min-width: 30px;
}

.faq-question-text {
  flex: 1;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 45px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 45px 24px;
}

.faq-answer-content {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  padding-top: 10px;
}

/* Disclaimer */
.disclaimer {
  margin-top: 50px;
  padding: 20px;
  background: var(--light);
  border-radius: 8px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* Floating Chat Icon */
.floating-chat {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.2s, box-shadow 0.2s;
}

.floating-chat:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.faq-content {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .page-title {
    font-size: 32px;
  }

  .faq-question {
    font-size: 14px;
    padding: 20px 0;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }

  .floating-chat {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* Contact Us Page Styles */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f8fafc 0%, #fff 100%);
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 20px;
}

.contact-subtitle {
  font-size: 18px;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(27, 157, 177, 0.15);
  border-color: #1b9db1;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1b9db1, #138294);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(27, 157, 177, 0.3);
}

.contact-info-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 12px;
}

.contact-info-card p {
  color: #6b7280;
  line-height: 1.8;
  font-size: 16px;
  margin: 0;
}

.contact-info-card a {
  color: #1b9db1;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: #138294;
  text-decoration: underline;
}

.contact-form-wrapper {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.contact-form-card {
  background: #fff;
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid #e5e7eb;
}

.contact-form-card h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 12px;
}

.form-subtitle {
  color: #6b7280;
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.required {
  color: #ef4444;
}

.form-control {
  padding: 14px 18px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fff;
  color: #1f2937;
}

.form-control:focus {
  outline: none;
  border-color: #1b9db1;
  box-shadow: 0 0 0 3px rgba(27, 157, 177, 0.1);
}

.form-control::placeholder {
  color: #9ca3af;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.error-message {
  color: #ef4444;
  font-size: 14px;
  margin-top: 6px;
  display: block;
}

.alert {
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 2px solid #10b981;
}

.alert-error {
  background: #fee2e2;
  color: #991b1b;
  border: 2px solid #ef4444;
}

.btn-submit {
  background: linear-gradient(135deg, #1b9db1, #138294);
  color: #fff;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(27, 157, 177, 0.3);
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 157, 177, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit svg {
  transition: transform 0.3s ease;
}

.btn-submit:hover svg {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrapper {
    position: static;
  }
}

@media (max-width: 820px) {
  .contact-section {
    padding: 60px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-form-card {
    padding: 32px 24px;
  }

  .contact-info-card {
    padding: 24px;
  }
}

/* Contact Us Page Styles -The Designer Bridge Style */
.contact-page .main-content {
  padding: 60px 0;
}

.contact-page .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-page .contact-info h1 {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 15px;
  color: var(--text);
}

.contact-page .contact-info h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 20px;
  color: var(--text);
}

.contact-page .contact-info p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 30px;
}

.contact-page .contact-emails {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-page .email-item {
  font-size: 15px;
  color: var(--text);
}

.contact-page .email-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
}

.contact-page .email-item a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-page .email-item a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Contact Form -The Designer Bridge Style */
.contact-page .contact-form {
  background: var(--light);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.contact-page .form-group {
  margin-bottom: 25px;
}

.contact-page .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.contact-page .form-group input,
.contact-page .form-group select,
.contact-page .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
}

.contact-page .form-group input:focus,
.contact-page .form-group select:focus,
.contact-page .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-page .form-group input::placeholder,
.contact-page .form-group textarea::placeholder {
  color: #999;
}

.contact-page .form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-page .phone-input-group {
  display: flex;
  gap: 10px;
}

.contact-page .phone-input-group select {
  width: 100px;
  flex-shrink: 0;
}

.contact-page .phone-input-group input {
  flex: 1;
}

.contact-page .recaptcha-container {
  margin: 20px 0;
  padding: 15px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-page .recaptcha-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.contact-page .recaptcha-text {
  font-size: 14px;
  color: var(--text);
}

.contact-page .recaptcha-links {
  margin-top: 10px;
  font-size: 11px;
  color: var(--muted);
}

.contact-page .recaptcha-links a {
  color: var(--primary);
  text-decoration: none;
}

.contact-page .recaptcha-links a:hover {
  text-decoration: underline;
}

.contact-page .form-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-page .form-submit:hover {
  background: var(--primary-dark);
}

@media (max-width: 968px) {
  .contact-page .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-page .contact-form {
    order: -1;
  }
}

@media (max-width: 768px) {
  .contact-page .contact-info h1 {
    font-size: 32px;
  }

  .contact-page .contact-form {
    padding: 30px 20px;
  }
}

/* Founders & Leadership -The Designer Bridge Style */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profile-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #f5f7f8;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.profile-name {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #2d2d2d;
}

.profile-role {
  font-size: 15px;
  color: #6b6b6b;
  margin-bottom: 20px;
}

.profile-description {
  font-size: 14px;
  line-height: 1.7;
  color: #2d2d2d;
  text-align: left;
  margin-bottom: 20px;
}

.profile-description p {
  margin-bottom: 12px;
}

.linkedin-link {
  width: 40px;
  height: 40px;
  background: #0077b5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s;
}

.linkedin-link:hover {
  transform: scale(1.1);
  color: #fff;
}

/* Leadership Team - Compact Cards */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.leadership-card {
  text-align: center;
}

.leadership-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px;
  border: 3px solid #f5f7f8;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.leadership-name {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px;
  color: #2d2d2d;
}

.leadership-role {
  font-size: 13px;
  color: #6b6b6b;
  margin-bottom: 15px;
}

/* Investors Section */
.investors-intro {
  font-size: 16px;
  line-height: 1.7;
  color: #2d2d2d;
  margin-bottom: 40px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.investors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
  align-items: center;
}

.investor-logo {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.investor-logo.westbridge {
  color: #0066cc;
}

.investor-logo.fireside {
  color: #d32f2f;
}

.investor-logo.sixth {
  color: #d32f2f;
}

/* Awards Section */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.award-badge {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 3px solid #ffc107;
  position: relative;
}

.award-badge::before {
  content: "🏆";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 40px;
  background: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.award-text {
  font-size: 13px;
  line-height: 1.6;
  color: #2d2d2d;
  margin-top: 20px;
  font-weight: 500;
}

.disclaimer {
  margin-top: 40px;
  padding: 20px;
  background: #f5f7f8;
  border-radius: 8px;
  font-size: 13px;
  color: #6b6b6b;
  text-align: center;
}

/* CTA Banner */
.cta-banner {
  background: #2d2d2d;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 32px;
  margin: 0 0 30px;
  color: #fff;
}

.cta-banner .btn {
  background: #1b9db1;
  color: #fff;
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.cta-banner .btn:hover {
  background: #138294;
  color: #fff;
}

@media (max-width: 820px) {
  .founders-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-card {
    flex-direction: column;
    text-align: center;
  }

  .founder-image {
    margin: 0 auto;
  }

  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .investors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .awards-grid {
    grid-template-columns: 1fr;
  }
}

/* Why Choose Us / How It Works Page Styles */
.why-choose-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.why-choose-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 20px;
}

.why-choose-hero p {
  font-size: 20px;
  margin: 0;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Stats Section */
.stats-section {
  background: var(--light);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: var(--muted);
}

/* Main Content */
.main-content {
  padding: 80px 0;
}

.section {
  margin-bottom: 80px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--text);
  text-align: center;
}

.section-subtitle {
  font-size: 18px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.feature-card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 50px;
  height:50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin: 0 auto 20px; */
  font-size: 36px;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.feature-title {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 15px;
  color: var(--text);
}

.feature-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* Process Section */
.process-section {
  background: var(--light);
  padding: 80px 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
  position: relative;
}

.process-step {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 15px;
  color: var(--text);
}

.step-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.benefit-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--text);
}

.benefit-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--light);
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.testimonial-rating {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 20px;
}

.author-info h4 {
  margin: 0 0 5px;
  font-size: 16px;
  color: var(--text);
}

.author-info p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 768px) {
  .why-choose-hero h1 {
    font-size: 32px;
  }

  .why-choose-hero p {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Subscription Page Styles -The Designer Bridge Style */
.subscription-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.subscription-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 20px;
}

.subscription-hero p {
  font-size: 20px;
  margin: 0;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* The page uses <main class="main-content subscription-page">, so target same element */
.main-content.subscription-page {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.subscription-page .section-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 15px;
  color: var(--text);
  text-align: center;
}

.subscription-page .section-subtitle {
  font-size: 18px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Pricing Toggle */
.subscription-page .pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
}

.subscription-page .toggle-label {
  font-size: 15px;
  color: var(--muted);
  font-weight: 600;
}

.subscription-page .toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: #ddd;
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.subscription-page .toggle-switch.active {
  background: var(--primary);
}

.subscription-page .toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
}

.subscription-page .toggle-switch.active .toggle-slider {
  transform: translateX(30px);
}

/* Pricing Cards */
.subscription-page .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 24px;
  margin-bottom: 60px;
}

.subscription-page .pricing-card {
  background: #fff;
  border: 2px solid #e6e6e6;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.subscription-page .pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.subscription-page .pricing-card.featured {
  border-color: var(--primary);
  border-width: 3px;
  transform: scale(1.05);
}

.subscription-page .pricing-card.featured::before {
  content: "POPULAR";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.subscription-page .plan-name {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
}

.subscription-page .plan-description {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 25px;
}

.subscription-page .plan-price {
  margin-bottom: 30px;
}

.subscription-page .price-amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.subscription-page .price-period {
  font-size: 14px;
  color: var(--muted);
  margin-top: 5px;
}

.subscription-page .price-original {
  font-size: 20px;
  color: var(--muted);
  text-decoration: line-through;
  margin-right: 10px;
}

.subscription-page .plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  text-align: left;
}

.subscription-page .plan-features li {
  padding: 12px 0;
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.subscription-page .plan-features li:last-child {
  border-bottom: none;
}

.subscription-page .feature-icon {
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

.subscription-page .plan-button {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.subscription-page .plan-button:hover {
  background: var(--primary-dark);
}

.subscription-page .pricing-card.featured .plan-button {
  background: var(--accent);
}

.subscription-page .pricing-card.featured .plan-button:hover {
  background: #e67a00;
}

/* Benefits Section */
main.subscription-page + .benefits-section {
  background: var(--light);
  padding: 80px 0;
}

main.subscription-page + .benefits-section .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

main.subscription-page + .benefits-section .benefit-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
}

main.subscription-page + .benefits-section .benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
}

main.subscription-page + .benefits-section .benefit-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--text);
}

main.subscription-page + .benefits-section .benefit-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* FAQ Section */
.subscription-faq {
  padding: 80px 0;
}

.subscription-faq .faq-item {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
}

.subscription-faq .faq-question {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--text);
}

.subscription-faq .faq-answer {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 968px) {
  .subscription-page .pricing-card.featured {
    transform: scale(1);
  }

  .subscription-page .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .subscription-hero h1 {
    font-size: 32px;
  }

  .subscription-hero p {
    font-size: 16px;
  }

  .subscription-page .section-title {
    font-size: 28px;
  }

  .subscription-page .pricing-toggle {
    width: 100%;
    gap: 10px;
    padding: 10px 12px;
  }
}
