/* ThriveCity Studio - Index Page Styles */

body {
    overflow-x: hidden;
}

/* ===== HERO SECTION ===== */
.hero {
    background-color: #ffffff;
    padding: 8rem 0 10rem;
    overflow: hidden;
    position: relative;
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 69, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

/* Hero Content Side */
.hero-tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1.25rem;
    background: #F5F3FF;
    border: 1px solid #DDD6FE;
    border-radius: 100px;
    color: #5B21B6;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.pulse-icon {
    width: 8px;
    height: 8px;
    background: #7C3AED;
    border-radius: 50%;
    position: relative;
}

.pulse-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: #7C3AED;
    border-radius: 50%;
    opacity: 0.4;
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-main-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: #111827;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.highlight-text {
    background: linear-gradient(135deg, #7C3AED 0%, #C026D3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-lead-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #7C3AED;
    color: #ffffff;
    padding: 1.125rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 15px -3px rgba(124, 58, 237, 0.3);
}

.btn-hero-primary:hover {
    background: #6D28D9;
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(124, 58, 237, 0.4);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    padding: 1.125rem 2.5rem;
    background: #ffffff;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    color: #374151;
    font-weight: 700;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    border-color: #7C3AED;
    color: #7C3AED;
    background: #F5F3FF;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.proof-avatars {
    display: flex;
    align-items: center;
}

.proof-avatars img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    margin-left: -15px;
    object-fit: cover;
}

.proof-avatars img:first-child { margin-left: 0; }

.avatar-plus {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #111827;
    color: #ffffff;
    border: 3px solid #ffffff;
    margin-left: -15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
}

.proof-content .stars {
    color: #F59E0B;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.proof-content p {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6B7280;
}

/* Hero Visual Side */
.hero-visual-side {
    position: relative;
    padding: 2rem;
}

.visual-composition {
    position: relative;
    z-index: 5;
}

.main-image-wrapper {
    position: relative;
    background: #ffffff;
    border-radius: 3rem;
    padding: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.main-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.image-inner-glow {
    position: absolute;
    inset: 1rem;
    border-radius: 2.5rem;
    box-shadow: inset 0 0 40px rgba(124, 58, 237, 0.1);
    z-index: 1;
    pointer-events: none;
}

.main-hero-img {
    width: 100%;
    height: auto;
    border-radius: 2.5rem;
    display: block;
    position: relative;
    z-index: 0;
}

/* Floating Cards */
.floating-info-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 1.25rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 10;
}

.info-card-1 {
    top: -10%;
    right: -5%;
}

.info-card-2 {
    bottom: 10%;
    left: -15%;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: #FEF3C7;
    color: #D97706;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-purple {
    background: #F5F3FF;
    color: #7C3AED;
}

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

.info-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value {
    font-size: 1rem;
    font-weight: 800;
    color: #111827;
}

/* Decorative Elements */
.decorative-blob {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(192, 38, 211, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(40px);
    z-index: -1;
}

.decorative-ring {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 150px;
    height: 150px;
    border: 20px solid rgba(124, 58, 237, 0.05);
    border-radius: 50%;
    z-index: -1;
}

/* Animations */
@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

.floating-y {
    animation: floatingY 3s ease-in-out infinite;
}

.floating-y-delayed {
    animation: floatingY 3s ease-in-out infinite 1.5s;
}

@keyframes floatingY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out 0.2s forwards;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero { padding: 6rem 0 4rem; }
    .hero-layout { grid-template-columns: 1fr; gap: 0; }
    .hero-visual-side { display: none; }
    .hero-content-side { text-align: center; }
    .hero-tag-badge { margin-inline: auto; }
    .hero-main-title { font-size: 2.75rem; margin-inline: auto; }
    .hero-lead-text { margin-inline: auto; }
    .hero-cta-group { flex-direction: column; align-items: center; }
    .btn-hero-primary, .btn-hero-outline { width: 100%; max-width: 320px; justify-content: center; }
    .hero-social-proof { flex-direction: column; gap: 1rem; align-items: center; }
}

/* ===== TRUSTED BRANDS SECTION ===== */
.trusted-brands {
    background: linear-gradient(135deg, var(--secondary-purple) 0%, #b366ff 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.trusted-brands-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.trusted-brands-content {
    text-align: center;
}

.trusted-brands-title {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
}

.brands-scroll-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.brands-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
    white-space: nowrap;
    animation: scroll-brands 30s linear infinite;
    width: max-content;
}

.brand-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
    min-width: 120px;
}

.brand-logo:hover {
    opacity: 1;
}

@keyframes scroll-brands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-text {
    color: var(--white);
    font-weight: 600;
    font-family: "Space Grotesk", sans-serif;
    display: block;
}

.brand-text.celeste {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
}

.brand-text.gourmet {
    font-size: 1.25rem;
    font-weight: 400;
}

.brand-text.synco {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.brand-text.urban {
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.brand-subtitle {
    color: #ffd700;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.25rem;
    font-family: "Montserrat", sans-serif;
}

/* What We Create Section */
.create-section {
    padding: 100px 0;
    background: #ffffff;
}

.create-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.create-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.create-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark-black);
}

.create-description {
    font-size: 1.125rem;
    color: var(--gray-medium);
    line-height: 1.6;
}

.create-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.create-card {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #F3F4F6;
}

.create-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: var(--primary-purple);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    color: var(--primary-purple);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
}

.create-card:hover .card-icon {
    background: var(--primary-purple);
    color: white;
    transform: rotate(10deg);
}

.create-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-black);
}

.create-card p {
    font-size: 0.9375rem;
    color: var(--gray-medium);
    line-height: 1.5;
}

/* Founder's Bundle Section */
.bundle-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-purple), #7C3AED);
    color: white;
    overflow: hidden;
}

.bundle-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.bundle-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.bundle-image-composition {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.bundle-glow-circle {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 60%);
    border-radius: 50%;
    filter: blur(20px);
}

.bundle-main-image {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.3));
    transition: transform 0.4s ease;
}

.bundle-image-composition:hover .bundle-main-image {
    transform: scale(1.05);
}

.bundle-accent-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite;
    z-index: 5;
}

@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 60% 40% 30% 70% / 70% 50% 50% 30%; }
}

.btn-bundle-order {
    display: inline-block;
    background: #FFD700;
    color: #111827;
    padding: 1.125rem 2.5rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.0625rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-bundle-order:hover {
    background: #ffffff;
    color: var(--primary-purple);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

@media (min-width: 1024px) {
    .bundle-content {
        grid-template-columns: 1fr 1fr;
    }
}

.bundle-visual {
    position: relative;
}

.bundle-showcase {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    perspective: 1200px;
}

.showcase-image {
    position: absolute;
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 1.5rem;
    filter: drop-shadow(0 25px 40px rgba(0,0,0,0.3));
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.image-back {
    z-index: 1;
    transform: rotateZ(-10deg) translateX(-20%) translateY(5%) scale(0.9);
}

.image-front {
    z-index: 10;
    transform: rotateZ(8deg) translateX(20%) translateY(-5%);
}

.bundle-showcase:hover .image-back {
    transform: rotateZ(-5deg) translateX(-5%) translateY(0) scale(1);
}

.bundle-showcase:hover .image-front {
    transform: rotateZ(3deg) translateX(5%) translateY(0) scale(1);
}

.showcase-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 55%);
    transform: scale(1.5);
    z-index: 0;
}

.bundle-badge {
    position: absolute;
    top: 10%;
    right: 5%;
    z-index: 20;
    background: #FFD700;
    color: var(--dark-black);
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    font-weight: 800;
    font-size: 0.875rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.bundle-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.bundle-description {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.bundle-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.bundle-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
}

.btn-primary.white-bg {
    background: white;
    color: var(--primary-purple);
}

.btn-primary.white-bg:hover {
    background: #F3F4F6;
    transform: translateY(-3px);
}

/* Visibility Section */
.visibility-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.visibility-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.visibility-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .visibility-content {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.visibility-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.visibility-description {
    font-size: 1.125rem;
    color: var(--gray-medium);
    line-height: 1.6;
    margin-bottom: 3rem;
}

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

.visibility-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.visibility-item:hover {
    background: #F3F0FF;
    transform: translateY(-5px);
}

.item-number {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.75rem;
}

.visibility-item p {
    font-weight: 700;
    color: var(--dark-black);
    font-size: 1rem;
    line-height: 1.4;
}

.visibility-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.visibility-image-wrapper {
    position: relative;
    background: #ffffff;
    border-radius: 2rem;
    padding: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.visibility-image-wrapper:hover {
    transform: scale(1.05) rotate(2deg);
}

.visibility-image-wrapper img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 1.5rem;
    display: block;
}

.image-bg-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(139, 69, 255, 0.1) 0%, transparent 70%);
    opacity: 0.8;
    border-radius: 2rem;
    z-index: -1;
}

@media (max-width: 768px) {
    .visibility-visual { display: none; }
}

/* Services Section */
.services-main {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

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

.services-header {
    max-width: 600px;
    margin: 0 auto;
}

.services-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 20px;
}

.services-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-family: "Space Grotesk", sans-serif;
}

.services-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Established Section */
.established-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.established-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.established-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .established-content {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

.established-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Prevents child elements from overflowing */
}

.established-composition {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 450px;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.composition-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 69, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
}

.composition-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: rgba(139, 69, 255, 0.05);
    border-radius: 50%;
    transform: translateZ(-50px);
}

.composition-shape-2 {
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 80px;
    height: 80px;
    border: 10px solid rgba(139, 69, 255, 0.08);
    border-radius: 50%;
    transform: translateZ(50px);
}

.composition-card {
    position: absolute;
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

.composition-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-card {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    z-index: 10;
}

.accent-card {
    width: 40%;
    height: 40%;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    border: 5px solid white;
    z-index: 20;
    transform: translate(10%, 10%);
}

.composition-tag {
    position: absolute;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.5s ease;
}

.tag-pro {
    top: 5%;
    left: -5%;
    color: var(--primary-purple);
}

.tag-choice {
    bottom: 20%;
    right: -10%;
    color: #10B981;
}

.established-composition:hover .main-card {
    transform: translateZ(20px) scale(1.02);
}
.established-composition:hover .accent-card {
    transform: translate(10%, 10%) translateZ(40px) scale(1.05);
}
.established-composition:hover .tag-pro {
    transform: translateZ(60px);
}
.established-composition:hover .tag-choice {
    transform: translateZ(60px);
}

@media (max-width: 768px) {
    .established-visual { min-height: auto; padding: 2rem 0; }
    .established-composition { max-width: 320px; margin: 0 auto; height: 320px; }
    .tag-pro { left: 0; }
    .tag-choice { right: 0; }
}

.established-text {
    position: relative;
}

.label-pill {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(139, 69, 255, 0.08);
    color: var(--primary-purple);
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.established-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark-black);
}

.text-purple {
    color: var(--primary-purple);
}

.established-description {
    font-size: 1.125rem;
    color: var(--gray-medium);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.established-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.established-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    background: #F3F0FF;
    color: var(--primary-purple);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--dark-black);
}

.feature-content p {
    font-size: 0.9375rem;
    color: var(--gray-medium);
    line-height: 1.5;
}

.established-footer {
    padding-top: 2rem;
    border-top: 1px solid #F3F4F6;
    font-size: 1rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

.established-footer strong {
    color: var(--dark-black);
}

/* Brand Experiences Section */
.brand-experiences-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.brand-experiences-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.brand-experiences-image {
    display: flex;
    justify-content: center;
    align-items: center;
    order: 2;
}

.brand-experiences-text {
    order: 1;
}

.tote-showcase {
    position: relative;
    width: 300px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tote-showcase::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    background: linear-gradient(135deg, 
        rgba(255, 20, 147, 0.4), 
        rgba(138, 43, 226, 0.4), 
        rgba(75, 0, 130, 0.4),
        rgba(255, 20, 147, 0.4));
    border-radius: 35px;
    filter: blur(25px);
    z-index: -1;
    animation: tote-glow 4s ease-in-out infinite alternate;
}

.tote-showcase .tote-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 
        0 25px 50px rgba(255, 20, 147, 0.3),
        0 15px 25px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.tote-showcase:hover .tote-mockup img {
    transform: translateY(-8px) scale(1.03) rotate(2deg);
    box-shadow: 
        0 35px 70px rgba(255, 20, 147, 0.4),
        0 20px 35px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

@keyframes tote-glow {
    0% {
        opacity: 0.6;
        transform: scale(0.9) rotate(-1deg);
    }
    100% {
        opacity: 1;
        transform: scale(1.1) rotate(1deg);
    }
}

/* Collaborate Section */
.collaborate-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-purple), #7C3AED);
    color: white;
}

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

.collaborate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.collaborate-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collaborate-visual::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: linear-gradient(60deg, 
        rgba(0, 255, 255, 0.3), 
        rgba(255, 0, 255, 0.3), 
        rgba(255, 255, 0, 0.3),
        rgba(0, 255, 255, 0.3));
    border-radius: 40px;
    filter: blur(30px);
    z-index: -1;
    animation: collaborate-glow 5s ease-in-out infinite alternate;
}

.collaborate-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 
        0 30px 60px rgba(0, 255, 255, 0.3),
        0 20px 30px rgba(0, 0, 0, 0.2),
        inset 0 3px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.collaborate-visual:hover img {
    transform: translateY(-12px) scale(1.05) rotate(-1deg);
    box-shadow: 
        0 40px 80px rgba(0, 255, 255, 0.4),
        0 25px 40px rgba(0, 0, 0, 0.3),
        inset 0 3px 0 rgba(255, 255, 255, 0.2);
}

@keyframes collaborate-glow {
    0% {
        opacity: 0.5;
        transform: scale(0.85) rotate(-2deg);
    }
    100% {
        opacity: 1;
        transform: scale(1.15) rotate(2deg);
    }
}

.collaborate-text .section-title {
    color: white;
}

.collaborate-text .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.collaborate-text .feature-text {
    color: rgba(255, 255, 255, 0.9);
}

.collaborate-text .cta-button {
    background: white;
    color: var(--primary-purple);
}

.collaborate-text .cta-button:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.why-choose-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-choose-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-choose-us-text {
    padding-right: 40px;
}

.why-choose-us-text .section-label {
    color: #6366f1;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.why-choose-us-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 30px;
}

.why-choose-us-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.message-us-button {
    background-color: #6366f1;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.message-us-button:hover {
    background-color: #5855eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.why-choose-us-section .feature-box {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(57, 4, 102, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid rgba(57, 4, 102, 0.05);
    position: relative;
    overflow: hidden;
}

.why-choose-us-section .feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #390466, #7C3AED, #390466);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-choose-us-section .feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 50px rgba(57, 4, 102, 0.2),
        0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(57, 4, 102, 0.1);
}

.why-choose-us-section .feature-box:hover::before {
    opacity: 1;
}

.why-choose-us-section .feature-icon-container {
    margin-bottom: 25px;
    position: relative;
}

.why-choose-us-section .feature-icon-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(57, 4, 102, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.why-choose-us-section .feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    background: #390466;
    box-shadow: 
        0 8px 25px rgba(57, 4, 102, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.why-choose-us-section .feature-icon:hover {
    transform: scale(1.1);
    box-shadow: 
        0 12px 35px rgba(57, 4, 102, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.why-choose-us-section .feature-icon svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.why-choose-us-section .feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.why-choose-us-section .feature-box:hover .feature-title {
    color: #390466;
}

.why-choose-us-section .feature-description {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-purple), #7C3AED);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.testimonials-header {
    text-align: left;
    margin-bottom: 0;
}

.testimonials-header .section-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.testimonials-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0;
    line-height: 1.6;
}

.testimonials-carousel {
    position: relative;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 300%;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 50px;
    width: 33.333%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    color: #333;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
}

.testimonial-card.active {
    transform: scale(1);
}

.quote-icon {
    color: #667eea;
    margin-bottom: 25px;
}

.quote-icon svg {
    width: 35px;
    height: 35px;
    filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.3));
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 35px;
    font-style: italic;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.author-title {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

/* Carousel Navigation */
.carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.carousel-dots {
    display: flex;
    gap: 12px;
}

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

.dot.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #ffffff;
}

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

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark-black);
}

.faq-subtitle {
    font-size: 1.125rem;
    color: var(--gray-medium);
    line-height: 1.6;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #F3F4F6;
}

.faq-item:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--dark-black);
    font-size: 1.125rem;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 2rem;
    color: var(--gray-medium);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2rem 2rem;
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.faq-answer p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.benefits-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.benefits-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark-black);
}

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

.benefit-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #F3F4F6;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 69, 255, 0.1);
    border-color: var(--primary-purple);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: #F3F0FF;
    color: var(--primary-purple);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--primary-purple);
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--dark-black);
}

.benefit-card p {
    font-size: 1.0625rem;
    color: var(--gray-medium);
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-purple), #7C3AED);
    color: white;
    position: relative;
    overflow: hidden;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.mission-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .mission-content-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.mission-text-side {
    position: relative;
}

.mission-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.mission-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.mission-quote {
    font-size: 1.125rem;
    font-style: italic;
    padding-left: 1.5rem;
    border-left: 4px solid #FFD700;
    color: #FFD700;
    font-weight: 600;
}

.mission-cta-card {
    position: relative;
}

.cta-card-inner {
    background: white;
    padding: 4rem 3rem;
    border-radius: 3rem;
    color: var(--dark-black);
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

.cta-card-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.cta-card-text {
    font-size: 1.125rem;
    color: var(--gray-medium);
    margin-bottom: 2.5rem;
}

.btn-primary.full-width {
    width: 100%;
    justify-content: center;
    padding: 1.25rem;
    font-size: 1.125rem;
}

.cta-card-footer {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-dark);
}

.cta-card-footer svg {
    color: #10B981;
}

/* Mission section responsive tweaks */
@media (max-width: 768px) {
    .cta-card-inner {
        padding: 3rem 1.5rem;
    }
}

/* ===== TRANSFORM YOUR BRAND SECTION ===== */
.transform-brand-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #6c5ce7 0%, #5a4fcf 50%, #4834d4 100%);
    position: relative;
    overflow: hidden;
}

.transform-brand-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="20" cy="80" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.transform-brand-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.transform-brand-content {
    text-align: center;
    margin-bottom: 60px;
}

.transform-brand-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.transform-brand-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.transform-brand-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.transform-brand-btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    justify-content: center;
    border: 2px solid transparent;
}

.transform-brand-btn.primary {
    background: white;
    color: #6c5ce7;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.transform-brand-btn.primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.transform-brand-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.transform-brand-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.transform-brand-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.transform-brand-feature {
    text-align: center;
    color: white;
}

.transform-brand-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.transform-brand-feature-icon::before {
    content: '✓';
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.transform-brand-feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.transform-brand-feature p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== RESPONSIVE STYLES ===== */

/* Desktop Styles */
@media (min-width: 769px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .hero-heading {
        font-size: 3.5rem;
    }
    
    .cta-buttons {
        flex-direction: row;
    }
    
    .btn-primary,
    .btn-secondary {
        width: auto;
    }
}

@media (min-width: 1024px) {
    .hero-heading {
        font-size: 4rem;
    }
    
    .visual-container {
        padding: 3rem;
        min-height: 400px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Mobile Hero Layout */
    .hero {
        padding: 2rem 0 3rem;
    }
    
    .hero-grid {
        gap: 2rem;
    }
    
    .hero-content {
        order: 2;
        text-align: center;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .hero-heading {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .feature-tags {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    /* Mobile Visual Adjustments */
    .visual-container {
        padding: 1.5rem;
        min-height: 250px;
    }
    
    .product-mockups {
        gap: 1rem;
    }
    
    .hero-image {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    .product-card:last-child {
        margin-left: 1rem;
    }
    
    .product-content {
        height: 6rem;
    }
    
    /* Mobile Trusted Brands */
    .trusted-brands {
        padding: 3rem 0;
    }
    
    .trusted-brands-title {
        font-size: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .brands-grid {
        gap: 3rem;
    }
    
    .brand-logo {
        min-width: 100px;
    }
    
    .brand-text.celeste,
    .brand-text.urban {
        font-size: 1.25rem;
    }
    
    .brand-text.gourmet,
    .brand-text.synco {
        font-size: 1rem;
    }
    
    /* Services Responsive Design */
    .services-main {
        padding: 60px 0;
    }
    
    .services-title {
        font-size: 36px;
    }
    
    .custom-design-section,
    .brand-experiences-section,
    .collaborate-section {
        padding: 60px 0;
    }
    
    .custom-design-content,
    .brand-experiences-content,
    .collaborate-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .brand-experiences-image {
        order: 1;
    }
    
    .brand-experiences-text {
        order: 2;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .product-showcase,
    .tote-showcase {
        width: 250px;
        height: 320px;
    }
    
    /* Adjust glowing effects for mobile */
    .product-showcase::before,
    .tote-showcase::before,
    .collaborate-visual::before {
        filter: blur(15px);
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
    }
    
    .product-showcase:hover img,
    .tote-showcase:hover .tote-mockup img,
    .collaborate-visual:hover img {
        transform: translateY(-5px) scale(1.01);
    }
    
    .collaborate-visual {
        height: 300px;
    }
    
    /* Why Choose Us Responsive */
    .why-choose-us-section {
        padding: 60px 0;
    }
    
    .why-choose-us-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .why-choose-us-text {
        padding-right: 0;
    }
    
    .why-choose-us-title {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .why-choose-us-section .feature-box {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .why-choose-us-section .feature-box:hover {
        transform: translateY(-5px);
    }
    
    .why-choose-us-section .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .why-choose-us-section .feature-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .why-choose-us-section .feature-icon-container::before {
        width: 70px;
        height: 70px;
    }
    
    .why-choose-us-section .feature-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .why-choose-us-section .feature-description {
        font-size: 14px;
    }
    
    /* Testimonials Responsive */
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-container {
        padding: 0 15px;
    }
    
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .testimonials-header {
        text-align: center;
        margin-bottom: 0;
    }
    
    .testimonials-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .testimonials-subtitle {
        font-size: 16px;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 10px;
    }
    
    .testimonials-carousel {
        margin: 0;
        overflow: hidden;
        width: 100%;
    }
    
    .carousel-wrapper {
        margin: 0 5px;
        overflow: hidden;
        width: calc(100% - 10px);
    }
    
    .testimonials-track {
        width: 300%;
        max-width: none;
    }
    
    .testimonial-card {
        padding: 20px 15px;
        margin: 0;
        border-radius: 15px;
        width: 33.333%;
        min-width: 0;
        box-sizing: border-box;
    }
    
    .testimonial-text {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .quote-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .avatar-placeholder {
        font-size: 16px;
    }
    
    .author-name {
        font-size: 16px;
    }
    
    .author-title {
        font-size: 14px;
    }
    
    .carousel-navigation {
        margin-top: 30px;
        gap: 20px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .carousel-dots {
        margin-top: 0;
    }
    
    .dot {
        width: 10px;
        height: 10px;
        margin: 0 6px;
    }
    
    /* FAQ Responsive Design */
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
        max-height: 250px;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
    }
    
    .faq-icon::before {
        font-size: 16px;
    }
    
    /* Transform Your Brand Responsive */
    .transform-brand-section {
        padding: 80px 0;
    }
    
    .transform-brand-content h2 {
        font-size: 2.2rem;
    }
    
    .transform-brand-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 60px;
    }
    
    .transform-brand-btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 30px;
    }
    
    .transform-brand-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .transform-brand-content {
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .why-choose-us-title {
        font-size: 28px;
    }
    
    .testimonials-title {
        font-size: 28px;
    }
    
    .why-choose-us-section .feature-box {
        padding: 20px;
    }
    
    .features-grid {
        gap: 10px;
    }
    
    .why-choose-us-section .feature-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .why-choose-us-section .feature-description {
        font-size: 13px;
    }
    
    .why-choose-us-section .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .testimonials-carousel {
        margin: 0 5px;
    }
    
    .testimonial-card {
        padding: 20px 15px;
        margin: 0 3px;
    }
    
    .testimonial-text {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .author-name {
        font-size: 14px;
    }
    
    .author-title {
        font-size: 12px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
    
    .faq-section .container {
        padding: 0 15px;
    }
    
    .faq-header h2 {
        font-size: 1.8rem;
    }
    
    .faq-header p {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 18px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 18px 18px 18px;
    }
    
    .transform-brand-section {
        padding: 60px 0;
    }
    
    .transform-brand-section .container {
        padding: 0 15px;
    }
    
    .transform-brand-content h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .transform-brand-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
        margin-bottom: 25px;
    }
    
    .transform-brand-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        min-width: 160px;
    }
    
    .transform-brand-feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .transform-brand-feature-icon::before {
        font-size: 20px;
    }
    
    .transform-brand-feature h3 {
        font-size: 1.1rem;
    }
    
    .transform-brand-feature p {
        font-size: 0.9rem;
    }
}