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

:root {
    /* Color Palette */
    --deep-indigo: #1a1b3a;
    --cosmic-violet: #2d1b69;
    --deeper-violet: #4a3c98;
    --sunrise-coral: #ff6b6b;
    --warm-coral: #ff8e8e;
    --emerald-accent: #00d4aa;
    --soft-emerald: #4ecdc4;
    --celestial-blue: #4dabf7;
    --mystic-purple: #9c88ff;
    --golden-light: #ffd93d;
    --soft-white: #f8f9fa;
    --warm-gray: #495057;
    --dark-gray: #343a40;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-max-width: 1200px;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-breath: all 4s ease-in-out;
    
    /* Responsive breakpoints */
    --mobile-small: 360px;
    --mobile-large: 600px;
    --tablet: 768px;
    --tablet-large: 1024px;
    --desktop: 1200px;
    --desktop-large: 1400px;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--soft-white);
    background: linear-gradient(135deg, var(--deep-indigo) 0%, var(--cosmic-violet) 100%);
    overflow-x: hidden;
    min-width: 320px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
    width: 100%;
}

/* Mobile-first container adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 0.5rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 2rem 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.mandala-container {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.mandala {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: breathe 6s ease-in-out infinite;
}

.mandala-1 {
    width: 400px;
    height: 400px;
    top: 20%;
    left: 10%;
    background: radial-gradient(circle, var(--emerald-accent) 0%, transparent 70%);
    animation-delay: 0s;
}

.mandala-2 {
    width: 600px;
    height: 600px;
    top: 40%;
    right: 5%;
    background: radial-gradient(circle, var(--mystic-purple) 0%, transparent 70%);
    animation-delay: 2s;
}

.mandala-3 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: 60%;
    background: radial-gradient(circle, var(--sunrise-coral) 0%, transparent 70%);
    animation-delay: 4s;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        var(--deep-indigo) 0%,
        var(--cosmic-violet) 30%,
        var(--deeper-violet) 60%,
        var(--deep-indigo) 100%
    );
    opacity: 0.8;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    width: 100%;
}

.hero-content {
    flex: 1 1 400px;
    min-width: 280px;
    max-width: 500px;
    z-index: 2;
    text-align: center;
}

.hero-app-image {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    max-width: 400px;
    z-index: 2;
    filter: drop-shadow(0 8px 40px rgba(0,0,0,0.45));
    animation: fadeInUp 1.5s 0.3s both;
}

.hero-app-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.hero-app-image img:hover {
    transform: scale(1.04);
}

.app-store-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.store-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.store-button:hover::before {
    left: 100%;
}

.store-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.2);
    border-color: rgba(0, 212, 170, 0.3);
}

.store-icon {
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.store-label {
    font-size: 0.7rem;
    color: var(--emerald-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-name {
    font-size: 0.9rem;
    color: var(--soft-white);
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--soft-white), var(--emerald-accent), var(--mystic-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
}

.title-line {
    display: block;
    animation: slideInLeft 1s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 3rem;
    color: var(--soft-emerald);
    animation: fadeIn 1s ease-out 0.8s both;
    line-height: 1.4;
    word-wrap: break-word;
}



.cta-button {
    position: relative;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-spring);
    overflow: hidden;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background: linear-gradient(45deg, var(--emerald-accent), var(--soft-emerald));
    color: var(--deep-indigo);
    animation: glow 2s ease-in-out infinite alternate;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.3);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover .button-glow {
    left: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 12px;
    height: 12px;
    border: solid var(--emerald-accent);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.scroll-indicator span {
    font-size: 0.9rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .section-title {
        font-size: clamp(1.6rem, 3.5vw, 2.5rem);
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: clamp(1.4rem, 3vw, 2rem);
        margin-bottom: 1.5rem;
    }
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.8;
    color: var(--soft-emerald);
}

.highlight {
    background: linear-gradient(45deg, var(--sunrise-coral), var(--warm-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Problem Statement */
.problem-statement {
    background: linear-gradient(135deg, var(--cosmic-violet) 0%, var(--deeper-violet) 100%);
    position: relative;
    overflow: hidden;
}

.problem-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    animation: drift 20s linear infinite;
}

/* Promises Section */
.promises {
    background: linear-gradient(135deg, var(--deeper-violet) 0%, var(--cosmic-violet) 100%);
}

.promises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.promise-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.promise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s;
}

.promise-card:hover::before {
    transform: translateX(100%);
}

.promise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.promise-icon {
    position: relative;
    margin-bottom: 2rem;
    display: inline-block;
}

.icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse 3s ease-in-out infinite;
}

.promise-1 {
    background: radial-gradient(circle, var(--emerald-accent) 0%, transparent 70%);
}

.promise-2 {
    background: radial-gradient(circle, var(--mystic-purple) 0%, transparent 70%);
}

.promise-3 {
    background: radial-gradient(circle, var(--sunrise-coral) 0%, transparent 70%);
}

.promise-icon span {
    font-size: 3rem;
    position: relative;
    z-index: 2;
}

.promise-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--soft-white);
}

.promise-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Meditation Styles */
.meditation-styles {
    background: var(--deep-indigo);
    position: relative;
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.style-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-spring);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.style-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--emerald-accent), var(--mystic-purple));
    opacity: 0;
    transition: opacity 0.3s;
}

.style-item:hover::before {
    opacity: 0.1;
}

.style-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 212, 170, 0.2);
}

.style-icon {
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.style-item:hover .style-icon {
    transform: scale(1.1);
}

.style-text {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    line-height: 1.3;
}

/* Social Proof */
.social-proof {
    background: var(--deep-indigo);
    position: relative;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 4rem;
    color: var(--emerald-accent);
    font-family: var(--font-heading);
    opacity: 0.3;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial cite {
    font-size: 0.9rem;
    color: var(--emerald-accent);
    font-weight: 500;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--cosmic-violet) 0%, var(--deep-indigo) 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cosmic-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(0,212,170,0.3)"/><circle cx="60" cy="80" r="1" fill="rgba(156,136,255,0.2)"/></svg>');
    background-size: 200px 200px;
    animation: drift 30s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--soft-white), var(--emerald-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.google-form-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.google-form-container iframe {
    border: none;
    border-radius: 20px;
    background: transparent;
    width: 100%;
    height: 689px;
    min-height: 500px;
}

/* Animations */
@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
    }
    100% {
        box-shadow: 0 0 30px rgba(0, 212, 170, 0.5);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes drift {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100px);
    }
}



/* Responsive Design */

/* Large Desktop */
@media (min-width: 1400px) {
    .hero-content-wrapper {
        max-width: 1400px;
        gap: 5rem;
    }
    
    .hero-app-image img {
        max-width: 400px;
    }
    
    .container {
        max-width: 1400px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .hero-content-wrapper {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 4vw, 3.2rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    }
    
    .hero-app-image img {
        max-width: 380px;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    :root {
        --section-padding: 100px 0;
    }
    
    .hero-content-wrapper {
        flex-direction: column;
        gap: 2rem;
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 3.5vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1.1rem, 2.2vw, 1.3rem);
        margin-bottom: 2.5rem;
    }
    
    .hero-app-image img {
        max-width: 320px;
    }
    
    .app-store-buttons {
        margin-top: 1.5rem;
        gap: 0.75rem;
    }
    
    .store-button {
        padding: 0.6rem 1.2rem;
    }
    
    .store-icon {
        font-size: 1.3rem;
    }
    
    .store-label {
        font-size: 0.65rem;
    }
    
    .store-name {
        font-size: 0.8rem;
    }
    
    .promises-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .styles-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.2rem;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }
    
    .hero-content-wrapper {
        padding: 0 1.5rem;
        gap: 1.5rem;
    }
    
    .hero-content {
        text-align: center;
        padding: 0;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        margin-bottom: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 2vw, 1.2rem);
        margin-bottom: 2rem;
    }
    
    .mandala-1, .mandala-2, .mandala-3 {
        width: 150px;
        height: 150px;
    }
    
    .mandala-1 {
        left: 5%;
        top: 15%;
    }
    
    .mandala-2 {
        right: 2%;
        top: 35%;
    }
    
    .mandala-3 {
        left: 55%;
        bottom: 15%;
    }
    
    .promises-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .promise-card {
        padding: 1.2rem;
    }
    
    .promise-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .promise-card p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .styles-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 0.8rem;
    }
    
    .style-item {
        padding: 1.2rem;
        gap: 0.6rem;
    }
    
    .style-icon {
        font-size: 1.8rem;
    }
    
    .style-text {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .testimonial p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .google-form-container {
        margin: 1.5rem 0;
    }
    
    .google-form-container {
        margin: 1.5rem 0;
        border-radius: 15px;
        max-width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }
    
    .google-form-container iframe {
        width: 100% !important;
        height: 600px !important;
    }
}

/* Mobile Large */
@media (max-width: 600px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero {
        min-height: 100vh;
        padding: 2rem 0 1rem 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-content-wrapper {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
        max-width: 100%;
        align-items: center;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
        text-align: center;
        order: 1;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.3rem);
        margin-bottom: 2rem;
        line-height: 1.3;
    }
    
    .hero-app-image {
        width: 100%;
        max-width: 300px;
        min-width: 250px;
        order: 2;
    }
    
    .hero-app-image img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    .mandala-1, .mandala-2, .mandala-3 {
        width: 100px;
        height: 100px;
    }
    
    .app-store-buttons {
        margin-top: 1.5rem;
        gap: 0.5rem;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0;
    }
    
    .store-button {
        padding: 0.5rem 1rem;
        width: auto;
        max-width: 180px;
        justify-content: center;
        min-width: 160px;
        margin: 0;
    }
    
    .store-icon {
        font-size: 1.2rem;
    }
    
    .store-label {
        font-size: 0.6rem;
    }
    
    .store-name {
        font-size: 0.75rem;
    }
    
    .styles-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 0.6rem;
    }
    
    .style-item {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .style-icon {
        font-size: 1.6rem;
    }
    
    .style-text {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .google-form-container {
        margin: 1rem 0;
        border-radius: 12px;
        padding: 0 0.5rem;
    }
    
    .google-form-container iframe {
        height: 500px !important;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    :root {
        --section-padding: 50px 0;
    }
    
    .hero {
        min-height: 100vh;
        padding: 1.5rem 0 1rem 0;
    }
    
    .hero-content-wrapper {
        gap: 1.5rem;
        padding: 0 0.75rem;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 5.5vw, 2rem);
        margin-bottom: 0.8rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-app-image {
        width: 100%;
        max-width: 280px;
        min-width: 220px;
    }
    
    .hero-app-image img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    .mandala-1, .mandala-2, .mandala-3 {
        width: 80px;
        height: 80px;
    }
    
    .mandala-1 {
        left: 2%;
        top: 10%;
    }
    
    .mandala-2 {
        right: 1%;
        top: 30%;
    }
    
    .mandala-3 {
        left: 50%;
        bottom: 10%;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .promise-card {
        padding: 1rem;
    }
    
    .promise-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .promise-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .testimonial {
        padding: 1rem;
    }
    
    .testimonial p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .cta-title {
        font-size: clamp(1.5rem, 4vw, 2.2rem);
        margin-bottom: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: clamp(1rem, 3vw, 1.3rem);
        margin-bottom: 2rem;
    }
    
    .styles-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.5rem;
    }
    
    .style-item {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .style-icon {
        font-size: 1.6rem;
    }
    
    .style-text {
        font-size: 0.75rem;
    }
    
    .google-form-container {
        margin: 1rem 0;
        border-radius: 10px;
        padding: 0 0.5rem;
    }
    
    .google-form-container iframe {
        height: 450px !important;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    :root {
        --section-padding: 40px 0;
    }
    
    .hero {
        min-height: 100vh;
        padding: 1rem 0;
    }
    
    .hero-content-wrapper {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .hero-title {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
        margin-bottom: 0.6rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: clamp(0.8rem, 3vw, 1rem);
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .hero-app-image {
        width: 100%;
        max-width: 250px;
        min-width: 200px;
    }
    
    .hero-app-image img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    .mandala-1, .mandala-2, .mandala-3 {
        width: 60px;
        height: 60px;
    }
    
    .mandala-1 {
        left: 1%;
        top: 8%;
    }
    
    .mandala-2 {
        right: 0%;
        top: 25%;
    }
    
    .mandala-3 {
        left: 45%;
        bottom: 8%;
    }
    
    .section-title {
        font-size: clamp(1.4rem, 3.5vw, 1.8rem);
        margin-bottom: 2rem;
    }
    
    .cta-title {
        font-size: clamp(1.3rem, 3.5vw, 1.8rem);
        margin-bottom: 1.2rem;
    }
    
    .cta-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        margin-bottom: 1.5rem;
    }
    
    .styles-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.4rem;
    }
    
    .style-item {
        padding: 0.6rem;
    }
    
    .style-icon {
        font-size: 1.2rem;
    }
    
    .style-text {
        font-size: 0.65rem;
        line-height: 1.2;
    }
    
    .google-form-container {
        margin: 0.5rem 0;
        border-radius: 8px;
        padding: 0 0.25rem;
    }
    
    .google-form-container iframe {
        height: 400px !important;
    }
}

/* Ultra Small Mobile */
@media (max-width: 320px) {
    .hero {
        min-height: 100vh;
        padding: 0.25rem 0;
    }
    
    .hero-content-wrapper {
        gap: 0.3rem;
        padding: 0 0.25rem;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0;
    }
    
    .hero-title {
        font-size: clamp(1rem, 3.5vw, 1.4rem);
        margin-bottom: 0.5rem;
        line-height: 1.05;
    }
    
    .hero-subtitle {
        font-size: clamp(0.7rem, 2.2vw, 0.9rem);
        margin-bottom: 0.6rem;
        line-height: 1.2;
    }
    
    .hero-app-image img {
        max-width: 85vw;
        width: 100%;
    }
    
    .hero-app-image {
        min-width: 180px;
        max-width: 100%;
    }
    
    .mandala-1, .mandala-2, .mandala-3 {
        width: 60px;
        height: 60px;
    }
    
    .styles-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 0.3rem;
    }
    
    .style-item {
        padding: 0.5rem;
    }
    
    .style-icon {
        font-size: 1rem;
    }
    
    .style-text {
        font-size: 0.6rem;
    }
    
    .app-store-buttons {
        margin-top: 1rem;
        gap: 0.4rem;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0;
    }
    
    .store-button {
        padding: 0.4rem 0.8rem;
        width: 100%;
        max-width: 160px;
        justify-content: center;
        min-width: 140px;
        margin: 0;
    }
    
    .store-label {
        font-size: 0.55rem;
    }
    
    .store-name {
        font-size: 0.65rem;
    }
    
    .google-form-container {
        margin: 0.25rem 0;
        border-radius: 6px;
        padding: 0;
    }
    
    .google-form-container iframe {
        height: 350px !important;
    }
}

/* Very Narrow Mobile */
@media (max-width: 280px) {
    .hero {
        min-height: 100vh;
        padding: 0.25rem 0;
    }
    
    .hero-content-wrapper {
        gap: 0.2rem;
        padding: 0 0.1rem;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0;
    }
    
    .hero-title {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
        margin-bottom: 0.4rem;
        line-height: 1.0;
    }
    
    .hero-subtitle {
        font-size: clamp(0.65rem, 2vw, 0.8rem);
        margin-bottom: 0.5rem;
        line-height: 1.1;
    }
    
    .hero-app-image img {
        max-width: 90vw;
        width: 100%;
    }
    
    .hero-app-image {
        min-width: 160px;
        max-width: 100%;
    }
    
    .app-store-buttons {
        margin-top: 0.5rem;
        gap: 0.3rem;
        padding: 0 0.5rem;
    }
    
    .store-button {
        padding: 0.25rem 0.5rem;
        max-width: 120px;
        min-width: 100px;
        margin: 0 auto;
    }
    
    .store-label {
        font-size: 0.5rem;
    }
    
    .store-name {
        font-size: 0.6rem;
    }
    
    .mandala-1, .mandala-2, .mandala-3 {
        width: 50px;
        height: 50px;
    }
    
    .scroll-indicator {
        bottom: 10px;
        font-size: 0.7rem;
    }
    
    .scroll-line {
        width: 8px;
        height: 8px;
    }
}

/* Landscape Mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-content-wrapper {
        gap: 1.5rem;
    }
    
    .hero-app-image img {
        max-width: 250px;
    }
    
    .app-store-buttons {
        margin-top: 1rem;
    }
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Mobile touch improvements */
@media (max-width: 768px) {
    body {
        -webkit-text-size-adjust: 100%;
        -webkit-tap-highlight-color: transparent;
    }
    
    button, .store-button, .style-item {
        touch-action: manipulation;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--deep-indigo);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--emerald-accent), var(--mystic-purple));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--soft-emerald), var(--celestial-blue));
}

/* Loading animation for elements */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInLeft 0.8s ease-out forwards;
    animation-direction: reverse;
}

/* Intersection Observer Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
} 