@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:wght@400&family=Manrope:wght@400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.7;
}

h1, h2, h3, p {
    margin: 0;
}

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

/* HEADER & NAVIGATION */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(26, 26, 26, 0.05);
    padding: 1rem 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.7;
}

nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    opacity: 0.6;
}

.nav-link.active {
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 2px;
}

/* MAIN CONTAINER */
main {
    margin-top: 70px;
}

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

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
}

.hero-content h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666666;
    font-weight: 400;
    margin-bottom: 3rem;
    max-width: 600px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a;
    cursor: pointer;
}

.btn:hover {
    background: transparent;
    color: #1a1a1a;
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.btn-white {
    background: #ffffff;
    color: #1a1a1a;
    border: 2px solid #ffffff;
    font-weight: 600;
}

.btn-white:hover {
    background: transparent;
    color: #ffffff;
}

/* STATEMENT SECTION */
.statement {
    padding: 6rem 2rem;
    text-align: center;
    background: #ffffff;
}

.statement h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.statement p {
    font-size: 1.1rem;
    color: #666666;
    max-width: 700px;
    margin: 1rem auto;
    font-weight: 400;
}

/* PILLARS SECTION */
.pillars {
    padding: 6rem 2rem;
    background: #fafafa;
}

.pillars h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 4rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pillar {
    background: #ffffff;
    padding: 2rem;
    border: 1px solid #eeeeee;
    text-align: center;
    transition: all 0.3s ease;
}

.pillar:hover {
    border-color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.08);
}

.pillar-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.pillar p {
    font-size: 0.95rem;
    color: #999999;
    line-height: 1.5;
}

/* OFFER SECTION */
.offer {
    padding: 6rem 2rem;
    text-align: center;
    background: #ffffff;
}

.offer h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.offer-box {
    background: #fafafa;
    padding: 3rem;
    max-width: 600px;
    margin: 2rem auto;
    border: 1px solid #eeeeee;
}

.offer-box p {
    font-size: 1.05rem;
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* TARGET SECTION */
.target {
    padding: 6rem 2rem;
    background: #fafafa;
    text-align: center;
}

.target h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
}

.target-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.target-item {
    background: #ffffff;
    padding: 2rem;
    border: 1px solid #eeeeee;
}

.target-item p {
    font-size: 1.05rem;
    font-weight: 500;
    color: #1a1a1a;
}

/* BLOG PREVIEW SECTION */
.blog-preview {
    padding: 6rem 2rem;
    background: #ffffff;
    text-align: center;
}

.blog-preview h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.blog-card {
    background: #fafafa;
    padding: 2rem;
    border: 1px solid #eeeeee;
    text-align: left;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.08);
}

.blog-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.blog-date {
    font-size: 0.85rem;
    color: #999999;
    margin-bottom: 1rem;
}

.blog-card p {
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    opacity: 0.6;
}

/* CTA FINAL SECTION */
.cta-final {
    padding: 6rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.cta-final h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-final p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* FOOTER */
footer {
    padding: 2rem;
    text-align: center;
    background: #0a0a0a;
    color: #666666;
    font-size: 0.85rem;
}

/* FORM STYLES */
.form-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-full {
    grid-column: 1 / -1;
}

input[type="text"],
input[type="email"],
textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #eeeeee;
    background: #ffffff;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.cta-final input[type="text"],
.cta-final input[type="email"],
.cta-final textarea {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #ffffff;
}

.cta-final input[type="text"]::placeholder,
.cta-final input[type="email"]::placeholder,
.cta-final textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.cta-final input[type="text"]:focus,
.cta-final input[type="email"]:focus,
.cta-final textarea:focus {
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

/* IMAGES */
.section-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    margin: 2rem auto;
    display: block;
    border: 1px solid #eeeeee;
    transition: all 0.3s ease;
}

.section-image:hover {
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.12);
}

.image-caption {
    font-size: 0.85rem;
    color: #999999;
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

/* PAGE HEADER */
.page-header {
    padding: 6rem 2rem 4rem;
    text-align: center;
    background: #fafafa;
    border-bottom: 1px solid #eeeeee;
}

.page-header h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

.page-header .section-image {
    margin-top: 2rem;
    max-width: 400px;
    border-radius: 0;
}

/* CONTENT SECTIONS */
.content-section {
    padding: 4rem 2rem;
}

.content-section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-section ul,
.content-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    color: #666666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    header {
        padding: 0.75rem 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    nav {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    main {
        margin-top: 60px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .statement h2 {
        font-size: 2rem;
    }

    .pillars h2,
    .offer h2,
    .target h2,
    .blog-preview h2,
    .cta-final h2 {
        font-size: 1.75rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .form-group {
        grid-template-columns: 1fr;
    }

    .form-full {
        grid-column: 1;
    }

    .pillars-grid,
    .target-list,
    .blog-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    nav {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .statement h2 {
        font-size: 1.5rem;
    }
}
