:root {
  --primary: #ff5722;
  --primary-dark: #e14710;
}

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

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #222;
}

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

ul {
  list-style: none;
}

/* ============ HEADER ============ */
.site-header {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 14px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.logo img {
  height: 44px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 35px;
}

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--primary);
}

.auth-btns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.login-btn {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 9px 22px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.login-btn:hover {
  background: var(--primary);
  color: #191d2e;
}

.register-btn {
  background: var(--primary);
  color: #191d2e;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.2s ease;
}

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

.auth-btns-desktop {
  display: flex;
}

.auth-btns-mobile {
  display: none;
}

/* Hamburger button (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

body.no-scroll {
  overflow: hidden;
}

/* Responsive header */
@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 80%);
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 90px 30px 30px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.12);
    transition: right 0.3s ease;
    overflow-y: auto;
  }

  .main-nav.nav-open {
    right: 0;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
  }

  .auth-btns-desktop {
    display: none;
  }

  .auth-btns-mobile {
    display: flex;
    margin-top: 24px;
    width: 100%;
  }

  .auth-btns-mobile .login-btn,
  .auth-btns-mobile .register-btn {
    flex: 1;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 90;
  }

  .nav-overlay.show {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 12px 18px;
  }
  .logo img {
    height: 36px;
  }
}

.nav-overlay {
  display: none;
}

/* ============ FOOTER ============ */
.site-footer {
  background: #191d2e;
  color: #c9cdda;
  padding: 60px 30px 0;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  padding-bottom: 40px;
}

.footer-brand {
  flex: 1 1 320px;
  max-width: 400px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #9ea3b8;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: background 0.2s ease;
}

.social-icons a:hover {
  background: var(--primary);
}

.footer-col {
  flex: 1 1 150px;
}

.footer-col h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 18px;
  font-weight: 600;
}

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

.footer-col ul li a {
  font-size: 14px;
  color: #9ea3b8;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: #7a7f96;
}

.made-in .heart {
  color: var(--primary);
}

/* Responsive footer */
@media (max-width: 600px) {
  .site-footer {
    padding: 45px 20px 0;
  }
  .footer-inner {
    gap: 30px;
  }
  .footer-col {
    flex: 1 1 45%;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============ HERO SECTION ============ */
.hero {
  background: linear-gradient(135deg, #10142a 0%, #1a2140 55%, #10142a 100%);
  padding: 70px 30px;
}

.hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}

.hero-left {
  flex: 1 1 480px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 87, 34, 0.5);
  background: rgba(255, 87, 34, 0.08);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.hero-heading {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-heading .highlight {
  color: var(--primary);
}

.hero-subtext {
  font-size: 16px;
  line-height: 1.7;
  color: #a7acc4;
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.btn-primary {
  background: var(--primary);
  color: #191d2e;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s ease;
}

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

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
}

.hero-call {
  color: #d5d8e6;
  font-size: 15px;
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-call i {
  color: var(--primary);
}

.hero-call strong {
  color: #ffffff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 560px;
}

.stat-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 18px 10px;
  text-align: center;
}

.stat-box h3 {
  color: var(--primary);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-box span {
  color: #9ea3b8;
  font-size: 12px;
}

/* Right side service cards */
.hero-right {
  flex: 1 1 420px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.07);
}

.service-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.icon-blue   { background: #2f6fed; }
.icon-purple { background: linear-gradient(135deg, #d6249f, #f77737); }
.icon-dark   { background: #22263a; border: 1px solid rgba(255,255,255,0.15); }
.icon-red    { background: #e33d3d; }
.icon-sky    { background: #29a9e0; }
.icon-green  { background: #25b26b; }

.service-text h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
}

.service-text span {
  color: #9ea3b8;
  font-size: 13px;
}

.new-badge {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: #25b26b;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Responsive hero */
@media (max-width: 860px) {
  .hero {
    padding: 50px 20px;
  }
  .hero-inner {
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .hero-heading { font-size: 32px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .new-badge { top: 12px; right: 14px; transform: none; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .service-card { padding: 14px 16px; }
}

@media (max-width: 400px) {
  .hero-heading { font-size: 26px; }
  .hero-badge { font-size: 12px; padding: 7px 14px; }
}

/* ============ SHARED SECTION STYLES ============ */
.section-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 30px;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 14px;
}

.dark-title { color: #1a1a2e; }

.section-subtext {
  font-size: 15px;
  max-width: 620px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.dark-subtext { color: #666b80; }

/* ============ PORTFOLIO SECTION ============ */
.portfolio-section {
  position: relative;
  background: linear-gradient(135deg, #0c1128 0%, #1a2140 100%);
  overflow: hidden;
}

.portfolio-section .section-inner {
  padding-top: 70px;
  padding-bottom: 70px;
}

.portfolio-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.tab-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

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

.portfolio-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s ease;
}

.portfolio-item:hover {
  transform: translateY(-4px);
}

.portfolio-thumb {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #fff;
}

.thumb-1 { background: linear-gradient(135deg, #2f6fed, #1a2140); }
.thumb-2 { background: linear-gradient(135deg, #7c3aed, #1a2140); }
.thumb-3 { background: linear-gradient(135deg, #e33d8f, #1a2140); }
.thumb-4 { background: linear-gradient(135deg, #29a9e0, #1a2140); }
.thumb-5 { background: linear-gradient(135deg, #25b26b, #1a2140); }
.thumb-6 { background: linear-gradient(135deg, #f0a636, #1a2140); }
.thumb-7 { background: linear-gradient(135deg, #16a34a, #1a2140); }
.thumb-8 { background: linear-gradient(135deg, #e33d3d, #1a2140); }

.portfolio-caption {
  padding: 14px 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.portfolio-cta {
  margin-top: 46px;
}

/* ============ PRICING SECTION ============ */
.pricing-section {
  background: #eef1fb;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
  align-items: stretch;
}

.pricing-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 36px 30px;
  flex: 1 1 280px;
  max-width: 320px;
  box-shadow: 0 6px 24px rgba(20, 25, 60, 0.06);
  text-align: center;
}

.pricing-card.featured {
  background: linear-gradient(160deg, #2f6fed, #1a2140);
  color: #ffffff;
  transform: translateY(-10px);
}

.pricing-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.popular-tag {
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 20px;
}

.pricing-card .price {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 24px;
  color: inherit;
}

.pricing-card .price span {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.7;
  margin-left: 4px;
}

.pricing-card ul {
  margin-bottom: 30px;
  text-align: left;
}

.pricing-card ul li {
  font-size: 14px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  opacity: 0.9;
}

.pricing-card ul li i {
  color: var(--primary);
}

.pricing-card.featured ul li i {
  color: #ffd591;
}

.pricing-btn {
  display: inline-block;
  width: 100%;
  padding: 13px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.pricing-btn.filled {
  background: var(--primary);
  color: #ffffff;
}

.pricing-btn.outline {
  border: 1.5px solid #ffffff;
  color: #ffffff;
}

.pricing-btn:hover {
  opacity: 0.85;
}

/* ============ TEAM SECTION ============ */
.team-section {
  background: #ffffff;
}

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

.team-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.team-card span {
  font-size: 13px;
  color: #888;
}

.team-avatar {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #f0f1f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #c7cad9;
  overflow: hidden;
}

.team-socials {
  position: absolute;
  right: 0;
  top: 10%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.team-avatar:hover .team-socials {
  opacity: 1;
  transform: translateX(0);
}

.team-socials a {
  width: 30px;
  height: 30px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #333;
}

.team-socials a:hover {
  background: var(--primary);
  color: #fff;
}

/* ============ BLOG SECTION ============ */
.blog-section {
  background: #eef1fb;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
}

.blog-card {
  position: relative;
  min-height: 340px;
  border-radius: 12px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #ffffff;
}

.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
}

.blog-bg-1 { background: linear-gradient(135deg, #2f6fed, #1a2140); }
.blog-bg-2 { background: linear-gradient(135deg, #7c3aed, #1a2140); }

.blog-meta,
.blog-card h3 {
  position: relative;
  z-index: 1;
}

.blog-meta {
  font-size: 13px;
  margin-bottom: 12px;
  opacity: 0.9;
}

.blog-card h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

/* ============ CLIENTS SECTION ============ */
.clients-section {
  background: #ffffff;
}

.clients-section .section-inner {
  text-align: left;
  padding-top: 60px;
  padding-bottom: 60px;
}

.clients-title {
  font-size: 18px;
  font-weight: 800;
  color: #2f6fed;
  letter-spacing: 0.5px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e6e8f0;
  margin-bottom: 36px;
}

.clients-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.client-logo {
  background: #f5f6fb;
  border: 1px solid #e6e8f0;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  color: #444;
  white-space: nowrap;
}

/* ============ FLOATING BUTTONS ============ */
.float-btn {
  position: fixed;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  border: none;
  cursor: pointer;
  z-index: 150;
}

.whatsapp-btn {
  bottom: 24px;
  background: #25d366;
}

.scroll-top-btn {
  bottom: 90px;
  background: var(--primary);
  font-size: 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.scroll-top-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ============ RESPONSIVE: NEW SECTIONS ============ */
@media (max-width: 960px) {
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section-inner { padding: 60px 22px; }
  .section-title { font-size: 28px; }
  .blog-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
}

@media (max-width: 640px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .float-btn { width: 46px; height: 46px; font-size: 20px; right: 16px; }
  .whatsapp-btn { bottom: 16px; }
  .scroll-top-btn { bottom: 72px; font-size: 15px; }
}

@media (max-width: 420px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ============ WELCOME / QUOTE FORM SECTION ============ */
.welcome-section {
  background: #ffffff;
}

.welcome-inner {
  text-align: left;
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
}

.welcome-left {
  flex: 1 1 460px;
}

.welcome-right {
  flex: 1 1 420px;
}

.welcome-heading {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.welcome-underline {
  width: 46px;
  height: 3px;
  background: var(--primary);
  margin: 14px 0 22px;
}

.welcome-quote {
  font-size: 17px;
  font-weight: 600;
  font-style: italic;
  color: #1a1a2e;
  border-left: 3px solid var(--primary);
  padding-left: 18px;
  margin-bottom: 22px;
  line-height: 1.6;
}

.welcome-text {
  font-size: 14.5px;
  line-height: 1.8;
  color: #555a6e;
  margin-bottom: 16px;
}

.welcome-btn {
  display: inline-block;
  width: auto;
  padding: 12px 30px;
  margin-top: 10px;
}

.quote-form-box {
  background: #f4f5fa;
  border-radius: 12px;
  padding: 34px 30px;
}

.quote-form-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.quote-form-row {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid #dcdfe8;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  resize: vertical;
}

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

.quote-form textarea {
  width: 100%;
  margin-bottom: 18px;
}

.quote-submit-btn {
  background: var(--primary);
  color: #ffffff;
  border: none;
  padding: 12px 34px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

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

/* Responsive welcome section */
@media (max-width: 640px) {
  .quote-form-row {
    flex-direction: column;
    gap: 0;
  }
  .welcome-inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/* ============ TESTIMONIALS SECTION ============ */
.testimonials-section {
  background: #eef1fb;
}

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

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 26px;
  box-shadow: 0 6px 20px rgba(20, 25, 60, 0.06);
}

.quote-icon {
  color: var(--primary);
  font-size: 22px;
  opacity: 0.5;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: #555a6e;
  margin-bottom: 18px;
  min-height: 100px;
}

.testimonial-stars {
  color: #f0a636;
  font-size: 13px;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #eef0f6;
  padding-top: 18px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f0f1f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #c7cad9;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 2px;
}

.author-info span {
  font-size: 12px;
  color: #888;
}

/* Responsive testimonials */
@media (max-width: 860px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-text {
    min-height: unset;
  }
}
