/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #050a14;
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Utility Classes */
.gradient-text {
    background: linear-gradient(90deg, #ec4899 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg {
    background: linear-gradient(90deg, #f472b6 0%, #3b82f6 100%);
}

/* Header */
.header {
    width: 100%;
    background-color: #050a14;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #1f2937;
    position: sticky;
    top: 0;
    z-index: 50;
    flex-wrap: wrap;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.logo {
    height: 3rem;
    width: auto;
    object-fit: contain;
}

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

.header-title {
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ec4899 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.header-subtitle {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.header-cta {
    color: #22d3ee;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.header-cta:hover {
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    padding: 5rem 1.5rem;
    background-color: #050a14;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 100%;
    background-color: rgba(30, 58, 138, 0.2);
    filter: blur(100px);
    border-radius: 50%;
    transform: translate(25%, -50%);
    pointer-events: none;
}

.hero-container {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
}

.hero-content {
    width: 100%;
    text-align: center;
    z-index: 20;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 2.5rem;
}

.hero-title span {
    display: block;
}

.title-white {
    color: white;
}

.title-blue {
    color: #60a5fa;
}

.title-pink {
    color: #ec4899;
}

.hero-subtitle {
    color: #d1d5db;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    margin-bottom: 2.5rem;
}

.btn-gradient {
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    transition: transform 0.3s;
    border-radius: 0.125rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    background-color: white;
    border: 1px solid white;
    cursor: pointer;
    color: transparent;
    background-image: linear-gradient(90deg, #ec4899 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: white;
    border-radius: 0.125rem;
    z-index: -1;
}

.btn-gradient:hover {
    transform: scale(1.05);
    color: black !important;
    background-color: white;
    background-image: linear-gradient(90deg, #ec4899 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: black;
    background-clip: text;
}

/* Hero Graphic */
.hero-graphic {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.target-container {
    position: relative;
    width: 340px;
    height: 340px;
    transform-style: preserve-3d;
    transform: rotateY(-10deg) rotateX(10deg);
}

/* Social Icons */
.social-icon {
    position: absolute;
    background: white;
    padding: 0.75rem;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 20;
}

.icon-1 {
    top: -1rem;
    right: 2.5rem;
    transform: rotate(12deg);
    animation: float-slow 5s ease-in-out infinite;
}

.icon-2 {
    bottom: 5rem;
    left: -1.5rem;
    transform: rotate(-12deg);
    animation: float-delayed 4.5s ease-in-out infinite;
}

.icon-3 {
    top: 50%;
    right: -2rem;
    transform: translateX(1rem) rotate(6deg);
    animation: float 4s ease-in-out infinite;
}

.icon-4 {
    top: 2rem;
    left: 0;
    transform: rotate(-6deg);
    animation: float-slow 5s ease-in-out infinite;
}

.icon-5 {
    bottom: 1rem;
    right: 5rem;
    transform: rotate(3deg);
    animation: float-delayed 4.5s ease-in-out infinite;
}

.icon-6 {
    top: 50%;
    left: 0;
    transform: translateX(-2.5rem) rotate(-12deg);
    animation: float 4s ease-in-out infinite;
}

.social-m {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #10b981;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-instagram {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(to top right, #fbbf24, #ec4899);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.social-linkedin {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #1d4ed8;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.social-yelp {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #dc2626;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: serif;
    font-weight: 700;
    font-size: 0.875rem;
}

.social-facebook {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #2563eb;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.social-search {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #60a5fa;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(6deg);
    }
    50% {
        transform: translateY(-10px) rotate(8deg);
    }
}

@keyframes float-slow {
    0%, 100% {
        transform: translateY(0px) rotate(-6deg);
    }
    50% {
        transform: translateY(-15px) rotate(-4deg);
    }
}

@keyframes float-delayed {
    0%, 100% {
        transform: translateY(0px) rotate(-12deg);
    }
    50% {
        transform: translateY(-8px) rotate(-14deg);
    }
}

/* Target */
.target {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 75%;
    height: 75%;
}

.target-outer {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(to bottom, #f3f4f6, #d1d5db);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 -10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    border: 4px solid #f3f4f6;
}

.target-red {
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: linear-gradient(to bottom right, #ef4444, #dc2626);
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
}

.target-white {
    width: 75%;
    height: 75%;
    border-radius: 50%;
    background: linear-gradient(to bottom, white, #f3f4f6);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #ef4444;
}

.target-red-center {
    width: 75%;
    height: 75%;
    border-radius: 50%;
    background: linear-gradient(to bottom right, #ef4444, #dc2626);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    position: relative;
}

.target-shine {
    width: 33%;
    height: 33%;
    background: white;
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(4px);
    position: absolute;
    top: 25%;
    left: 25%;
}

/* Arrow */
.arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12rem;
    height: 1rem;
    background: linear-gradient(to right, #facc15, #ca8a04);
    border-radius: 0 0.5rem 0.5rem 0;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.4);
    z-index: 30;
    display: flex;
    align-items: center;
    transform: translate(-50%, -50%) rotate(-45deg) translate(40px, -40px);
}

.arrow-body {
    width: 100%;
    height: 100%;
    position: relative;
}

.fletching {
    position: absolute;
    top: 50%;
    width: 1.5rem;
    height: 2rem;
    background-color: #3b82f6;
    border-radius: 0.125rem;
    transform: translateY(-50%) skewX(12deg);
}

.fletching-1 {
    left: -0.5rem;
}

.fletching-2 {
    left: -1.5rem;
}

/* Trust Bar */
.trust-bar {
    width: 100%;
    background: linear-gradient(90deg, #f472b6 0%, #3b82f6 100%);
    padding: 2rem 0;
    overflow: hidden;
}

.trust-scroll-wrapper {
    width: 100%;
    overflow: hidden;
}

.trust-container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 2rem;
    mix-blend-mode: multiply;
    opacity: 0.9;
    animation: scroll-logos 20s linear infinite;
    width: max-content;
}

.trust-container:hover {
    animation-play-state: paused;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%);
    }
}

.trust-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
    flex-shrink: 0;
    width: 200px;
    padding: 0 1.5rem;
}

.trust-logo:hover {
    transform: scale(1.05);
}

/* Tantrum Salon */
.tantrum-box {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #0e3a53;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.tantrum-inner {
    width: 100%;
    height: 100%;
    border: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tantrum-t {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 1.875rem;
}

.tantrum-text {
    font-family: 'Playfair Display', serif;
    color: #0e3a53;
    letter-spacing: 0.2em;
    font-size: 0.6rem;
    font-weight: 700;
    margin-top: 0.375rem;
    text-transform: uppercase;
}

.tantrum-salon {
    font-family: 'Inter', sans-serif;
    color: #0e3a53;
    letter-spacing: 0.1em;
    font-size: 0.4rem;
    font-weight: 500;
    text-transform: uppercase;
}

/* A Moment's Peace */
.moments-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.star {
    color: black;
    font-size: 0.5rem;
}

.star-2 {
    transform: translateY(-0.25rem);
}

.star-3 {
    transform: translateY(-0.5rem);
}

.star-4 {
    transform: translateY(-0.25rem);
}

.star-5 {
    transform: translateY(0);
}

.moments-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: black;
    line-height: 1;
    font-style: italic;
    white-space: nowrap;
}

.moments-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: black;
    margin-top: 0.25rem;
    text-transform: uppercase;
}

/* PRIME */
.prime-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.25rem;
    letter-spacing: 0.15em;
    color: black;
}

/* Spark Pro Global */
.spark-container {
    border: 2px solid #6b21a8;
    border-radius: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: white;
    position: relative;
}

.spark-content {
    display: flex;
    align-items: center;
    position: relative;
}

.spark-text {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #1e1b4b;
    letter-spacing: -0.05em;
}

.spark-icon {
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.spark-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.5rem;
    letter-spacing: 0.2em;
    color: #1e1b4b;
    text-transform: uppercase;
    margin-top: 0.125rem;
}

/* Headlines */
.headlines-container {
    position: relative;
    padding: 0.5rem 1.25rem;
    border: 2px solid black;
    border-radius: 50%;
    transform: rotate(-3deg);
    transition: all 0.3s;
}

.headlines-container:hover {
    transform: rotate(0deg);
}

.headlines-diamonds {
    position: absolute;
    top: -0.25rem;
    right: 1rem;
    display: flex;
    gap: 0.125rem;
}

.diamond {
    color: black;
    font-size: 0.4rem;
}

.headlines-text {
    font-family: 'Great Vibes', cursive;
    font-size: 1.875rem;
    color: black;
}

.headlines-subtitle {
    text-align: right;
    font-size: 0.4rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: black;
    text-transform: uppercase;
    margin-top: -0.25rem;
    margin-right: 0.5rem;
}

/* Problem Section */
.problem-section {
    position: relative;
    padding: 6rem 1.5rem;
    background-color: #050a14;
    overflow: hidden;
}

.problem-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
    mix-blend-mode: luminosity;
}

.problem-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #050a14, transparent, #050a14);
    pointer-events: none;
}

.problem-container {
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.problem-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.problem-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.problem-title span {
    display: block;
}

.problem-subtitle {
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 600;
    max-width: 42rem;
    margin: 0 auto;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-top: 1rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.problem-card {
    background-color: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(4px);
    border: 1px solid #1f2937;
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    height: 100%;
}

.problem-card:hover {
    background-color: rgba(31, 41, 55, 0.5);
    transform: translateY(-0.25rem);
}

.problem-icon {
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 1rem;
    background: linear-gradient(to bottom right, #3b82f6, #1d4ed8);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.2);
    transition: transform 0.3s;
}

.problem-card:hover .problem-icon {
    transform: scale(1.1);
}

.problem-icon svg {
    color: white;
    filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.25));
}

.problem-text {
    color: white;
    font-weight: 500;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.6;
    max-width: 20rem;
}

.btn-improve {
    padding: 0.625rem 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    transition: transform 0.3s;
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    background-color: white;
    border: 1px solid white;
    cursor: pointer;
    margin-top: auto;
    color: transparent;
    background-image: linear-gradient(90deg, #ec4899 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.btn-improve::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: white;
    border-radius: 0.375rem;
    z-index: -1;
}

.btn-improve:hover {
    transform: scale(1.05);
    color: black !important;
    background-color: white;
    background-image: linear-gradient(90deg, #ec4899 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: black;
    background-clip: text;
}

/* Solution Section */
.solution-section {
    padding: 6rem 1.5rem;
    background-color: #0f1623;
    position: relative;
    overflow: hidden;
}

.solution-blob {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(30, 58, 138, 0.1), rgba(219, 39, 119, 0.1));
    pointer-events: none;
}

.solution-container {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 10;
    flex-direction: column-reverse;
}

.solution-content {
    width: 100%;
}

.solution-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ec4899 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    letter-spacing: -0.025em;
    margin-bottom: 2.5rem;
}

.solution-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.solution-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    color: #d1d5db;
    font-weight: 500;
    font-size: 1.125rem;
}

.solution-bullet {
    margin-right: 1rem;
    margin-top: 0.5rem;
    height: 0.625rem;
    width: 0.625rem;
    background-color: #ec4899;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

.solution-item:hover .solution-bullet {
    transform: scale(1.25);
}

.solution-item span:last-child {
    opacity: 0.9;
}

.solution-image-wrapper {
    width: 100%;
}

.solution-image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.7s;
}

.solution-image-container:hover {
    transform: scale(1.05);
}

.solution-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.solution-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 22, 35, 0.9), transparent, transparent);
    opacity: 0.8;
}

.solution-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-check {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 50%;
    background-color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.badge-text {
    flex: 1;
}

.badge-title {
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

.badge-subtitle {
    color: #d1d5db;
    font-size: 0.75rem;
}

/* Bottom CTA */
.bottom-cta {
    padding: 6rem 1.5rem;
    background-color: white;
    text-align: center;
}

.cta-container {
    max-width: 56rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.cta-title span {
    display: block;
}

.cta-subtitle {
    color: #1f2937;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    max-width: 36rem;
    margin: 0 auto 3rem;
}

.btn-outline {
    padding: 1rem 2.5rem;
    background-color: white;
    border: 2px solid #ec4899;
    color: #db2777;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    transition: all 0.3s;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.btn-outline:hover {
    background-color: #fdf2f8;
}

/* Footer */
.footer {
    background-color: black;
    padding: 2rem 1.5rem;
    border-top: 1px solid #111827;
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
}

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

.footer-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #a78bfa;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-subtitle {
    font-size: 0.625rem;
    color: #6b7280;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    font-size: 0.875rem;
    transition: color 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.footer-contact:hover {
    color: white;
}

.footer-contact svg {
    width: 1rem;
    height: 1rem;
}

/* Testimonial Section */
.testimonial-section {
    background: linear-gradient(90deg, #ec4899 0%, #3b82f6 100%);
    padding: 4rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 80rem;
    width: 100%;
}

.testimonial-arrow {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    opacity: 0.8;
    flex-shrink: 0;
}

.testimonial-arrow:hover {
    transform: scale(1.2);
    opacity: 1;
}

.testimonial-card {
    background: white;
    border-radius: 0.25rem;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 64rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
}

.testimonial-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.testimonial-image-wrapper {
    width: 150px;
    height: 150px;
    overflow: hidden;
}

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

.testimonial-author {
    text-align: center;
}

.author-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(90deg, #ec4899 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.author-title {
    color: #1f2937;
    font-size: 1rem;
    font-weight: 400;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    flex: 1;
}

.quote-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.quote-icon {
    margin-bottom: 0.5rem;
}

.quote-img {
    width: 5.4rem;
    height: 5.4rem;
    object-fit: contain;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
}

.testimonial-stars .star {
    color: #fbbf24;
    font-size: 1.5rem;
}

.testimonial-text {
    color: #1f2937;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
    max-width: 40rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .header {
        padding: 1rem 3rem;
    }

    .header-left {
        margin-bottom: 0;
    }

    .header-title {
        font-size: 1rem;
    }

    .header-subtitle {
        font-size: 0.75rem;
    }

    .header-cta {
        font-size: 0.875rem;
    }

    .hero {
        padding: 8rem 3rem;
    }

    .hero-container {
        flex-wrap: nowrap;
    }

    .hero-content {
        width: 50%;
        text-align: left;
    }

    .hero-title {
        font-size: 3.75rem;
    }

    .hero-graphic {
        width: 50%;
    }

    .target-container {
        width: 450px;
        height: 450px;
    }

    .problem-title {
        font-size: 3rem;
    }

    .problem-subtitle {
        font-size: 1rem;
    }

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

    .solution-container {
        flex-direction: row;
    }

    .solution-content {
        width: 50%;
    }

    .solution-title {
        font-size: 3.75rem;
    }

    .solution-item {
        font-size: 1.25rem;
    }

    .solution-image-wrapper {
        width: 50%;
    }

    .solution-image {
        height: 600px;
    }

    .cta-title {
        font-size: 3rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .testimonial-card {
        flex-direction: row;
        align-items: center;
        padding: 4rem;
        gap: 4rem;
    }

    .testimonial-profile {
        align-items: flex-start;
        text-align: left;
        min-width: 200px;
    }

    .testimonial-author {
        text-align: left;
    }
    
    .quote-icon-wrapper {
        height: 100%;
        display: flex;
        align-items: center;
    }

    .testimonial-content {
        padding-left: 0;
        border-left: none;
        align-items: center;
    }

    .testimonial-arrow svg {
        width: 48px;
        height: 48px;
    }
}

@media (min-width: 1024px) {
    .header {
        padding: 1rem 6rem;
    }

    .hero {
        padding: 8rem 6rem;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .problem-section {
        padding: 6rem 6rem;
    }

    .solution-section {
        padding: 6rem 6rem;
    }

    .bottom-cta {
        padding: 6rem 6rem;
    }

    .footer {
        padding: 2rem 6rem;
    }

}

