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

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #1a1a1a;
    --accent-orange: #ff8c42;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --text-light-gray: #888888;
    --border-color: #333333;
    --card-bg: #1a1a1a;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--primary-bg);
    border: 2px solid var(--accent-orange);
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    z-index: 10000;
    transform: translateX(120%);
    transition: var(--transition);
}

.cookie-consent.show {
    transform: translateX(0);
}

.cookie-consent.hide {
    transform: translateX(120%);
}

.cookie-content .cookie-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.cookie-content .cookie-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cookie-content h3 {
    color: var(--accent-orange);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cookie-content p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-accept {
    background: var(--accent-orange);
    color: var(--primary-bg);
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.btn-accept:hover {
    background: #e67a35;
    transform: translateY(-2px);
}

.btn-decline {
    background: transparent;
    color: var(--accent-orange);
    border: 2px solid var(--accent-orange);
    padding: 13px 25px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.btn-decline:hover {
    background: var(--accent-orange);
    color: var(--primary-bg);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo {
    width: 24px;
    height: 24px;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-orange);
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-orange);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url(/wp-content/themes/techfile_vx7ytoh1/assets/images/hero-bcg.webp);
    background-position: center 30%;
    background-repeat: no-repeat;
    background-size: contain;
}

.hero-content {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero-main {
    max-width: 594px;
    width: 100%;
}

.hero-main h1 {
    font-size: 76px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--text-white);
    text-align: left;
    position: relative;
    z-index: 3;
}

.hero-description p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.4;
    text-align: justify;
    font-weight: 400;
    max-width: 155px;
    width: 100%;
}

.cta-button {
    background: var(--accent-orange);
    color: var(--primary-bg);
    border: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.cta-button:hover {
    background: #e67a35;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 402px;
    width: 100%;
    position: absolute;
    left: 0;
}

.hero-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(255, 140, 66, 0.2));
    animation: float 6s ease-in-out infinite;
}

.hero-text {
    margin-left: auto;
display: flex;
gap: 30px;
max-width: 779px;
width: 70%;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Slam Dunk Section */
.slam-dunk {
    padding: 80px 0;
    position: relative;
}

.slam-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: center;
}

.slam-text {
    max-width: 492px;
}

.slam-text h2 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-white);
    position: relative;
    z-index: 3;
}

.slam-image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 334px;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.slam-image img {
    width: 100%;
    max-width: 100%;

    filter: drop-shadow(0 15px 35px rgba(255, 140, 66, 0.15));
}

/* Sophistication Section */
.sophistication {
    padding: 80px 0;
    position: relative;
}

.sophistication-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: center;
}

.sophistication-text {
    max-width: 482px;
}

.sophistication-text h2 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-white);
    position: relative;
    z-index: 3;
}

.sophistication-image {
    display: flex;
    justify-content: center;
    align-items: center;
     max-width: 252px;
    width: 100%;
    position: absolute;
    left: 55%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.sophistication-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 35px rgba(255, 255, 255, 0.1));
}

.arrow {
    max-width: 311px;
    width: 100%;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    text-align: left;
    margin-bottom: 60px;
    color: var(--text-white);
}

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

.gallery-item {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
    padding: 20px;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #ffffff;
}

.item-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .item-image img {
    transform: scale(1.05);
}

.item-content {
   padding-top: 15px;
    background: #ffffff;
}

.item-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000;
}

.item-content p {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: left;
}

.item-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.buy-button {
    background: var(--accent-orange);
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    width: 100%;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.buy-button:hover {
    background: #e67a35;
    transform: translateY(-2px);
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background: var(--primary-bg);
}

.advantages .section-title {
    text-align: left;
    margin-bottom: 40px;
}

.advantages-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.advantages-row {
    display: flex;
    gap: 30px;
}

.advantages-top {
    justify-content: flex-start;
}

.advantages-bottom {
    justify-content: center;
}

.advantage-item {
    flex: 1;
    max-width: 280px;
    padding: 20px;
    border: 1px solid #FFF;
    background: var(--primary-bg);
    transition: var(--transition);
    text-align: left;
}

.advantage-item:nth-of-type(5) {
    grid-column-start: 3;
}

.advantage-item:nth-of-type(6) {
    grid-column-start: 4;
}

.advantage-item:hover {
    border-color: var(--accent-orange);
    transform: translateY(-5px);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.advantage-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-white);
}

.advantage-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
   max-width: 631px;
   width: 100%;
}

.cta-text h2 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-white);
}

.cta-image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 471px;
    width: 40%;
    position: absolute;
    right: 0;
}

.cta-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(255, 140, 66, 0.2));
}

.cta-contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.contact-box {
    border: 2px solid #ffffff;
    padding: 25px;
    text-align: left;
}

.contact-box:nth-of-type(1) {
    grid-row: span 2 / span 2;
}

.contact-box:nth-of-type(3) {
    grid-column-start: 2;
}

.contact-box h4 {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-box p {
    color: var(--text-white);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--primary-bg);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-logo img {
    width: 25px;
    height: 25px;
}

.footer-logo span {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-orange);
}

.footer-links {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
}

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

.footer-info h4 {
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-info p {
    color: var(--text-white);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: #e67a35;
    transform: translateY(-3px);
}

.footer-social img {
    width: 100%;
 
    
}

.footer-copyright {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: 20px;
}

.footer-copyright p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

.card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
}

.card-title {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 48px;
    text-transform: uppercase;
}

.card-title span {
    color: #FF9E20;
}

.card-content {
    max-width: 346px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
}

.card-content h3 {
    font-size: 22px;
}

.card-content ul {
    padding-left: 20px;
}

.card-content .buy-button {
    max-width: 220px;
    text-align: center;
}

.card-image {
    max-width: 544px;
    width: 100%;
}

.card-image img {
    width: 100%;
}

.card-arrow {
    max-width: 260px;
    width: 100%;
    align-self: flex-end;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .hero-content {
        flex-direction: column;
        gap: 30px;
       
    }

    .hero-text {
        flex-direction: column;
        margin-left: 0;
        width: 100%;
    }
    
    .hero-main h1 {
        font-size: 56px;
       
    }
    
    .hero-description p {
      
        max-width: 600px;
       
    }

    .hero-image {
        align-self: flex-start;
        position: relative;
        left: -20px;
    }
    
    .slam-content,
    .sophistication-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .cta-contact {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-row {
        flex-direction: column;
        align-items: center;
    }
    
    .advantages-top,
    .advantages-bottom {
        justify-content: center;
    }
    
    .advantage-item {
        max-width: 400px;
       
    }
    
    .slam-text h2 {
        font-size: 36px;
    }
    
    .sophistication-text h2 {
        font-size: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    .card {
        flex-direction: column;

    }
    .card-content {
        max-width: 100%;
    }
    .card-arrow {
        align-self: flex-start;
    }
}

@media (max-width: 768px) {
.card-title {
    font-size: 36px;
}

    .arrow {
        display: none;
    }
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
       
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
        text-align: center;
        background-position: center 20%;
    }
    
    .hero-main h1 {
        font-size: 32px;
    }

    .hero-image {
        width: 75%;
    }

    .slam-image {
        left: auto;
        right: 0;
        transform: none;
        width: 40%;
    }

    .slam-text {
        max-width: 290px;
    }
    
    .slam-text h2 {
        font-size: 32px;
       
    }
    
    .cta-text h2 {
        font-size: 28px;
        text-align: center;
    }

    .sophistication-image {
        left: 0;
        transform: none;
        width: 35%;
    }

    .sophistication-text {
        margin-left: auto;
        max-width: 280px;
    }
    
    .sophistication-text h2 {
        font-size: 32px;
      margin-left: auto;
    }

    .advantages-wrapper {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-inner {
        flex-direction: column;
    }

    .cta-image {
        position: relative;
        right: -15px;
        align-self: flex-end;
    }
    
    .cta-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .cta-contact {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-row {
        flex-direction: column;
        align-items: center;
    }
    
    .advantages-top,
    .advantages-bottom {
        justify-content: center;
    }
    
    .advantage-item {
        max-width: 100%;
       width: 100%;
       flex: 0 1 46%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-consent {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-main h1 {
        font-size: 26px;
    }
    
    .slam-text h2 {
        font-size: 28px;
    }
    
    .cta-text h2 {
        font-size: 24px;
    }
    
    .sophistication-text h2 {
        font-size: 28px;
    }
    
    .cta-main {
        margin-bottom: 40px;
    }

    .cta-contact {
        display: flex;
        flex-direction: column;
    }
    
    .contact-box {
        padding: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .gallery,
    .advantages,
    .slam-dunk,
    .sophistication,
    .cta-section {
        padding: 60px 0;
    }
    
    .item-content {
       
    }

.advantages-wrapper {
    flex-direction: column;
}
    
    .advantage-item {
        padding: 20px 20px;
    }
}

/* Smooth Animations */
.gallery-item,
.advantage-item {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

              .page {
                padding: 140px 0 80px;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              
                

                