/* All In One Trainer - Multi-Functional Home Fitness Equipment Website Styles */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background: #0f0f23;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #f7fafc;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: #a0aec0;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #9f7aea, #667eea);
    color: #fff;
    box-shadow: 0 8px 25px rgba(159, 122, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(159, 122, 234, 0.5);
}

.btn-secondary {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.btn-secondary:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #9f7aea;
    border: 2px solid #9f7aea;
}

.btn-outline:hover {
    background: #9f7aea;
    color: #fff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(159, 122, 234, 0.2);
    transition: all 0.3s ease;
}

#navbar.scrolled {
    background: rgba(15, 15, 35, 0.98);
    box-shadow: 0 4px 20px rgba(159, 122, 234, 0.2);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo h2 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #9f7aea, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #9f7aea;
    background: rgba(159, 122, 234, 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #e2e8f0;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #2d2d5a 100%);
    padding-top: 30px;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(159, 122, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(159, 122, 234, 0.05) 50%, transparent 70%);
    animation: gradient-shift 10s ease-in-out infinite;
}

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

@keyframes gradient-shift {
    0%, 100% { transform: translateX(-50px); }
    50% { transform: translateX(50px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(159, 122, 234, 0.2);
    color: #9f7aea;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(159, 122, 234, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #f7fafc;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.neon-text {
    background: linear-gradient(135deg, #9f7aea, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(159, 122, 234, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: #cbd5e0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.equipment-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.showcase-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border: 2px solid rgba(159, 122, 234, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(159, 122, 234, 0.3);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.icon-float {
    position: absolute;
    background: rgba(159, 122, 234, 0.9);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    animation: pulse 2s ease-in-out infinite;
}

.icon-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 50%;
    right: -15%;
    animation-delay: 0.7s;
}

.icon-3 {
    bottom: 10%;
    left: -5%;
    animation-delay: 1.4s;
}

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

/* Features Matrix Section */
.features-matrix-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a3a 0%, #2d2d5a 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #f7fafc;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #a0aec0;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-diamond {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(15, 15, 35, 0.8);
    border-radius: 25px;
    border: 1px solid rgba(159, 122, 234, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-diamond::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(159, 122, 234, 0.1), transparent);
    transition: left 0.6s;
}

.feature-diamond:hover::before {
    left: 100%;
}

.feature-diamond:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(159, 122, 234, 0.2);
    border-color: rgba(159, 122, 234, 0.4);
}

.diamond-shape {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9f7aea, #667eea);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(159, 122, 234, 0.4);
    transition: all 0.3s ease;
    transform: rotate(45deg);
}

.diamond-shape i {
    transform: rotate(-45deg);
}

.feature-diamond:hover .diamond-shape {
    transform: rotate(45deg) scale(1.1);
}

.feature-diamond h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #f7fafc;
    margin-bottom: 1rem;
}

.feature-diamond p {
    color: #a0aec0;
    line-height: 1.6;
    margin: 0;
}

/* Product Gallery Section */
.product-gallery-section {
    padding: 8rem 0;
    background: #0f0f23;
}

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

.gallery-main {
    position: relative;
}

.main-display {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(159, 122, 234, 0.2);
}

.gallery-main-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

.image-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.overlay-badge {
    background: rgba(159, 122, 234, 0.9);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #9f7aea;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(159, 122, 234, 0.4);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-content {
    padding-left: 2rem;
}

.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(159, 122, 234, 0.2);
    color: #9f7aea;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(159, 122, 234, 0.3);
}

.gallery-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f7fafc;
    margin-bottom: 1.5rem;
}

.gallery-content p {
    font-size: 1.1rem;
    color: #a0aec0;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.training-benefits h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f7fafc;
    margin-bottom: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #a0aec0;
    font-weight: 500;
    padding: 0.75rem;
    background: rgba(159, 122, 234, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(159, 122, 234, 0.1);
}

.benefit-item i {
    color: #9f7aea;
    font-size: 1.1rem;
}

.video-preview {
    margin-top: 2rem;
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.video-link:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

/* Specifications Section */
.specifications-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a3a 0%, #0f0f23 100%);
}

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

.specs-visual {
    position: relative;
}

.specs-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(159, 122, 234, 0.2);
}

.spec-highlights {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.highlight {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-dot {
    width: 12px;
    height: 12px;
    background: #9f7aea;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(159, 122, 234, 0.3);
    animation: ping 2s ease-in-out infinite;
}

@keyframes ping {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.highlight-label {
    background: rgba(159, 122, 234, 0.9);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.highlight-1 {
    top: 20%;
    left: 10%;
}

.highlight-2 {
    top: 40%;
    right: 15%;
}

.highlight-3 {
    bottom: 25%;
    left: 20%;
}

.specs-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.spec-group {
    background: rgba(15, 15, 35, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(159, 122, 234, 0.2);
}

.spec-group h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #f7fafc;
    margin-bottom: 1.5rem;
}

.spec-group h3 i {
    color: #9f7aea;
    font-size: 1.2rem;
}

.spec-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(159, 122, 234, 0.1);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #cbd5e0;
}

.spec-value {
    color: #f7fafc;
    font-weight: 500;
    text-align: right;
}

/* Variations Section */
.variations-section {
    padding: 8rem 0;
    background: #0f0f23;
}

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

.variation-card {
    background: rgba(15, 15, 35, 0.8);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 2px solid rgba(159, 122, 234, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.variation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #9f7aea, #667eea);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.variation-card:hover::before {
    transform: scaleX(1);
}

.variation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(159, 122, 234, 0.2);
    border-color: rgba(159, 122, 234, 0.4);
}

.variation-card.featured {
    border-color: #9f7aea;
    transform: scale(1.05);
}

.variation-card.featured::before {
    transform: scaleX(1);
}

.variation-header {
    text-align: center;
    margin-bottom: 2rem;
}

.variation-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f7fafc;
    margin-bottom: 0.5rem;
}

.variation-badge {
    display: inline-block;
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.variation-badge.popular {
    background: linear-gradient(135deg, #9f7aea, #667eea);
    color: #fff;
}

.price-display {
    text-align: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #a0aec0;
    vertical-align: top;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #f7fafc;
}

.cents {
    font-size: 1.5rem;
    font-weight: 600;
    color: #a0aec0;
}

.variation-features {
    margin-bottom: 2rem;
}

.variation-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #a0aec0;
}

.variation-features .feature-item i {
    color: #48bb78;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #2d2d5a 0%, #1a1a3a 100%);
    color: #f7fafc;
    position: relative;
    overflow: hidden;
}

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

.cta-particles {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(159, 122, 234, 0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.cta-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #f7fafc;
}

.cta-text p {
    font-size: 1.2rem;
    color: #cbd5e0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #cbd5e0;
    font-weight: 500;
}

.cta-benefits .benefit-item i {
    color: #9f7aea;
    font-size: 1.2rem;
}

.cta-action {
    text-align: center;
}

.price-highlight {
    background: rgba(159, 122, 234, 0.1);
    border: 1px solid rgba(159, 122, 234, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #a0aec0;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #9f7aea;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #cbd5e0;
}

.guarantee-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #a0aec0;
    font-size: 0.9rem;
}

.guarantee-text i {
    color: #48bb78;
}

/* Footer */
footer {
    background: #0a0a1a;
    color: #cbd5e0;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: #f7fafc;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-logo h3 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #9f7aea, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #9f7aea;
}

.social-links {
    display: none;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(159, 122, 234, 0.1);
    color: #9f7aea;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #9f7aea;
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(159, 122, 234, 0.2);
    color: #a0aec0;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .gallery-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gallery-content {
        padding-left: 0;
    }
    
    .specs-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 15, 35, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 4px 20px rgba(159, 122, 234, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    /* Logo image sizing */
    .logo img {
        height: 36px;
        width: auto;
        display: block;
    }

    .footer-logo img {
        height: 40px;
        width: auto;
        display: block;
    }
    
    /* Reduce hero image size slightly on tablets and small screens */
    .hero-section .equipment-showcase {
        max-width: 420px;
    }
    
    .hero-section .hero-image {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .features-matrix {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .variations-grid {
        grid-template-columns: 1fr;
    }
    
    .variation-card.featured {
        transform: none;
    }
    
    .cta-text h2 {
        font-size: 2.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .feature-diamond {
        padding: 1.5rem;
    }
    
    .diamond-shape {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .gallery-content h2 {
        font-size: 2rem;
    }
    
    .price-display .amount {
        font-size: 2.5rem;
    }
    
    .cta-text h2 {
        font-size: 1.8rem;
    }

    /* Further reduce hero image size on small mobile screens */
    .hero-section .equipment-showcase {
        max-width: 320px;
    }
    
    .hero-section .hero-image {
        max-width: 100%;
    }
}

/* Global logo image sizing */
.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.footer-logo img {
    height: 60px;
    width: auto;
    display: block;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Shop Page Specific Styles */
.product-hero-section {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #1a1a3a 0%, #2d2d5a 100%);
    color: #f7fafc;
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(159, 122, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(159, 122, 234, 0.2);
    color: #9f7aea;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(159, 122, 234, 0.3);
}

.product-hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.product-subtitle {
    font-size: 1.2rem;
    color: #cbd5e0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.product-highlights {
    margin-bottom: 3rem;
}

.highlight-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.highlight-item i {
    font-size: 1.5rem;
    color: #9f7aea;
    width: 40px;
    text-align: center;
}

.highlight-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #f7fafc;
}

.highlight-item p {
    font-size: 0.9rem;
    color: #a0aec0;
    margin: 0;
}

.product-pricing {
    background: rgba(159, 122, 234, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(159, 122, 234, 0.1);
    backdrop-filter: blur(10px);
}

.price-options {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.price-option {
    flex: 1;
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(159, 122, 234, 0.2);
    transition: all 0.3s ease;
}

.price-option.featured {
    border-color: #9f7aea;
    background: rgba(159, 122, 234, 0.1);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #a0aec0;
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #f7fafc;
    margin-bottom: 0.25rem;
}

.price-note {
    font-size: 0.8rem;
    color: #9f7aea;
    font-weight: 600;
}

.product-gallery {
    position: relative;
}

.main-product-view {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(159, 122, 234, 0.3);
    margin-bottom: 1.5rem;
}

.main-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.main-image:hover {
    transform: scale(1.05);
}

.image-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    background: rgba(159, 122, 234, 0.9);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.badge.professional {
    background: rgba(72, 187, 120, 0.9);
}

.badge.organic {
    background: rgba(102, 126, 234, 0.9);
}

.thumbnail-gallery {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #9f7aea;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(159, 122, 234, 0.4);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detailed-specs-section {
    padding: 8rem 0;
    background: #0f0f23;
}

.specs-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
}

.specs-navigation h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f7fafc;
    margin-bottom: 2rem;
}

.spec-tabs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spec-tab {
    background: rgba(15, 15, 35, 0.8);
    border: 2px solid rgba(159, 122, 234, 0.2);
    color: #cbd5e0;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-align: left;
}

.spec-tab:hover,
.spec-tab.active {
    border-color: #9f7aea;
    color: #9f7aea;
    background: rgba(159, 122, 234, 0.05);
}

.specs-content {
    position: relative;
}

.spec-panel {
    display: none;
    background: rgba(15, 15, 35, 0.8);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(159, 122, 234, 0.1);
    border: 1px solid rgba(159, 122, 234, 0.2);
}

.spec-panel.active {
    display: block;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(159, 122, 234, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(159, 122, 234, 0.1);
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: rgba(159, 122, 234, 0.1);
    box-shadow: 0 8px 25px rgba(159, 122, 234, 0.08);
    transform: translateY(-3px);
}

.spec-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9f7aea, #667eea);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.spec-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f7fafc;
    margin-bottom: 0.5rem;
}

.spec-details p {
    color: #cbd5e0;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.spec-note {
    font-size: 0.9rem;
    color: #a0aec0;
}

.training-areas h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f7fafc;
    margin-bottom: 2rem;
    text-align: center;
}

.training-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: rgba(159, 122, 234, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(159, 122, 234, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(159, 122, 234, 0.1);
    box-shadow: 0 8px 25px rgba(159, 122, 234, 0.08);
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2rem;
    color: #9f7aea;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f7fafc;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #a0aec0;
    font-size: 0.95rem;
    margin: 0;
}

.video-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f7fafc;
    margin-bottom: 1rem;
}

.video-container {
    text-align: center;
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.video-link:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.purchase-cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #2d2d5a 0%, #1a1a3a 100%);
    color: #f7fafc;
    position: relative;
    overflow: hidden;
}

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

.cta-pattern {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(159, 122, 234, 0.1) 0%, transparent 50%);
}

.cta-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-text p {
    font-size: 1.2rem;
    color: #cbd5e0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e0;
    font-weight: 500;
}

.guarantee-item i {
    color: #9f7aea;
    font-size: 1.1rem;
}

.cta-purchase {
    text-align: center;
}

.final-pricing {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pricing-option {
    flex: 1;
    background: rgba(159, 122, 234, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(159, 122, 234, 0.1);
    transition: all 0.3s ease;
}

.pricing-option.featured {
    border-color: #9f7aea;
    background: rgba(159, 122, 234, 0.1);
}

.option-label {
    display: block;
    font-size: 0.9rem;
    color: #a0aec0;
    margin-bottom: 0.5rem;
}

.option-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #f7fafc;
    margin-bottom: 0.25rem;
}

.option-badge {
    font-size: 0.8rem;
    color: #9f7aea;
    font-weight: 600;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a0aec0;
    font-size: 0.9rem;
}

.security-item i {
    color: #48bb78;
}

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

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

/* Responsive Design for Shop Page */
@media (max-width: 1024px) {
    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .specs-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .spec-tabs {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .product-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .highlight-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .price-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
    }
    
    .training-benefits {
        grid-template-columns: 1fr;
    }
    
    .guarantee-features {
        grid-template-columns: 1fr;
    }
    
    .final-pricing {
        flex-direction: column;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .product-hero-section h1 {
        font-size: 2rem;
    }
    
    .thumbnail-gallery {
        flex-wrap: wrap;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
}
/* Page Sections - Shared Page Hero */
.page-hero {
    padding: 7rem 0 3rem;
    background: linear-gradient(135deg, #1a1a3a 0%, #2d2d5a 100%);
    border-bottom: 1px solid rgba(159, 122, 234, 0.2);
}
.page-hero h1 {
    font-size: 2.5rem;
    color: #f7fafc;
    margin-bottom: 0.5rem;
}
.page-hero p {
    font-size: 1.1rem;
    color: #a0aec0;
}

/* About Page */
.about-content-section { padding: 4rem 0; background: #0f0f23; }
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: start; }
.about-text h2 { font-size: 2rem; color: #f7fafc; margin-bottom: 1rem; }
.about-text h3 { font-size: 1.25rem; color: #f7fafc; margin-top: 1.5rem; }
.image-stack { position: relative; }
.stack-image { width: 100%; border-radius: 14px; box-shadow: 0 12px 35px rgba(159,122,234,0.2); }
.stack-image.secondary { position: absolute; right: -10%; bottom: -10%; width: 60%; border: 6px solid #0f0f23; }
.stats-overlay { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 1.25rem; }
.stat-item { background: rgba(15,15,35,0.8); border: 1px solid rgba(159,122,234,0.2); border-radius: 12px; padding: 0.75rem; text-align: center; }
.stat-number { color: #9f7aea; }

.values-section { padding: 4rem 0; background: #1a1a3a; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.5rem; }
.value-card { background: rgba(15,15,35,0.8); border: 1px solid rgba(159,122,234,0.2); border-radius: 16px; padding: 1.5rem; box-shadow: 0 8px 24px rgba(159,122,234,0.1); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.value-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(159,122,234,0.2); }
.value-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, #9f7aea, #667eea); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 8px 24px rgba(159,122,234,0.3); margin-bottom: 1rem; }

/* Contact Page */
.contact-content-section { padding: 4rem 0; background: #0f0f23; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.contact-info .info-header h2 { font-size: 1.75rem; }
.contact-methods { display: grid; grid-template-columns: 1fr; gap: 1rem; margin: 1rem 0; }
.contact-method { display: flex; gap: 1rem; background: rgba(15,15,35,0.8); border: 1px solid rgba(159,122,234,0.2); border-radius: 14px; padding: 1rem; align-items: center; }
.method-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(159,122,234,0.2); color: #9f7aea; display: inline-flex; align-items: center; justify-content: center; }
.support-features .feature-item { background: rgba(15,15,35,0.8); border: 1px solid rgba(159,122,234,0.2); border-radius: 12px; padding: 0.75rem 1rem; }
.contact-form-section { background: rgba(15,15,35,0.8); border: 1px solid rgba(159,122,234,0.2); border-radius: 16px; padding: 1.5rem; box-shadow: 0 10px 28px rgba(159,122,234,0.1); }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form .form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.contact-form label { font-weight: 600; color: #cbd5e0; }
.contact-form input, .contact-form select, .contact-form textarea { padding: 0.875rem 1rem; border: 1px solid rgba(159,122,234,0.2); border-radius: 10px; font: inherit; color: #f7fafc; background: rgba(15,15,35,0.8); }
.checkbox-group .checkbox-label { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.checkbox-group input[type="checkbox"] { width: 18px; height: 18px; }

.faq-section { padding: 3rem 0; background: #0f0f23; }
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.faq-item { border: 1px solid rgba(159,122,234,0.2); border-radius: 12px; overflow: hidden; background: rgba(15,15,35,0.8); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; cursor: pointer; background: rgba(159,122,234,0.1); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 1.25rem; }
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 1rem; }

/* Blog Listing Page */
.blog-content-section { padding: 4rem 0; }
.blog-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; align-items: start; }
.blog-card { background: rgba(15,15,35,0.8); border: 1px solid rgba(159,122,234,0.2); border-radius: 16px; overflow: hidden; box-shadow: 0 12px 30px rgba(159,122,234,0.1); }
.blog-card .blog-image img { width: 100%; display: block; }
.blog-card .blog-content { padding: 1.25rem; }
.blog-card .blog-meta { display: flex; gap: 1rem; color: #a0aec0; font-size: 0.9rem; margin-bottom: 0.5rem; }
.blog-card h2 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.blog-card .read-more { display: inline-flex; align-items: center; gap: 0.5rem; color: #9f7aea; text-decoration: none; font-weight: 600; }
.blog-card.featured { border-color: #9f7aea; }
.blog-badge { position: absolute; top: 12px; left: 12px; background: #9f7aea; color: #fff; padding: 0.3rem 0.6rem; border-radius: 999px; font-size: 0.8rem; display: inline-flex; align-items: center; gap: 0.4rem; }
.blog-sidebar { display: grid; gap: 1.5rem; }
.sidebar-widget { background: rgba(15,15,35,0.8); border: 1px solid rgba(159,122,234,0.2); border-radius: 16px; padding: 1.25rem; }
.category-list { display: grid; gap: 0.5rem; }
.category-item { display: flex; justify-content: space-between; padding: 0.5rem 0.75rem; border: 1px solid rgba(159,122,234,0.2); border-radius: 10px; color: #f7fafc; text-decoration: none; }
.support-links .support-item { display: flex; gap: 0.75rem; padding: 0.75rem; align-items: center; text-decoration: none; color: #f7fafc; border: 1px solid rgba(159,122,234,0.2); border-radius: 10px; }

/* Legal Pages (Privacy, Terms, Cookies) */
.legal-page { padding: 4rem 0; background: #0f0f23; }
.legal-header h1 { font-size: 2rem; }
.last-updated { color: #a0aec0; }
.legal-content { display: grid; gap: 1rem; margin-top: 1rem; }
.legal-section { background: rgba(15,15,35,0.8); border: 1px solid rgba(159,122,234,0.2); border-radius: 14px; padding: 1.25rem 1.5rem; box-shadow: 0 8px 20px rgba(159,122,234,0.1); }

/* Small tweaks for fixed navbar offset on inner pages */
main { padding-top: 4.5rem; }

/* Blog Article Pages */
.article-hero {
    padding: 7rem 0 2rem;
    background: linear-gradient(135deg, #1a1a3a 0%, #2d2d5a 100%);
    border-bottom: 1px solid rgba(159, 122, 234, 0.2);
}

.article-header .breadcrumb {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    color: #a0aec0;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.article-header .breadcrumb a {
    color: #9f7aea;
    text-decoration: none;
}

.article-meta {
    display: flex;
    gap: 1rem;
    color: #a0aec0;
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.article-excerpt {
    color: #cbd5e0;
    max-width: 800px;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.article-content-section {
    padding: 3rem 0;
    background: #0f0f23;
}

.article-layout.single-column {
    max-width: 900px;
    margin: 0 auto;
}

.article-content .content-block {
    background: rgba(15, 15, 35, 0.8);
    border: 1px solid rgba(159, 122, 234, 0.2);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 8px 20px rgba(159, 122, 234, 0.05);
    margin-bottom: 1rem;
}

.article-content h2 {
    color: #f7fafc;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.article-content p {
    color: #cbd5e0;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.article-content a {
    color: #9f7aea;
    text-decoration: none;
}

.article-content a:hover {
    text-decoration: underline;
}

.checklist {
    list-style: none;
    padding-left: 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 0.75rem 0;
    color: #cbd5e0;
}

.checklist i {
    color: #48bb78;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Responsive overrides for subpages */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .stack-image.secondary { position: static; width: 100%; border: none; margin-top: 1rem; }
}
@media (max-width: 768px) {
    .contact-form .form-row { grid-template-columns: 1fr; }
    
    .article-hero h1 {
        font-size: 1.9rem;
    }
    
    .article-content h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .article-hero h1 {
        font-size: 1.7rem;
    }
    
    .article-content h2 {
        font-size: 1.15rem;
    }
}