/* CSS RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

:root {
    --blue: #1B4EF5;
    --black: #000000;
    --white: #FFFFFF;
    --yellow: #FFCF00;
    --red: #F62440;
    --gold: #FFD400;
    --gray: #888888;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: var(--blue);
}

.headline-font {
    font-family: "Boldonse", "Syncopate", "Oswald", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 1;
}

.thin-paragraph {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.7;
    text-transform: none;
    letter-spacing: 0.02em;
}

/* VIEW SYSTEM */
.view {
    display: none;
    width: 100%;
    min-height: 100vh;
}

.view.active {
    display: block;
}

/* NAVIGATION */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 900;
    background: rgba(0,0,0,0.95);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-logo {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links span, .nav-right span {
    cursor: pointer;
    font-size: 1rem;
    color: var(--white);
    transition: color 0.3s;
}

.nav-links span:hover, .nav-right span:hover {
    color: var(--blue);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger div {
    width: 30px;
    height: 3px;
    background-color: var(--white);
}

/* CART */
#cart-drawer {
    position: fixed;
    right: -100%;
    top: 0;
    width: 400px;
    height: 100vh;
    background: var(--black);
    color: var(--white);
    z-index: 9995;
    padding: 40px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    transition: right 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#cart-drawer.open {
    right: 0;
}

.cart-items-container {
    flex-grow: 1;
    margin-top: 40px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    padding: 15px 0;
}

.cart-close {
    cursor: pointer;
    align-self: flex-end;
    font-size: 1.2rem;
}

.checkout-btn {
    background: var(--blue);
    color: var(--white);
    border: none;
    padding: 15px;
    width: 100%;
    cursor: pointer;
    margin-top: 20px;
}

/* HOME */
#home-view {
    background-color: var(--blue);
}

.hero-section {
    width: 100%;
    padding: 140px 5% 5% 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

.hero-row-top {
    display: flex;
    justify-content: flex-start;
}

.hero-row-middle {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.hero-left-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.size-shop {
    font-size: 12vw;
    color: var(--white);
    line-height: 1;
}

.hero-img-main {
    width: 45vw;
    max-width: 500px;
    object-fit: contain;
    margin-top: 20px;
}

.hero-right-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.hero-big-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.size-small {
    font-size: 15vw;
    color: var(--black);
}

.size-big {
    font-size: 10vw;
    color: var(--black);
}

.size-ideas {
    font-size: 12vw;
    color: var(--white);
    line-height: 1;
}

.hero-img-shape {
    height: 60vh;
    max-height: 130vh;
}

.hero-desc-paragraph {
    max-width: 500px;
    margin-top: 20px;
    margin-right: 5rem;
    text-align: right;
    color: rgba(255,255,255,0.8);
}

/* SECTION 2 */
.home-section-2 {
    background-color: var(--blue);
    padding: 100px 5%;
}

.cascade-title-container {
    display: flex;
    margin-bottom: 80px;
}

.cascade-letter {
    font-size: 12vw;
    color: var(--black);
    display: inline-block;
}

.interactive-split-container {
    display: flex;
    gap: 5%;
}

.interactive-left {
    width: 40%;
}

.tall-gadget-frame {
    width: 100%;
    height: 600px;
    overflow: hidden;
    border: 2px solid var(--black);
}

.tall-gadget-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interactive-right {
    width: 55%;
    display: flex;
    flex-direction: column;
}

.menu-row-item {
    width: 100%;
    cursor: pointer;
}

.menu-row-hr {
    width: 100%;
    height: 1px;
    background-color: var(--black);
}

.menu-row-text {
    font-size: 4vw;
    color: var(--black);
    padding: 25px 0;
}

.menu-row-item:hover .menu-row-text {
    color: var(--white);
}

/* SECTION 3 */
.home-section-3 {
    background-color: var(--blue);
    padding: 150px 5%;
    display: flex;
    align-items: center;
    gap: 8%;
}

.section3-left {
    width: 45%;
}

.floating-illustration {
    width: 100%;
    max-height: 800px;
    object-fit: contain;
}

.section3-right {
    width: 45%;
}

.sec3-small-head {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 20px;
}

.sec3-large-head {
    font-size: 5vw;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 30px;
}

/* SECTION 4 */
.home-section-4 {
    background-color: var(--black);
    padding: 100px 5%;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-item h3 {
    color: var(--blue);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
}

/* ABOUT */
#about-view {
    background-color: var(--black);
    color: var(--white);
    padding-top: 120px;
}

.about-intro-row {
    padding: 0 5% 80px 5%;
    max-width: 1200px;
}

.about-section-tag {
    font-size: 0.8rem;
    color: var(--blue);
    letter-spacing: 0.3em;
}

.about-hero-title {
    font-size: 4.5vw;
    color: var(--white);
    line-height: 1.1;
    margin-top: 20px;
}

.about-hero-desc {
    max-width: 700px;
    margin-top: 30px;
    color: rgba(255,255,255,0.6);
}

.about-editorial-row {
    display: flex;
    padding: 60px 5%;
    align-items: center;
    gap: 6%;
    max-width: 1400px;
    margin: 0 auto;
}

.about-editorial-row.reverse {
    flex-direction: row-reverse;
}

.about-text-col {
    width: 45%;
}

.about-img-col {
    width: 49%;
    height: 70vh;
    overflow: hidden;
    border: 1px solid #333;
}

.about-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--blue);
    display: block;
    margin-bottom: 20px;
}

.about-title {
    font-size: 4vw;
    margin-bottom: 30px;
    color: var(--white);
}

.about-stat-row {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue);
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
}

.about-pill-row {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.about-pill {
    padding: 0.4rem 1.2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 30px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.7);
}

.about-philosophy-section {
    padding: 80px 5%;
    background: rgba(255,255,255,0.02);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.philosophy-item h3 {
    font-size: 1.1rem;
    color: var(--blue);
    margin-bottom: 15px;
}

.philosophy-item p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* SHOP */
#shop-view {
    background-color: var(--yellow);
    color: var(--black);
    padding-top: 120px;
}

.shop-magazine-section {
    padding: 0 5% 120px 5%;
}

.shop-hero-title {
    font-size: 6vw;
    color: var(--black);
    line-height: 1;
    margin-bottom: 80px;
}

.magazine-product-block {
    border-top: 4px solid var(--black);
    padding-top: 40px;
    margin-bottom: 100px;
}

.prod-main-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.prod-title {
    font-size: 2vw;
    width: 60%;
    line-height: 1;
}

.prod-price-box {
    font-size: 4vw;
    text-align: right;
}

.prod-layout-grid {
    display: flex;
    gap: 5%;
}

.prod-gallery-left {
    width: 50%;
    height: 60vh;
    overflow: hidden;
    border: 3px solid var(--black);
}

.prod-gallery-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prod-details-right {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.spec-table td {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    font-size: 1rem;
}

.spec-label {
    font-weight: 700;
    text-transform: uppercase;
}

.buy-brutalist-btn {
    background-color: var(--black);
    color: var(--white);
    border: none;
    padding: 20px 40px;
    font-size: 1.3rem;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s;
}

.buy-brutalist-btn:hover {
    background-color: var(--blue);
}

/* WORK */
#work-view {
    background-color: var(--black);
    color: var(--white);
    padding-top: 120px;
}

.work-header {
    padding: 0 5% 60px 5%;
}

.work-title {
    font-size: 5vw;
    color: var(--white);
}

.work-desc {
    max-width: 600px;
    color: var(--gray);
    margin-top: 20px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 5% 80px 5%;
}

.work-item {
    position: relative;
    overflow: hidden;
    background: #111;
}

.work-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.work-info {
    padding: 20px;
    background: rgba(0,0,0,0.8);
}

.work-info h3 {
    font-size: 1.1rem;
    color: var(--blue);
    margin-bottom: 10px;
}

.work-info p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* CONTACT */
#contact-view {
    background-color: var(--gold);
    color: var(--black);
    padding-top: 120px;
}

.contact-hero {
    padding: 0 5% 60px 5%;
}

.contact-title-1 {
    font-size: 16vw;
    color: var(--black);
    line-height: 1;
}

.contact-title-2 {
    font-size: 14vw;
    color: var(--white);
    line-height: 1;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0 5% 60px 5%;
}

.contact-info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.contact-info-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--black);
    opacity: 0.7;
}

.contact-form-container {
    padding: 0 5% 150px 5%;
    max-width: 900px;
}

.form-title {
    font-size: 3rem;
    margin-bottom: 40px;
}

.brutal-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.brutal-label {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.brutal-input {
    background: transparent;
    border: none;
    border-bottom: 4px solid var(--black);
    font-size: 1.3rem;
    padding: 12px 5px;
    color: var(--black);
    outline: none;
}

.brutal-input:focus {
    border-color: var(--blue);
}

/* FOOTER */
.editorial-footer {
    background-color: var(--black);
    color: var(--white);
    padding: 40px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    border-top: 1px solid #222;
}

.footer-right-links {
    display: flex;
    gap: 30px;
}

.footer-right-links span {
    cursor: pointer;
}

.footer-right-links span:hover {
    color: var(--blue);
}

/* RESPONSIVE */
@media(max-width: 1024px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.98);
        flex-direction: column;
        padding: 40px;
        gap: 20px;
    }
    .nav-links.mobile-open {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
    .hero-row-middle {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-right-block {
        align-items: flex-start;
        text-align: left;
        margin-top: 40px;
    }
    .hero-desc-paragraph {
        text-align: left;
    }
    .interactive-split-container {
        flex-direction: column;
    }
    .interactive-left,
    .interactive-right {
        width: 100%;
    }
    .tall-gadget-frame {
        height: 400px;
    }
    .about-editorial-row,
    .about-editorial-row.reverse {
        flex-direction: column;
    }
    .about-text-col,
    .about-img-col {
        width: 100%;
    }
    .about-img-col {
        height: 40vh;
    }
    .prod-layout-grid {
        flex-direction: column;
    }
    .prod-gallery-left,
    .prod-details-right {
        width: 100%;
    }
    .prod-gallery-left {
        height: 40vh;
    }
    .home-section-3 {
        flex-direction: column;
    }
    .section3-left,
    .section3-right {
        width: 100%;
    }
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-info-grid {
        grid-template-columns: 1fr 1fr;
    }
    #cart-drawer {
        width: 100%;
    }
}

@media(max-width: 768px) {
    .size-shop {
        font-size: 20vw;
    }
    .size-small {
        font-size: 20vw;
    }
    .size-big {
        font-size: 15vw;
    }
    .size-ideas {
        font-size: 18vw;
    }
    .hero-img-main {
        width: 60vw;
    }
    .hero-img-shape {
        height: 40vh;
    }
    .cascade-letter {
        font-size: 18vw;
    }
    .sec3-large-head {
        font-size: 8vw;
    }
    .about-title {
        font-size: 8vw;
    }
    .about-hero-title {
        font-size: 6vw;
    }
    .prod-title {
        font-size: 6vw;
        width: 100%;
    }
    .prod-price-box {
        font-size: 8vw;
    }
    .work-grid {
        grid-template-columns: 1fr;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    .editorial-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-right-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* SECTION 5: PRODUCT SHOWCASE */
.home-section-5 {
    background-color: var(--black);
    padding: 100px 5%;
}

.section-5-title {
    font-size: 3vw;
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
}

.product-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: #111;
    padding: 30px;
    border: 1px solid #222;
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
}

.product-card h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 10px;
}

.product-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-price {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue);
}

/* SECTION 6: STATISTICS */
.home-section-6 {
    background-color: var(--blue);
    padding: 100px 5%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number-large {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 10px;
}

/* SECTION 7: TESTIMONIALS */
.home-section-7 {
    background-color: var(--black);
    padding: 100px 5%;
}

.section-7-title {
    font-size: 3vw;
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: #111;
    padding: 40px;
    border: 1px solid #222;
}

.testimonial-card p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    margin-top: 20px;
    border-top: 1px solid #222;
    padding-top: 20px;
}

.testimonial-author strong {
    color: var(--white);
    display: block;
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.85rem;
}

/* SECTION 8: PARTNERS */
.home-section-8 {
    background-color: #0a0a0a;
    padding: 80px 5%;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.partner-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #222;
}

.partner-item h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.partner-item p {
    color: var(--gray);
    font-size: 0.8rem;
}

/* SECTION 9: CTA */
.home-section-9 {
    background-color: var(--blue);
    padding: 120px 5%;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 4vw;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-desc {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-btn {
    background: var(--white);
    color: var(--black);
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background: var(--black);
    color: var(--white);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .product-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section-5-title,
    .section-7-title {
        font-size: 5vw;
    }
    .product-showcase-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stat-number-large {
        font-size: 2.5rem;
    }
    .cta-title {
        font-size: 6vw;
    }
}

@media (max-width: 480px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .product-card img {
        height: 200px;
    }
}

/* LEGAL PAGES (PRIVACY & TERMS) */
#privacy-view,
#terms-view {
    background-color: var(--black);
    color: var(--white);
    padding-top: 120px;
}

.legal-hero {
    padding: 40px 5% 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-tag {
    font-size: 0.8rem;
    color: var(--blue);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.legal-title {
    font-size: 4.5vw;
    color: var(--white);
    line-height: 1.1;
    margin-top: 20px;
}

.legal-desc {
    color: var(--gray);
    margin-top: 20px;
    font-size: 1.1rem;
}

.legal-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 100px 5%;
}

.legal-section {
    padding: 20px 0;
}

.legal-section-title {
    font-size: 2.5vw;
    color: var(--blue);
    margin-bottom: 25px;
}

.legal-divider {
    height: 1px;
    background: rgba(255,255,255,0.05);
    margin: 40px 0;
}

.legal-subsection {
    margin-bottom: 30px;
}

.legal-subsection h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 10px;
}

.legal-subsection p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.legal-card {
    background: rgba(255,255,255,0.02);
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.05);
}

.legal-card h4 {
    color: var(--blue);
    font-size: 1rem;
    margin-bottom: 10px;
}

.legal-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.security-item {
    background: rgba(255,255,255,0.02);
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.security-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.security-item h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.security-item p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.rights-item {
    background: rgba(255,255,255,0.02);
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.rights-item h4 {
    color: var(--blue);
    font-size: 1rem;
    margin-bottom: 10px;
}

.rights-item p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.6;
}

.contact-legal {
    background: rgba(255,255,255,0.02);
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.05);
    margin-top: 15px;
}

.contact-legal p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

.contact-legal strong {
    color: var(--white);
}

.legal-footer-note {
    background: rgba(255,255,255,0.02);
    padding: 30px;
    border: 1px solid var(--blue);
    margin-top: 40px;
    text-align: center;
}

.legal-footer-note p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* RESPONSIVE LEGAL */
@media (max-width: 1024px) {
    .legal-title {
        font-size: 6vw;
    }
    .legal-section-title {
        font-size: 3.5vw;
    }
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .legal-title {
        font-size: 8vw;
    }
    .legal-section-title {
        font-size: 5vw;
    }
    .legal-grid {
        grid-template-columns: 1fr;
    }
    .security-grid {
        grid-template-columns: 1fr;
    }
    .rights-grid {
        grid-template-columns: 1fr;
    }
    .legal-hero {
        padding: 40px 5% 30px 5%;
    }
    .legal-content {
        padding: 0 5% 60px 5%;
    }
}

@media (max-width: 480px) {
    .legal-title {
        font-size: 10vw;
    }
    .legal-section-title {
        font-size: 6vw;
    }
    .contact-legal {
        padding: 15px;
    }
    .legal-card {
        padding: 15px;
    }
}

/* SUBSCRIBE PAGE */
#subscribe-view {
    background-color: var(--black);
    color: var(--white);
    padding-top: 120px;
}

.subscribe-hero {
    padding: 40px 5% 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.subscribe-tag {
    font-size: 0.8rem;
    color: var(--blue);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.subscribe-title {
    font-size: 4.5vw;
    color: var(--white);
    line-height: 1.1;
    margin-top: 20px;
}

.subscribe-desc {
    color: var(--gray);
    margin-top: 20px;
    font-size: 1.1rem;
    max-width: 700px;
}

.subscribe-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5% 100px 5%;
}

.subscribe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.subscribe-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px;
}

.subscribe-box.unsubscribe-box {
    border-color: rgba(255,0,0,0.2);
}

.subscribe-box-header {
    text-align: center;
    margin-bottom: 30px;
}

.box-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.box-title {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 10px;
}

.unsubscribe-box .box-title {
    color: var(--red);
}

.box-desc {
    color: var(--gray);
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-select:focus {
    border-color: var(--blue);
}

.form-select option {
    background: var(--black);
    color: var(--white);
}

.subscribe-btn {
    width: 100%;
    padding: 16px;
    background: var(--blue);
    color: var(--white);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.subscribe-btn:hover {
    background: #0033cc;
}

.subscribe-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.unsubscribe-btn {
    width: 100%;
    padding: 16px;
    background: var(--red);
    color: var(--white);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.unsubscribe-btn:hover {
    background: #cc0000;
}

.unsubscribe-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.subscribe-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 0.75rem;
    color: var(--gray);
}

.status-message {
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.status-message.success {
    background: rgba(0,255,0,0.1);
    border: 1px solid rgba(0,255,0,0.2);
    color: #4caf50;
}

.status-message.error {
    background: rgba(255,0,0,0.1);
    border: 1px solid rgba(255,0,0,0.2);
    color: #ff6b6b;
}

.status-message.info {
    background: rgba(255,255,0,0.1);
    border: 1px solid rgba(255,255,0,0.2);
    color: #ffd700;
}

.status-message.hidden {
    display: none;
}

/* BENEFITS SECTION */
.subscribe-benefits {
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 60px;
}

.benefits-title {
    text-align: center;
    font-size: 2.5vw;
    color: var(--white);
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.benefit-item h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 10px;
}

.benefit-item p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* FAQ SECTION */
.subscribe-faq {
    padding-top: 60px;
}

.faq-title {
    text-align: center;
    font-size: 2.5vw;
    color: var(--white);
    margin-bottom: 40px;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 15px 0;
}

.faq-item h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 10px 0;
    font-weight: 400;
}

.faq-item h4:hover {
    color: var(--blue);
}

.faq-plus {
    font-size: 1.5rem;
    color: var(--gray);
    transition: transform 0.3s;
}

.faq-item.active .faq-plus {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    padding-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .subscribe-title {
        font-size: 6vw;
    }
    .benefits-title,
    .faq-title {
        font-size: 3.5vw;
    }
}

@media (max-width: 768px) {
    .subscribe-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .subscribe-title {
        font-size: 8vw;
    }
    .benefits-title,
    .faq-title {
        font-size: 5vw;
    }
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
    .subscribe-footer {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .subscribe-title {
        font-size: 10vw;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .subscribe-box {
        padding: 25px;
    }
    .form-input,
    .form-select {
        padding: 12px 14px;
    }
}