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

:root {
    --bg-dark: #141a1f;
    --bg-darker: #0d1114;
    --green-accent: #4ade80;
    --green-light: #86efac;
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --max-width: 1200px;
}

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }

/* Container for max-width constraint */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(20, 26, 31, 0.98), rgba(20, 26, 31, 0.7), transparent);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { font-size: 1.5rem; font-weight: 300; letter-spacing: -0.5px; }
.logo span { color: var(--green-accent); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.95rem; font-weight: 400; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--green-accent); }

.consulting-status { display: flex; align-items: center; gap: 0.5rem; }
.consulting-status svg { width: 16px; height: 16px; }

.status-badge {
    background: var(--green-accent);
    color: var(--bg-dark);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.btn-outline { background: transparent; border: 1px solid var(--text-white); color: var(--text-white); }
.btn-outline:hover { background: var(--text-white); color: var(--bg-dark); }
.btn-green { background: var(--green-accent); color: var(--bg-dark); }
.btn-green:hover { background: var(--green-light); }
.btn-white { background: var(--text-white); color: var(--bg-dark); }
.btn-white:hover { background: #e5e7eb; }
.btn-dark { background: var(--bg-darker); color: var(--text-white); }
.btn-dark:hover { background: #1a2128; }

/* Hero */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; }

.hero-img {
    position: absolute;
    right: 0; top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.hero-gradient {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(20, 26, 31, 0.98) 0%, rgba(20, 26, 31, 0.95) 20%, rgba(20, 26, 31, 0.75) 40%, rgba(20, 26, 31, 0.4) 60%, rgba(20, 26, 31, 0.1) 80%, transparent 100%);
}

.bokeh { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.6; }
.bokeh-1 { width: 200px; height: 200px; background: #9333ea; top: 20%; left: -5%; }
.bokeh-2 { width: 150px; height: 150px; background: #f97316; bottom: 30%; left: 5%; }
.bokeh-3 { width: 180px; height: 180px; background: #eab308; bottom: 20%; left: -2%; }

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 550px;
    padding: 0 2rem;
    margin-left: calc((100% - var(--max-width)) / 2);
}

.tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--green-accent);
    margin-bottom: 1rem;
}

.hero-title { font-size: 3.5rem; font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-desc { font-size: 1rem; color: var(--text-gray); line-height: 1.8; margin-bottom: 2rem; }

/* Brands */
.brands { padding: 5rem 2rem; background: var(--bg-dark); position: relative; overflow: hidden; }

.brands-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--green-accent);
    text-align: center;
    margin-bottom: 3rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4rem 3rem;
    max-width: var(--max-width);
    margin: 0 auto;
    align-items: center;
    justify-items: center;
    padding: 0 2rem;
}

.brand-logo {
    height: 80px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    opacity: 1;
    transition: transform 0.3s ease;
}

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

/* Green Circle Decorations */
.green-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--green-accent);
    opacity: 0.15;
    z-index: 0;
}

.brands .green-circle {
    bottom: -30px;
    right: 10%;
}

.cta-circle {
    top: 20%;
    left: -40px;
}

.quote-circle {
    bottom: 10%;
    right: -30px;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    text-align: center;
    background: var(--bg-dark);
    position: relative;
}


.cta-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
.cta-desc { font-size: 1rem; color: var(--text-gray); max-width: 600px; margin: 0 auto 2rem; line-height: 1.8; }

/* Change Image */
.change-img { width: 100%; height: auto; display: block; }

/* Transformations */
.transformations { padding: 5rem 2rem; background: #fff; color: var(--bg-dark); }

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--green-accent);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-title { font-size: 2.5rem; font-weight: 700; text-align: center; margin-bottom: 3rem; }

.trans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid #e5e7eb;
}

.trans-card { padding: 2.5rem; border: 1px solid #e5e7eb; text-align: center; }
.trans-card h3 { font-size: 1.75rem; font-weight: 700; margin-bottom: 1rem; }
.trans-card p { font-size: 0.9rem; color: #6b7280; line-height: 1.8; }

/* Quote Section */
.quote-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.quote-img { width: 100%; height: 100%; object-fit: cover; }

.quote-content {
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    position: relative;
}


.quote-title { font-size: 2.5rem; font-weight: 700; line-height: 1.2; margin-bottom: 1.5rem; }
.quote-text { font-size: 0.95rem; color: var(--text-gray); line-height: 1.8; margin-bottom: 2rem; max-width: 450px; }
.signature-img { height: 18px; max-width: 150px; margin-bottom: 0.5rem; }
.sig-name { font-weight: 600; margin-bottom: 0.25rem; }
.sig-title { font-size: 0.9rem; color: var(--text-gray); }

/* Blog */
.blog-section { padding: 5rem 2rem; background: #fff; color: var(--bg-dark); text-align: center; }
.blog-desc { font-size: 1rem; color: #6b7280; margin-bottom: 3rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 900px; margin: 0 auto 2rem; }
.blog-card { text-align: left; }
.blog-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card .read-time { font-size: 0.8rem; color: #9ca3af; text-transform: uppercase; }

/* Final CTA */
.final-cta { padding: 5rem 2rem; text-align: center; background: var(--bg-dark); position: relative; }

.final-cta-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
.final-cta-text { font-size: 1rem; color: var(--text-gray); max-width: 550px; margin: 0 auto 2rem; line-height: 1.7; }

/* Footer */
.footer { background: var(--bg-dark); padding: 4rem 2rem 2rem; border-top: 1px solid #2d3748; }
.footer-content { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; max-width: 1100px; margin: 0 auto 3rem; }
.footer-brand .logo { margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: 0.9rem; color: var(--text-gray); line-height: 1.6; }
.footer-col h4 { font-size: 1rem; font-weight: 600; margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a { font-size: 0.9rem; color: var(--text-gray); display: flex; align-items: center; gap: 0.5rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--green-accent); }
.footer-col .icon { width: 16px; height: 16px; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid #2d3748; }
.footer-bottom p { font-size: 0.85rem; color: var(--text-gray); }
.footer-bottom a { color: var(--green-accent); }

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.75rem; }
    .brands-grid { grid-template-columns: repeat(3, 1fr); }
    .trans-grid { grid-template-columns: repeat(2, 1fr); }
    .quote-section { grid-template-columns: 1fr; }
    .quote-img { height: 400px; }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-container { padding: 1rem; }
    .nav-links { display: none; }
    .hero-content { margin-left: 0; padding: 0 1.5rem; }
    .hero-title { font-size: 2.25rem; }
    .hero-gradient { background: linear-gradient(to right, rgba(20, 26, 31, 0.95) 0%, rgba(20, 26, 31, 0.8) 100%); }
    .brands-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem 2rem; }
    .brand-logo { height: 50px; max-width: 120px; }
    .trans-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }

}
