/* ============================================
   Base Styles
============================================ */
:root {
    --primary-bg: #DDCABC;
    --text-color: #573A1B;
    --accent-color: #573A1B;
    --white: #ffffff;
    --light-bg: #F9F5F2;
    --shadow: rgba(87, 58, 27, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-bg);
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* ============================================
   Typography
============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

p {
    margin-bottom: 1rem;
}

/* ============================================
   Buttons
============================================ */
.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    cursor: pointer;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.nav-cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    cursor: pointer;
    white-space: nowrap;
}

.nav-cta-button:hover {
    background-color: transparent;
    color: var(--accent-color);
}

/* ============================================
   Navbar
============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--primary-bg);
    box-shadow: 0 2px 10px var(--shadow);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    position: relative;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    font-weight: 600;
    position: relative;
}

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

.nav-links a.active::after,
.nav-links a:hover::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* ============================================
   Hero Section
============================================ */
.hero {
    padding: 140px 0 80px;
    background-color: var(--primary-bg);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.headline-primary {
    margin: 0 auto 5px;
    color: var(--text-color);
    font-weight: 700;
    line-height: 1.2;
    font-size: 56px;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.headline-secondary {
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.2;
    font-size: 48px;
    text-align: center;
    width: 100%;
    white-space: nowrap;
}

.hero p {
    font-size: 22px;
    margin-bottom: 40px;
    color: var(--text-color);
    opacity: 0.9;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Curved Image Layout Styling
============================================ */
.curved-images-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  height: 340px;
  margin: 0 auto;
  position: relative;
  gap: 40px;
}

.curved-image {
  width: 320px;
  height: 240px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(87, 58, 27, 0.15);
  position: absolute;
  transition: transform 0.3s ease;
}

.curved-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.curved-image.center img {
  object-position: center 20%;
}

/* Position and rotation for each image */
.curved-image.left {
  transform: rotate(6deg);
  left: calc(50% - 560px);
  top: 40px;
}

.curved-image.center {
  transform: rotate(0deg);
  left: calc(50% - 158px);
  top: 60px;
  z-index: 5;
}

.curved-image.right {
  transform: rotate(-6deg);
  left: calc(50% + 237px);
  top: 40px;
}

/* Optional hover effects */
.curved-image:hover {
  transform: scale(1.05) translateY(-5px);
  z-index: 10;
}

.curved-image.left:hover {
  transform: rotate(5deg) scale(1.05) translateY(-8px);
}

.curved-image.right:hover {
  transform: rotate(-5deg) scale(1.05) translateY(-8px);
}

/* ============================================
   Section Styles
============================================ */
.section {
    padding: 80px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--text-color);
}

/* About Section */
.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-top: 30px;
}

.about-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-image-container {
    height: 0;
    padding-bottom: 130%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(87, 58, 27, 0.15);
}

.about-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.about-image-caption {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(87, 58, 27, 0.08);
}

.about-image-caption h3 {
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.about-image-caption p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text-block {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(87, 58, 27, 0.08);
    transition: transform 0.3s ease;
}

.about-text-block:hover {
    transform: translateY(-5px);
}

.about-text-block h3 {
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.about-text-block p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Benefits Section */
.benefits-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.benefit-card {
    background-color: var(--light-bg);
    border-radius: 16px;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(87, 58, 27, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 300px;
    justify-content: flex-start;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(87, 58, 27, 0.15);
}

.benefit-icon {
    margin-bottom: 20px;
    color: var(--accent-color);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon-img {
    width: 64px;
    height: 64px;
    filter: brightness(0) saturate(100%) invert(22%) sepia(32%) saturate(988%) hue-rotate(8deg) brightness(97%) contrast(95%);
    transition: all 0.3s ease;
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
}

/* Responsive styles for About section */
@media only screen and (max-width: 991px) {
    .about-content {
        gap: 30px;
    }

    .about-image-container {
        height: 320px;
    }
}

@media only screen and (max-width: 768px) {
    .about-content {
        flex-direction: column-reverse;
    }

    .about-image {
        width: 100%;
        margin-top: 30px;
    }

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

/* ============================================
   Pricing Section
============================================ */
.pricing-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
}



.pricing-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(87, 58, 27, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(87, 58, 27, 0.15);
}

.pricing-featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-12px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.pricing-description {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 0;
}

.pricing-price {
    margin: 30px 0;
    position: relative;
}

.price-prefix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    display: block;
    line-height: 1.2;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    line-height: 1;
}

.price-period {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.7;
    font-weight: 500;
}

.price-savings {
    background: #E8F5E8;
    color: #2D7D32;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 12px;
}

.pricing-features {
    flex-grow: 1;
    margin: 30px 0;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.9;
}

.pricing-features li i {
    color: var(--accent-color);
    margin-right: 12px;
    font-size: 1rem;
    width: 16px;
    flex-shrink: 0;
}

.pricing-cta {
    margin-top: auto;
}

.pricing-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    cursor: pointer;
    width: 100%;
    text-decoration: none;
}

.pricing-button:hover {
    background-color: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(87, 58, 27, 0.2);
}

.pricing-button-featured {
    background-color: var(--white);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 32px;
}

.pricing-button-featured:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

/* ============================================
   Footer
============================================ */
.footer {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
    align-items: flex-start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-callout {
    font-size: 0.95rem;
    margin-bottom: 0;
    opacity: 0.9;
    max-width: 280px;
    line-height: 1.4;
}

.instagram-link-container {
    display: flex;
    align-items: center;
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.instagram-link i {
    font-size: 1.2rem;
}

.email-link-container {
    display: flex;
    align-items: center;
}

.email-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.email-link:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.email-link i {
    font-size: 1.2rem;
}

.phone-link-container {
    display: flex;
    align-items: center;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.phone-link:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.phone-link i {
    font-size: 1.2rem;
}

.footer-cta-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--accent-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    align-self: flex-start;
}

.footer-cta-button:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: var(--white);
    margin-bottom: 10px;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-address {
    margin-bottom: 20px;
}

.footer-address p {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.4;
    font-weight: 500;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   Who It's For Section
============================================ */
.who-its-for-section {
    position: relative;
    background: linear-gradient(135deg, #DDCABC 0%, #E5D4C8 50%, #DDCABC 100%);
    overflow: hidden;
}

.who-its-for-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(87, 58, 27, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(87, 58, 27, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.personas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.persona-card {
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, #f8f6f4 100%);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 
        0 20px 40px rgba(87, 58, 27, 0.08),
        0 8px 16px rgba(87, 58, 27, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: 1px solid rgba(87, 58, 27, 0.05);
    backdrop-filter: blur(10px);
}

.persona-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #573A1B, #8B6542, #573A1B);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.persona-card:hover::before {
    transform: scaleX(1);
}

.persona-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 32px 64px rgba(87, 58, 27, 0.12),
        0 16px 32px rgba(87, 58, 27, 0.08);
}

/* Staggered layout variations */
.persona-card-1 {
    margin-top: 0;
    transform: rotate(-1deg);
}

.persona-card-2 {
    margin-top: 20px;
    z-index: 3;
    transform: scale(1.05);
}

.persona-card-3 {
    margin-top: 0;
    transform: rotate(1deg);
}

.persona-card-1:hover {
    transform: translateY(-12px) scale(1.02) rotate(0deg);
}

.persona-card-3:hover {
    transform: translateY(-12px) scale(1.02) rotate(0deg);
}

.persona-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.persona-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #573A1B 0%, #8B6542 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(87, 58, 27, 0.2);
    padding: 22px;
    box-sizing: border-box;
    overflow: visible;
}

.persona-icon svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.persona-card:hover .persona-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 24px rgba(87, 58, 27, 0.3);
}

.persona-icon-img {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.persona-card h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #573A1B;
    line-height: 1.2;
    background: linear-gradient(135deg, #573A1B, #8B6542);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.persona-card p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #573A1B;
    opacity: 0.85;
    font-weight: 400;
}

.card-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(87, 58, 27, 0.03), rgba(87, 58, 27, 0.08));
    border-radius: 50%;
    transform: translate(30px, 30px);
    transition: all 0.3s ease;
}

.persona-card:hover .card-accent {
    transform: translate(20px, 20px) scale(1.2);
    background: linear-gradient(135deg, rgba(87, 58, 27, 0.08), rgba(87, 58, 27, 0.15));
}

/* Connecting visual element */
.connection-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 200px;
    z-index: 1;
    opacity: 0.6;
    pointer-events: none;
}

.connection-lines svg {
    width: 100%;
    height: 100%;
}

/* Animation for connection lines */
.connection-lines path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 3s ease-in-out infinite alternate;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* Floating particles effect */
.who-its-for-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(87, 58, 27, 0.1), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(87, 58, 27, 0.1), transparent),
        radial-gradient(1px 1px at 90% 40%, rgba(87, 58, 27, 0.1), transparent),
        radial-gradient(1px 1px at 60% 10%, rgba(87, 58, 27, 0.1), transparent);
    background-size: 300px 300px, 200px 200px, 150px 150px, 250px 250px;
    animation: float 20s infinite linear;
    pointer-events: none;
    z-index: 1;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* ============================================
   Testimonials Section
============================================ */
.testimonials-section {
    background: linear-gradient(135deg, #F9F5F2 0%, #DDCABC 50%, #F9F5F2 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(87, 58, 27, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(87, 58, 27, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color);
    position: relative;
    z-index: 2;
}

/* Desktop Carousel Styles */
.testimonials-carousel-container {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.testimonials-wrapper {
    flex: 1;
    max-width: 700px;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.testimonial-card {
    min-width: 100%;
    background: linear-gradient(145deg, #ffffff 0%, #faf8f6 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 
        0 20px 40px rgba(87, 58, 27, 0.08),
        0 8px 16px rgba(87, 58, 27, 0.04);
    position: relative;
    border: 1px solid rgba(87, 58, 27, 0.06);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(87, 58, 27, 0.12),
        0 12px 24px rgba(87, 58, 27, 0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background: #6B4E32;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(87, 58, 27, 0.3);
    position: relative;
    padding: 3px;
}

.testimonial-avatar::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border-radius: 50%;
    background: #ffffff;
    z-index: 1;
}

.testimonial-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center center;
    position: relative;
    z-index: 2;
    background: var(--primary-bg);
}

/* Specific positioning for Sarah's avatar */
.testimonial-avatar img[alt="Sarah M."] {
    object-position: center 60%;
    width: 58px;
    height: 58px;
}

/* Specific sizing for Michael's avatar */
.testimonial-avatar img[alt="Michael T."] {
    width: 58px;
    height: 58px;
}

/* Specific sizing for Jennifer's avatar */
.testimonial-avatar img[alt="Jennifer R."] {
    width: 58px;
    height: 58px;
}

.testimonial-info h4 {
    margin: 0 0 8px 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
}

.star-rating {
    display: flex;
    gap: 3px;
}

.star-rating i {
    color: #FFB800;
    font-size: 1rem;
}

.testimonial-card blockquote {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
    position: relative;
    padding-left: 0;
    opacity: 0.9;
    font-weight: 400;
}

/* Carousel Navigation */
.carousel-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(87, 58, 27, 0.15);
    flex-shrink: 0;
    z-index: 10;
}

.carousel-arrow:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(87, 58, 27, 0.25);
}

.carousel-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-arrow:disabled:hover {
    background: var(--white);
    color: var(--accent-color);
}

/* Navigation Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(87, 58, 27, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* Mobile Stack */
.testimonials-mobile {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-mobile .testimonial-card {
    min-width: auto;
}

/* Responsive Visibility Classes */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* ============================================
   Responsive Styles
============================================ */

/* Intermediate screen size - handles 1120x900 and similar */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .pricing-button-featured {
        white-space: nowrap;
    }
}

@media only screen and (max-width: 991px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .navbar .container {
        padding: 15px;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .headline-primary {
        font-size: 46px;
    }

    .headline-secondary {
        font-size: 38px;
    }
    
    /* Benefits section responsive */
    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .benefit-card {
        padding: 30px 20px;
        min-height: 280px;
    }
    
    .benefit-icon {
        height: 70px;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem;
    }
    
    /* Who It's For section responsive */
    .personas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 40px;
    }
    
    .persona-card-2 {
        grid-column: 1 / -1;
        margin-top: 0;
        transform: scale(1);
        margin: 0 auto;
        max-width: 400px;
    }
    
    .persona-card {
        padding: 30px 25px;
    }
    
    .persona-icon {
        width: 60px;
        height: 60px;
    }
    
    .persona-card h3 {
        font-size: 1.3rem;
    }
    
    .persona-card p {
        font-size: 1rem;
    }
    
    /* Pricing section responsive - tablets */
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 25px;
        justify-items: center;
    }
    
    .pricing-card {
        max-width: 400px;
        width: 100%;
    }
    
    .pricing-featured {
        grid-column: auto;
        transform: scale(1);
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-featured:hover {
        transform: translateY(-12px);
    }
    
    .pricing-card {
        min-height: 320px;
        padding: 35px 25px;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .pricing-button {
        white-space: nowrap;
        font-size: 0.85rem;
        padding: 12px 20px;
    }
    
    .pricing-button-featured {
        white-space: nowrap;
        font-size: 0.85rem;
        padding: 12px 20px;
    }
    
    /* Coming Soon Banner - Tablets */
    .coming-soon-text {
        font-size: 2.5rem;
        letter-spacing: 1.5px;
    }
    
    /* Center footer contact links on tablet */
    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .footer-left {
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-cta-button {
        align-self: center !important;
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
    
    .instagram-link-container,
    .email-link-container,
    .phone-link-container {
        justify-content: center;
    }
}

@media only screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--primary-bg);
        transition: left 0.3s ease;
        padding: 20px;
        text-align: center;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-cta {
        display: none;
    }

    .mobile-cta {
        display: inline-block;
        margin-top: 20px;
    }

    .hero {
        padding: 110px 0 70px;
    }

    .headline-primary {
        font-size: 36px;
        white-space: normal;
    }

    .headline-secondary {
        font-size: 30px;
        white-space: normal;
    }

    .hero p {
        font-size: 1rem;
        white-space: normal;
    }

    /* Curved images responsive adjustments */
    .curved-images-container {
        height: auto;
        flex-direction: column;
        margin: 20px 0;
    }

    .curved-image {
        position: relative;
        margin: 15px auto;
        width: 85%;
        left: 0 !important;
        top: 0 !important;
    }

    .curved-image.left {
        transform: rotate(3deg) translateY(0);
    }

    .curved-image.center {
        transform: translateY(0);
        z-index: 1;
    }

    .curved-image.right {
        transform: rotate(-3deg) translateY(0);
    }
    
    /* Benefits section responsive - mobile */
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefit-card {
        min-height: auto;
        padding: 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-left {
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
        width: 100%;
    }

    .footer-contact-info {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .footer-contact-info * {
        text-align: center;
    }

    .contact-callout {
        max-width: 100% !important;
        text-align: center;
        padding: 0 20px;
    }

    .footer-cta-button {
        align-self: center !important;
        margin: 0 auto;
        display: block;
        width: fit-content;
    }

    .footer-logo, .footer-links, .footer-contact {
        margin-bottom: 30px;
        text-align: center;
    }
    
    /* Center contact links on mobile */
    .instagram-link-container,
    .email-link-container,
    .phone-link-container {
        justify-content: center;
    }
    
    /* Who It's For section responsive - mobile */
    .personas-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .persona-card-1,
    .persona-card-2,
    .persona-card-3 {
        margin-top: 0;
        transform: none;
        max-width: none;
    }
    
    .persona-card {
        padding: 25px 20px;
    }
    
    /* Pricing section responsive - mobile */
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
        justify-items: center;
    }
    
    .pricing-card {
        max-width: 400px;
        width: 100%;
    }
    
    .pricing-featured {
        grid-column: auto;
        transform: scale(1);
        max-width: 400px;
        margin: 0;
    }
    
    .pricing-card {
        min-height: auto;
        padding: 30px 25px;
    }
    
    .pricing-header h3 {
        font-size: 1.3rem;
    }
    
    .price-amount {
        font-size: 2.2rem;
    }
    
    .pricing-features li {
        font-size: 0.95rem;
    }
    
    /* Coming Soon Banner - Mobile */
    .coming-soon-text {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .persona-header {
        gap: 15px;
    }
    
    .persona-icon {
        width: 50px;
        height: 50px;
        border-radius: 15px;
    }
    
    .persona-card h3 {
        font-size: 1.2rem;
    }
    
    .persona-card p {
        font-size: 0.95rem;
    }
    
    .connection-lines {
        display: none;
    }
    
    .who-its-for-section::after {
        background-size: 200px 200px, 150px 150px, 100px 100px, 180px 180px;
    }
    
    /* Testimonials responsive - tablet */
    .testimonials-section h2 {
        font-size: 1.9rem;
        margin-bottom: 40px;
    }
    
    .testimonials-carousel {
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .carousel-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: 35px 30px;
    }
    
    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-avatar img {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-info h4 {
        font-size: 1.2rem;
    }
    
    .testimonial-card blockquote {
        font-size: 1rem;
        padding-left: 25px;
    }
    
    .testimonial-card blockquote::before {
        font-size: 2.5rem;
        top: -8px;
    }
    
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    .testimonials-mobile .testimonial-card {
        padding: 30px 25px;
    }
    
    .testimonials-mobile .testimonial-header {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .testimonials-mobile .testimonial-avatar {
        width: 55px;
        height: 55px;
    }
    
    .testimonials-mobile .testimonial-avatar img {
        width: 45px;
        height: 45px;
    }
    
    .testimonials-mobile .testimonial-info h4 {
        font-size: 1.1rem;
    }
    
    .testimonials-mobile .star-rating i {
        font-size: 0.9rem;
    }
    
    .testimonials-mobile .testimonial-card blockquote {
        font-size: 0.95rem;
        padding-left: 20px;
        line-height: 1.6;
    }
    
    .testimonials-mobile .testimonial-card blockquote::before {
        font-size: 2rem;
        top: -5px;
    }
}

@media only screen and (max-width: 480px) {
    .container {
        width: 95%;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .headline-primary {
        font-size: 30px;
    }

    .headline-secondary {
        font-size: 26px;
    }
    
    /* Testimonials responsive - mobile */
    .testimonials-section h2 {
        font-size: 1.7rem;
        margin-bottom: 30px;
    }
    
    .testimonials-mobile .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonials-mobile .testimonial-header {
        gap: 12px;
        margin-bottom: 18px;
    }
    
    .testimonials-mobile .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonials-mobile .testimonial-avatar img {
        width: 40px;
        height: 40px;
    }
    
    .testimonials-mobile .testimonial-info h4 {
        font-size: 1rem;
    }
    
    .testimonials-mobile .star-rating i {
        font-size: 0.85rem;
    }
    
    .testimonials-mobile .testimonial-card blockquote {
        font-size: 0.9rem;
        padding-left: 18px;
        line-height: 1.5;
    }
    
    .testimonials-mobile .testimonial-card blockquote::before {
        font-size: 1.8rem;
        top: -3px;
    }
}

/* ============================================
   FAQ Section
============================================ */
.faq-section {
    background-color: var(--white);
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 600;
}

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

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(87, 58, 27, 0.1);
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(87, 58, 27, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(87, 58, 27, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
    background-color: var(--white);
}

.faq-question:hover {
    background-color: var(--light-bg);
}

.faq-question:focus {
    outline: none;
    background-color: var(--light-bg);
}

.question-text {
    flex: 1;
    font-family: 'Montserrat', sans-serif;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 20px;
}

.faq-icon i {
    font-size: 14px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background-color: var(--accent-color);
    transform: rotate(45deg);
}

.faq-item.active .faq-icon i {
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: var(--light-bg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px 30px;
}

.faq-answer-content {
    padding-top: 10px;
}

.faq-answer-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0 0 10px 0;
    opacity: 0.9;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content strong {
    color: var(--text-color);
    font-weight: 600;
}

.faq-answer-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.faq-answer-content a:hover {
    text-decoration: underline;
}

/* ============================================
   FAQ Section - Responsive
============================================ */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .faq-question {
        padding: 20px 20px;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .faq-icon {
        width: 25px;
        height: 25px;
        margin-left: 15px;
    }
    
    .faq-icon i {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 18px 15px;
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 18px 15px;
    }
    
    .faq-answer-content p {
        font-size: 0.9rem;
    }
}