/* Summer Flip Flop Wizard - Main Styles */

:root {
  --primary: #ff6b6b;
  --primary-dark: #e85d5d;
  --secondary: #ffc81a;
  --accent: #ffe66d;
  --light: #f7fff7;
  --dark: #2b1d1b;

  /* Consolidated text & background colors */
  --text-primary: #1a1a2e;
  --text-secondary: #555;
  --text-muted: #8a8fa0;
  --bg-page: #f6f7fb;
  --bg-card: #fff;
  --border-light: #e8eaef;

  /* Radius scale */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 50%;

  /* Shadow scale */
  --shadow-xs: 0 1px 4px rgba(0,0,0,.04);
  --shadow-sm: 0 2px 12px rgba(0,0,0,.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.1);
  --shadow-hover: 0 16px 48px rgba(0,0,0,.12);

  /* Transition */
  --ease: cubic-bezier(.4,0,.2,1);
  --duration: .3s;

  /* Legacy aliases */
  --shadow: var(--shadow-sm);
  --border-radius: var(--radius-sm);
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.7;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: var(--bg-card);
  color: var(--text-primary);
  padding: .75rem 0;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255,255,255,.92);
  transition: box-shadow var(--duration) var(--ease);
}

header.scrolled {
  box-shadow: var(--shadow-sm);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.logo img {
  height: 38px;
}

nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: .25rem;
}

nav ul li {
  margin-left: 0;
}

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: .9rem;
  transition: color var(--duration) var(--ease);
  padding: 0.5rem .85rem;
  border-radius: var(--radius-sm);
  position: relative;
}

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

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-primary);
  cursor: pointer;
  padding: .5rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .header-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    position: relative;
  }
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin-right: .25rem;
  }
  .logo {
    flex-shrink: 0;
  }
  nav {
    margin-left: auto;
    flex-shrink: 0;
  }
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    z-index: 100;
  }
  nav ul.nav-open { display: flex; }
  nav ul li { margin: 0; }
  nav a { display: block; padding: .75rem 1rem; }
}

/* Footer Styles */
footer {
  background-color: #1a1a2e;
  color: rgba(255,255,255,.75);
  padding: 3.5rem 0 0;
  margin-top: 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.footer-section h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: #fff;
  letter-spacing: .3px;
}

.footer-section p {
  font-size: .85rem;
  line-height: 1.65;
  color: rgba(255,255,255,.55);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.6rem;
  font-size: .85rem;
}

.footer-section ul li i {
  width: 18px;
  margin-right: .4rem;
  opacity: .6;
}

.footer-section a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

.footer-section a:hover {
  color: var(--primary);
}

.social-icons {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration) var(--ease);
}

.social-icons a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.copyright {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* Wizard Progress */
.wizard-progress {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
  position: relative;
}

.wizard-progress::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 4px;
  width: 100%;
  background-color: #e0e0e0;
  z-index: -1;
}

.step {
  background-color: #e0e0e0;
  color: var(--dark);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.step.active {
  background-color: var(--primary);
  color: white;
}

.step.completed {
  background-color: var(--secondary);
  color: white;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--duration) var(--ease);
  box-shadow: 0 4px 14px rgba(255,107,107,.25);
  font-family: inherit;
}

.btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,107,.35);
}

.btn-secondary {
  background-color: var(--secondary);
  box-shadow: 0 4px 14px rgba(255,200,26,.25);
}

.btn-secondary:hover {
  background-color: #e5b400;
  box-shadow: 0 6px 20px rgba(255,200,26,.35);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  box-shadow: none;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(255,107,107,.25);
}

/* Cards */
.card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all var(--duration) var(--ease);
}

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

.card-header {
  margin-bottom: 1.5rem;
}

.card-header h2 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

/* Product Showcase */
.product-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero-beach.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 8rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Product Customization */
.customization-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.option-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  position: relative;
}

.option-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.option-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.option-card.selected {
  border: 3px solid var(--primary);
}

.option-card .option-name {
  padding: 1rem;
  text-align: center;
  font-weight: 500;
}

.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem;
  justify-content: center;
}

.color-option {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.color-option:hover {
  transform: scale(1.2);
}

.color-option.selected {
  border: 2px solid var(--dark);
}

/* Form Elements */
form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .92rem;
  color: var(--text-primary);
  background: var(--bg-card);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,107,107,.1);
}

/* Cart Styles */
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.cart-item img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.cart-item-details h4 {
  margin-bottom: 0.5rem;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-btn {
  background-color: #eee;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.quantity-btn:hover {
  background-color: #ddd;
}

.cart-summary {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-top: 2rem;
}

.cart-summary .row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.cart-summary .total {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary);
  border-top: 1px solid #ddd;
  padding-top: 1rem;
  margin-top: 1rem;
}

/* Payment Methods */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.payment-method {
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-method:hover {
  border-color: var(--secondary);
  transform: translateY(-3px);
}

.payment-method.selected {
  border-color: var(--primary);
  background-color: rgba(255, 107, 107, 0.05);
}

.payment-method img {
  height: 40px;
  margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  padding: 1.75rem;
  border-radius: var(--radius-md);
  background-color: var(--bg-card);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.testimonial-content {
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.rating {
  color: #ffcc00;
  margin-top: 0.3rem;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 4.5rem 2.5rem;
  margin: 3rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, #ff8e8e 50%, var(--secondary) 100%);
  color: white;
  border-radius: var(--radius-lg);
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  background-color: white;
  color: var(--primary);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

.btn-large:hover {
  background-color: var(--text-primary);
  color: #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
}

/* Steps List */
.steps-list {
  margin-left: 2rem;
}

.steps-list li {
  margin-bottom: 1rem;
}

/* Cart Icon */
.cart-icon {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: var(--primary);
  color: #fff;
  border-radius: var(--radius-full);
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  font-weight: 700;
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 1rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(255,255,255,.08);
}

.newsletter-form input {
  border-radius: 0;
  padding: .6rem .85rem;
  border: none;
  background: transparent;
  color: #fff;
  font-size: .85rem;
  flex: 1;
  min-width: 0;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,.35);
}

.newsletter-form .btn-small {
  border-radius: 0;
  box-shadow: none;
}

.btn-small {
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
}

/* Empty Cart */
.empty-cart {
  text-align: center;
  padding: 3rem;
  background-color: #f9f9f9;
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .wizard-progress {
    margin: 1rem 0;
  }
  
  .cart-item {
    grid-template-columns: 80px 1fr;
  }
  
  .quantity-control {
    margin-top: 1rem;
    justify-content: flex-start;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
}

/* New Homepage Hero Styles */
.hero-configurator {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 4rem 0;
  text-align: center;
  color: white;
}

.hero-content-new h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-primary-cta {
  background-color: white;
  color: var(--primary);
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.btn-primary-cta:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary-cta {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.btn-secondary-cta:hover {
  background-color: white;
  color: var(--primary);
}

.steps-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.step-mini {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.step-mini:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.step-mini h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.step-mini p {
  font-size: 1rem;
  opacity: 0.9;
}

/* Social Proof Styles */
.social-proof {
  margin: 4rem 0;
}

.social-proof-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.proof-icon {
  font-size: 2.5rem;
  color: var(--primary);
}

.proof-text {
  display: flex;
  flex-direction: column;
}

.proof-text strong {
  font-size: 1.5rem;
  color: var(--text-primary);
}

.proof-text span {
  font-size: 0.9rem;
  color: #666;
}

.customer-photos {
  margin-top: 3rem;
}

.customer-photos h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.customer-photo {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.customer-photo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.customer-photo img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.customer-photo:hover .photo-overlay {
  transform: translateY(0);
}

.photo-overlay p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.photo-overlay .rating {
  color: var(--accent);
}

/* Charm Collections Styles */
.charm-collections {
  margin: 4rem 0;
}

.charm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.charm-category {
  text-align: center;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
}

.charm-category:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.charm-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.charm-category h3 {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.charm-category p {
  color: #666;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .hero-content-new h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .steps-mini {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .social-proof-content {
    grid-template-columns: 1fr;
  }
  
  .photo-grid {
    grid-template-columns: 1fr;
  }
  
  .charm-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-content-new h1 {
    font-size: 2rem;
  }
  
  .step {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  
  .header-container {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .charm-grid {
    grid-template-columns: 1fr;
  }
  
  .btn-primary-cta,
  .btn-secondary-cta {
    display: block;
    width: 100%;
    margin-right: 0;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   HOMEPAGE – New Sections
   ======================================== */

/* Section Header (reusable) */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .75rem;
  position: relative;
}

.section-label::before,
.section-label::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--primary);
  vertical-align: middle;
  margin: 0 .75rem;
  opacity: .5;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .6rem;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* How It Works */
.how-it-works-section {
  padding: 5rem 0;
  background: var(--bg-card);
}

.steps-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--bg-page);
  position: relative;
  transition: all var(--duration) var(--ease);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-card-num {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(255,107,107,.1), rgba(255,200,26,.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin: 0 auto 1.25rem;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: .5rem;
}

.step-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: var(--bg-page);
}

.testimonials-section .testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonials-section .testimonial {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-light);
  transition: all var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonials-section .testimonial:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: .85rem;
  display: flex;
  gap: .15rem;
}

.testimonials-section .testimonial-content p {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-style: italic;
}

.testimonials-section .testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: auto;
}

.testimonials-section .testimonial-author img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.testimonials-section .testimonial-author strong {
  display: block;
  font-size: .85rem;
  color: var(--text-primary);
}

.testimonials-section .testimonial-author span {
  font-size: .75rem;
  color: var(--text-muted);
}

/* CTA Section Wrap */
.cta-section-wrap {
  padding: 3rem 0 4rem;
  background: var(--bg-card);
}

.cta-section-wrap .cta-section {
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .steps-cards { grid-template-columns: 1fr; gap: 1.25rem; }
  .testimonials-section .testimonials { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 1.6rem; }
  .cta-section h2 { font-size: 1.6rem; }
}
