@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
    --primary-yellow: #FFD700;
    --primary-black: #000000;
    --dark-gray: #333333;
    --light-gray: #F0F0F0;
    --white: #ffffff;
    --transition-base: 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--light-gray);
    background-color: var(--primary-black);
    overflow-x: hidden;
}

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

a {
    color: var(--primary-yellow);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: #ffed4a;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.25rem;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #999;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
    z-index: -1;
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    border-color: var(--primary-yellow);
}

.btn-primary:hover {
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary::before {
    transform: scaleX(1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

.btn-secondary:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(0, 0, 0, 1);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-link {
    display: block;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-yellow);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-base);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--primary-black);
    z-index: 999;
    transition: right var(--transition-base);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mobile-nav-link {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
}

.mobile-nav-link.active {
    color: var(--primary-yellow);
}

.mobile-cta {
    margin-top: 1rem;
}

.mobile-phone {
    color: var(--primary-yellow);
    margin-top: 1rem;
    font-size: 1rem;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--light-gray);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-cta {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
    font-size: 1.1rem;
    padding: 16px 40px;
}

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

.value-proposition {
    padding: 5rem 0;
    background: var(--primary-black);
}

.value-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: #ccc;
}

.value-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all var(--transition-base);
}

.value-feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--primary-yellow);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.value-feature h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.value-feature p {
    color: #999;
    margin-bottom: 0;
}

.product-categories {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--primary-black) 0%, #0a0a0a 100%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-yellow);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
    background: rgba(255, 215, 0, 0.05);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    object-fit: contain;
}

.category-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.category-card p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.category-link {
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-yellow);
}

.category-link:hover {
    color: #ffed4a;
}

.key-benefits {
    padding: 5rem 0;
    background: var(--primary-black);
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.5s ease forwards;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }
.benefit-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.benefit-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: var(--primary-yellow);
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #999;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.cta-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.cta-btn {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.page-hero {
    padding: 140px 0 60px;
    background: var(--primary-black);
    text-align: center;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.page-hero.page-hero-technology,
.page-hero.page-hero-about,
.page-hero.page-hero-contact {
    position: relative;
    overflow: hidden;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    color: #999;
    max-width: 600px;
    margin: 0 auto;
}

.product-categories-nav {
    padding: 2rem 0;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow-x: auto;
}

.category-nav-list {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--primary-black);
}

.product-listings {
    padding: 4rem 0;
    background: var(--primary-black);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
    box-shadow: var(--shadow-lg);
}

.product-image {
    background: #111;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 180px;
}

.product-image img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.product-info p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.how-it-works {
    padding: 5rem 0;
    background: var(--primary-black);
}

.how-it-works-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.how-it-works-text > p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.process-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-yellow);
    color: var(--primary-black);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

.process-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.process-content p {
    color: #999;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.how-it-works-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.diagram-container {
    width: 300px;
    height: 300px;
}

.technology-diagram {
    width: 100%;
    height: 100%;
}

.technology-diagram .outer-ring {
    animation: rotate 20s linear infinite;
}

.technology-diagram .middle-ring {
    animation: rotate 15s linear infinite reverse;
}

.technology-diagram .particles circle {
    animation: pulse 2s ease-in-out infinite;
}

.technology-diagram .particles circle:nth-child(2) { animation-delay: 0.5s; }
.technology-diagram .particles circle:nth-child(3) { animation-delay: 1s; }
.technology-diagram .particles circle:nth-child(4) { animation-delay: 1.5s; }

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.results-benefits {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--primary-black) 0%, #0a0a0a 100%);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

.result-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
}

.result-stat {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.result-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.result-card p {
    color: #999;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.rd-section {
    padding: 5rem 0;
    background: var(--primary-black);
}

.rd-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.rd-text p {
    color: #ccc;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.rd-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.rd-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ccc;
}

.rd-features svg {
    width: 20px;
    height: 20px;
    color: var(--primary-yellow);
    flex-shrink: 0;
}

.rd-image {
    display: flex;
    justify-content: center;
}

.rd-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/3;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.rd-placeholder svg {
    width: 80%;
    height: auto;
    margin-bottom: 1rem;
}

.rd-placeholder p {
    color: #666;
    margin-bottom: 0;
}

.our-story {
    padding: 5rem 0;
    background: var(--primary-black);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text p {
    color: #ccc;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.story-quote {
    border-left: 4px solid var(--primary-yellow);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.story-quote p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.story-quote cite {
    color: var(--primary-yellow);
    font-size: 0.9rem;
}

.story-image {
    display: flex;
    justify-content: center;
}

.story-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/3;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.story-placeholder svg {
    width: 80%;
    height: auto;
    margin-bottom: 1rem;
}

.story-placeholder p {
    color: #666;
    margin-bottom: 0;
}

.our-values {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--primary-black) 0%, #0a0a0a 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--primary-yellow);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: #999;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.our-team {
    padding: 5rem 0;
    background: var(--primary-black);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
}

.team-image {
    margin-bottom: 1.5rem;
}

.team-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-placeholder svg {
    width: 60px;
    height: 60px;
}

.team-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.team-title {
    color: var(--primary-yellow);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact-form-section {
    padding: 5rem 0;
    background: var(--primary-black);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--white);
}

.form-group .required {
    color: var(--primary-yellow);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--white);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

.contact-details {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--primary-black) 0%, #0a0a0a 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

.contact-card:hover {
    border-color: var(--primary-yellow);
}

.contact-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    color: var(--primary-yellow);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #ccc;
    margin-bottom: 0.25rem;
}

.contact-card a {
    color: #ccc;
}

.contact-card a:hover {
    color: var(--primary-yellow);
}

.contact-note {
    color: #666 !important;
    font-size: 0.9rem;
}

.contact-map {
    padding: 0 0 5rem;
}

.map-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: #111;
}

.map-placeholder svg {
    width: 100%;
    height: 100%;
}

.footer {
    background: #0a0a0a;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-slogan {
    color: #999;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.footer-copyright {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: #999;
    font-size: 0.95rem;
    transition: color var(--transition-base);
}

.footer-nav a:hover {
    color: var(--primary-yellow);
}

.footer-contact p {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: #999;
}

.footer-contact a:hover {
    color: var(--primary-yellow);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #999;
    transition: all var(--transition-base);
}

.social-link:hover {
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.badge {
    padding: 6px 12px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--primary-yellow);
}

.footer-bottom {
    background: #050505;
    padding: 1.5rem 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-bottom a {
    color: #666;
    font-size: 0.9rem;
}

.footer-bottom a:hover {
    color: var(--primary-yellow);
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .how-it-works-content,
    .rd-content,
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .how-it-works-visual,
    .rd-image,
    .story-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .nav,
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .page-hero {
        padding: 120px 0 40px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-cta {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid,
    .values-grid,
    .team-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
