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

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Public Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 1.6rem;
}

/* Container */
.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.4rem 3rem;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
}

.btn-primary {
    background-color: #FF6B47;
    color: white;
}

.btn-primary:hover {
    background-color: #E55A41;
    transform: translateY(-0.2rem);
}

.btn-secondary {
    background-color: transparent;
    color: #FF6B47;
    border: 0.2rem solid #FF6B47;
}

.btn-secondary:hover {
    background-color: #FF6B47;
    color: white;
    transform: translateY(-0.2rem);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    padding: 2rem;
    max-width: 40rem;
    z-index: 1000;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: #666;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #4CAF50;
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #45a049;
}

.cookie-btn.decline {
    background-color: #f44336;
    color: white;
}

.cookie-btn.decline:hover {
    background-color: #da190b;
}

/* Header */
.header {
    background-color: #FF6B47;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
}

.nav {
    padding: 1rem 0;
}

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

.logo {
    font-size: 2.4rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: 0.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.6rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FFE4E1;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 2.5rem;
    height: 0.3rem;
    background-color: white;
    margin: 0.3rem 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: url("img/bg.jpg");
    color: white;
    padding: 15rem 0 10rem;
    text-align: center;
}

.hero-title {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    color: #B0B0B0;
}

/* Why Dasteria Section */
.why-dasteria {
    padding: 8rem 0;
    background-color: #f8f9fa;
}

.why-dasteria-content {
    display: flex;
    align-items: center;
    gap: 6rem;
    flex-wrap: wrap;
}

.why-dasteria-image {
    flex: 1;
    min-width: 30rem;
}

.why-dasteria-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

.why-dasteria-text {
    flex: 1;
    min-width: 30rem;
}

.why-dasteria-text h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.why-dasteria-text p {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #666;
}

/* What Matters Section */
.what-matters {
    padding: 8rem 0;
    background-color: #1a1a2e;
    color: white;
}

.section-title {
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 6rem;
    color: white;
}

.matters-grid {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.matters-item {
    flex: 1;
    min-width: 25rem;
    text-align: center;
}

.matters-number {
    font-size: 4rem;
    font-weight: 700;
    color: #FF6B47;
    margin-bottom: 2rem;
}

.matters-item h3 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.matters-item p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #B0B0B0;
}

/* Words Section */
.words-section {
    padding: 8rem 0;
    background-color: #f8f9fa;
}

.words-section .section-title {
    color: #1a1a2e;
}

.words-subtitle {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 6rem;
    color: #666;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.words-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.word-item {
    flex: 1;
    min-width: 30rem;
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.word-item h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.word-item p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #666;
}

/* Real Work Section */
.real-work {
    padding: 8rem 0;
    background-color: #1a1a2e;
    color: white;
}

.real-work-content {
    display: flex;
    align-items: center;
    gap: 6rem;
    flex-wrap: wrap;
}

.real-work-image {
    flex: 1;
    min-width: 30rem;
}

.real-work-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

.real-work-text {
    flex: 1;
    min-width: 30rem;
}

.real-work-text p {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #B0B0B0;
}

/* Ideas Systems Section */
.ideas-systems {
    padding: 8rem 0;
    background-color: #f8f9fa;
}

.ideas-systems .section-title {
    color: #1a1a2e;
}

.ideas-subtitle {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 6rem;
    color: #666;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.ideas-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.idea-item {
    flex: 1;
    min-width: 45rem;
    padding: 3rem;
}

.idea-item h3 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.idea-item p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #666;
}

/* Coming Back Section */
.coming-back {
    padding: 8rem 0;
    background-color: #1a1a2e;
    color: white;
}

.coming-back-content {
    display: flex;
    align-items: center;
    gap: 6rem;
    flex-wrap: wrap;
}

.coming-back-image {
    flex: 1;
    min-width: 30rem;
}

.coming-back-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

.coming-back-text {
    flex: 1;
    min-width: 30rem;
}

.coming-back-text h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.coming-back-text p {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #B0B0B0;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background-color: #f8f9fa;
}

.testimonials .section-title {
    color: #1a1a2e;
    margin-bottom: 2rem;
}

.testimonials-subtitle {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 6rem;
    color: #666;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 1;
    min-width: 45rem;
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.testimonial-author {
    font-size: 1.4rem;
    font-weight: 600;
    color: #FF6B47;
    margin-bottom: 1rem;
}

.testimonial-item p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #666;
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background-color: #1a1a2e;
    color: white;
}

.contact-content {
    display: flex;
    gap: 6rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    min-width: 30rem;
}

.contact-info h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.contact-info p {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #B0B0B0;
}

.contact-form {
    flex: 1;
    min-width: 30rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    border: 0.2rem solid #333;
    border-radius: 0.5rem;
    background-color: #2a2a3e;
    color: white;
    font-size: 1.6rem;
    font-family: 'Public Sans', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B47;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group textarea {
    resize: vertical;
    min-height: 12rem;
}

/* Success Section */
.success-section {
    padding: 15rem 0 10rem;
    background-color: #f8f9fa;
    text-align: center;
}

.success-content {
    max-width: 60rem;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.success-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.success-description {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 4rem;
    color: #666;
}

.success-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: #1a1a2e;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand .logo {
    color: white;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #B0B0B0;
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 0.1rem solid #333;
}

.footer-bottom p {
    color: #666;
    font-size: 1.4rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
    html {
        font-size: 9px;
    }

    .container {
        padding: 0 1.5rem;
    }

    /* Navigation Mobile */
    .nav-menu {
        position: fixed;
        top: 7rem;
        left: -100%;
        width: 100%;
        height: calc(100vh - 7rem);
        background-color: #FF6B47;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 5rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 2rem 0;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    /* Hero Mobile */
    .hero {
        padding: 12rem 0 8rem;
    }

    .hero-title {
        font-size: 3.6rem;
    }

    .hero-description {
        font-size: 1.6rem;
    }

    /* Sections Mobile */
    .why-dasteria-content,
    .real-work-content,
    .coming-back-content {
        flex-direction: column;
        gap: 4rem;
    }

    .matters-grid {
        flex-direction: column;
        gap: 3rem;
    }

    .matters-item {
        min-width: auto;
    }

    .words-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .word-item {
        min-width: auto;
    }

    .ideas-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .idea-item {
        min-width: auto;
    }

    .testimonials-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .testimonial-item {
        min-width: auto;
    }

    .contact-content {
        flex-direction: column;
        gap: 4rem;
    }

    .success-actions {
        flex-direction: column;
        align-items: center;
    }

    .success-actions .btn {
        width: 100%;
        max-width: 30rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-links {
        justify-content: center;
    }

    /* Cookie popup mobile */
    .cookie-popup {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 1.2rem 2rem;
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .why-dasteria-text h2,
    .coming-back-text h2,
    .contact-info h2 {
        font-size: 2.8rem;
    }

    .success-title {
        font-size: 3.2rem;
    }
}