@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Montserrat:wght@700;900&display=swap');

:root {
    --bg-color: #000000;
    --accent-color: #E066FF;
    --rose-color: #FFC0CB;
    --text-color: #FFFFFF;
    --secondary-text: #CCCCCC;
    --card-bg: rgba(255, 255, 255, 0.05);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* Header */
header {
    padding: 16px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 192, 203, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    padding: 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rose-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 10px;
    margin-left: 40px;
}

.lang-btn {
    background: transparent;
    border: 2px solid rgba(255, 192, 203, 0.3);
    color: var(--text-color);
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
    letter-spacing: 1px;
}

.lang-btn:hover {
    border-color: var(--rose-color);
    color: var(--rose-color);
}

.lang-btn.active {
    background-color: var(--rose-color);
    border-color: var(--rose-color);
    color: #000;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 60px;
    position: relative;
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-direction: row-reverse;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 80px rgba(224, 102, 255, 0.1);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
}

.hero-headline {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-color);
    font-style: italic;
}

.hero-subheadline {
    font-size: 1.15rem;
    color: var(--secondary-text);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--rose-color);
    color: #000;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    border: 2px solid var(--rose-color);
    transition: var(--transition);
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: var(--rose-color);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--rose-color);
    border-color: var(--rose-color);
}

.btn-outline:hover {
    background-color: var(--rose-color);
    color: #000;
}

/* Sections General */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: 2px;
}

.section-title span {
    color: var(--rose-color);
}

/* Problem Section */
.problem-section {
    background: rgba(255, 192, 203, 0.02);
    padding: 120px 0;
}

.problem-content {
    max-width: 900px;
    margin: 0 auto;
}

.problem-text p {
    font-size: 1.15rem;
    color: var(--secondary-text);
    margin-bottom: 30px;
    line-height: 1.9;
    text-align: center;
}

/* Who I Help Section */
.who-section {
    padding: 120px 0;
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.who-card {
    padding: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 192, 203, 0.15);
    border-radius: 20px;
}

.who-card h3 {
    color: var(--rose-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.who-card ul {
    list-style: none;
}

.who-card ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--secondary-text);
    font-size: 1.05rem;
    line-height: 1.6;
}

.who-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--rose-color);
    font-weight: bold;
}

.transformation {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.transform-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 192, 203, 0.05);
    border-radius: 12px;
}

.transform-item .from {
    flex: 1;
    color: var(--secondary-text);
    font-size: 0.95rem;
}

.transform-item .arrow {
    color: var(--rose-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.transform-item .to {
    flex: 1;
    color: var(--rose-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Philosophy Section */
.philosophy-section {
    background: rgba(255, 192, 203, 0.02);
    padding: 120px 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.philosophy-card {
    padding: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 192, 203, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    min-height: 250px;
}

.philosophy-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
    text-align: center;
}

/* Method Section */
.method-section {
    padding: 120px 0;
}

.method-intro {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
    font-size: 1.15rem;
    color: var(--secondary-text);
    line-height: 1.8;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.method-item {
    padding: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 192, 203, 0.15);
    border-radius: 20px;
    position: relative;
    transition: var(--transition);
}

.method-item:hover {
    border-color: var(--rose-color);
    transform: translateY(-5px);
}

.method-num {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 192, 203, 0.15);
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: 'Playfair Display', serif;
}

.method-item h3 {
    color: var(--rose-color);
    margin-bottom: 20px;
    margin-top: 10px;
    font-size: 1.4rem;
}

.method-item p {
    color: var(--secondary-text);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Case Studies Section */
.case-study-section {
    background: rgba(255, 192, 203, 0.02);
    padding: 120px 0;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.case-study-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 192, 203, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.case-study-card:hover {
    border-color: var(--rose-color);
    transform: translateY(-5px);
}

.case-study-header {
    padding: 40px;
    background: rgba(255, 192, 203, 0.05);
    border-bottom: 1px solid rgba(255, 192, 203, 0.15);
}

.case-study-header h3 {
    color: var(--rose-color);
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.case-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary-text);
}

.case-study-body {
    padding: 40px;
}

.case-problem,
.case-strategy,
.case-results {
    margin-bottom: 30px;
}

.case-problem h4,
.case-strategy h4,
.case-results h4 {
    color: var(--rose-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.case-problem p,
.case-strategy p {
    color: var(--secondary-text);
    font-size: 0.95rem;
    line-height: 1.7;
}

.case-strategy ul {
    list-style: none;
}

.case-strategy ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--secondary-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.case-strategy ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--rose-color);
}

.results-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.metric {
    text-align: center;
    padding: 20px;
    background: rgba(255, 192, 203, 0.05);
    border-radius: 12px;
}

.metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rose-color);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.metric-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-text);
}

.case-quote {
    font-style: italic;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.7;
    padding-left: 20px;
    border-left: 3px solid var(--rose-color);
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
}

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

.testimonial-card {
    padding: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 192, 203, 0.15);
    border-radius: 20px;
    font-style: italic;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--rose-color);
}

.testimonial-card p {
    color: var(--secondary-text);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-author {
    margin-top: 20px;
    font-style: normal;
    font-weight: 700;
    color: var(--rose-color);
    font-size: 0.9rem;
}

.testimonial-author span {
    display: block;
    font-weight: 400;
    color: var(--secondary-text);
    font-size: 0.85rem;
}

/* Services Section */
.services-section {
    background: rgba(255, 192, 203, 0.02);
    padding: 120px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.service-item {
    padding: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 192, 203, 0.15);
    border-radius: 20px;
    transition: var(--transition);
}

.service-item:hover {
    border-color: var(--rose-color);
    transform: translateY(-5px);
}

.service-item h3 {
    color: var(--rose-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.service-item p {
    color: var(--secondary-text);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 192, 203, 0.15);
    border-radius: 20px;
}

.faq-item h3 {
    color: var(--rose-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--secondary-text);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('assets/img/profile.webp');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.3;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--secondary-text);
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 192, 203, 0.1);
    text-align: center;
}

.footer-links {
    margin-bottom: 40px;
}

.footer-links a {
    margin: 0 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--rose-color);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    
    .hero-image { margin-bottom: 30px; }
    .hero-content { text-align: center; }
    .hero-headline { font-size: 2.5rem; }
    .hero-subheadline { margin: 0 auto 25px; }
    
    .who-grid { grid-template-columns: 1fr; gap: 50px; }
    .philosophy-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .method-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .services-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .results-metrics { grid-template-columns: repeat(2, 1fr); }
    
    .cta-section h2 { font-size: 2.2rem; }
    .section-title { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 50px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 400px;
    }

    .nav-links a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 192, 203, 0.1);
        font-size: 0.75rem;
    }

    .nav-links a::after {
        display: none;
    }

    .language-switcher {
        margin-left: 0;
        margin-top: 10px;
    }

    .hero-headline { font-size: 2rem; }
    .hero-subheadline { font-size: 1rem; }
    .hero-btns { flex-direction: column; }
    .btn { width: 100%; }
    .btn-outline { margin-left: 0; }
    
    .section-title { font-size: 1.8rem; margin-bottom: 40px; }
    .cta-section h2 { font-size: 1.8rem; }
    
    .philosophy-grid { grid-template-columns: 1fr; }
    .method-grid { grid-template-columns: 1fr; }
    .case-studies-grid { grid-template-columns: 1fr; }
    .results-metrics { grid-template-columns: 1fr; }
    
    section { padding: 80px 0; }
    
    .who-card,
    .philosophy-card,
    .method-item,
    .case-study-card,
    .testimonial-card,
    .service-item,
    .faq-item {
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .hero { padding-top: 60px; padding-bottom: 40px; }
    .hero-headline { font-size: 1.6rem; }
    .hero-subheadline { font-size: 0.95rem; margin-bottom: 20px; }
    .hero-btns { gap: 10px; }
    
    .section-title { font-size: 1.5rem; margin-bottom: 30px; }
    .cta-section { padding: 80px 0; }
    .cta-section h2 { font-size: 1.5rem; }
    .cta-section p { font-size: 1rem; }
    
    .who-card h3,
    .philosophy-card p,
    .method-item h3,
    .service-item h3 {
        font-size: 1.1rem;
    }
    
    .metric-value { font-size: 1.5rem; }
    .metric-label { font-size: 0.7rem; }
    
    section { padding: 60px 0; }
    
    .nav-links.active {
        max-height: 500px;
    }
}
