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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    overflow-x: hidden;
}

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

header {
    background: linear-gradient(135deg, #ff6b35 0%, #9d4edd 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

nav {
    background: transparent;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle:hover {
    opacity: 0.8;
}

.hero {
    background: linear-gradient(135deg, #ff6b35 0%, #9d4edd 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Cryptotrading - Tech Grid Pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5),
                 0 0 40px rgba(157, 78, 221, 0.3);
}

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

/* Keep hero typography legible on colorful backgrounds */
.hero,
.hero h1,
.hero h2,
.hero h3,
.hero p,
.hero li,
.hero span,
.hero strong {
    color: #fff;
}

.hero .subtitle {
    color: rgba(255, 255, 255, 0.92);
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Cryptotrading - Tech Alert Style */
.disclaimer-box {
    background: #1a1a2e;
    border: 2px solid #ff6b35;
    border-radius: 3px;
    padding: 1.5rem 2rem 1.5rem 3.5rem;
    margin: 2rem auto;
    max-width: 850px;
    box-shadow: 5px 5px 0 rgba(255, 107, 53, 0.2);
    position: relative;
}

.disclaimer-box::before {
    content: '⚡';
    position: absolute;
    left: 1rem;
    top: 1.5rem;
    font-size: 1.8rem;
    animation: neonPulse 2s ease-in-out infinite;
}

.disclaimer-box p {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    color: #ffcc80 !important;
    font-family: 'Courier New', monospace;
    font-weight: 500;
}

.disclaimer-box strong {
    color: #ff6b35 !important;
    text-transform: uppercase;
}

.disclaimer-box ul {
    margin-left: 2rem;
    margin-top: 0.5rem;
    color: #ff9900;
}

.about-preview .service-card p,
.about-preview p, .ai-feature p {
    color: #ddd !important;
}

/* Fix for disclaimer-box on light backgrounds */
section.about .disclaimer-box,
section:not(.hero):not([style*="background"]) .disclaimer-box {
    background: #1a1a2e;
}

section.about .disclaimer-box p,
section:not(.hero):not([style*="background"]) .disclaimer-box p {
    color: #ff9900 !important;
}

section {
    padding: 4rem 0;
}

section:nth-child(even) {
    background-color: white;
}

section .container {
    text-align: center;
}

section .container > h2,
section .container > p:not(.disclaimer-box p),
section .container > .intro-content,
section .container > .intro-text {
    text-align: center;
}

section .container ul,
section .container ol,
section .container .about-text,
section .container .service-item,
section .container .about-content {
    text-align: left;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #ff6b35;
}

h3 {
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

p:last-child {
    margin-bottom: 0;
}

/* Cryptotrading Consultation - Bold Tech Text Styles */
section:not(.hero) p {
    line-height: 1.75;
    font-size: 1.05rem;
    color: #333;
    letter-spacing: 0.3px;
}

section:not(.hero) strong {
    font-weight: 700;
    color: #ff6b35;
    text-transform: uppercase;
    font-size: 0.95em;
    letter-spacing: 0.5px;
}

section:not(.hero) .subtitle {
    font-size: 1.3rem;
    color: #9d4edd;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Cryptotrading - Unique Layout: Masonry 2-Column */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

/* Cryptotrading - Card with Sharp Edges & Offset Shadow */
.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 5px;
    box-shadow: 8px 8px 0 rgba(255, 107, 53, 0.15);
    border: 2px solid #ff6b35;
    transition: all 0.3s ease;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35, #9d4edd);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.service-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 rgba(157, 78, 221, 0.25);
    border-color: #9d4edd;
}

.service-card h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.ai-tools {
    background-color: #f9f9f9;
}

.ai-content {
    max-width: 1000px;
    margin: 0 auto;
}

.ai-content > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.ai-tool-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.ai-tool-card h3 {
    color: #764ba2;
    margin-bottom: 1rem;
}

/* Cryptotrading - Pricing: Staggered Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 3rem auto 0;
    clear: both;
}

.pricing-card:nth-child(2) {
    transform: scale(1.05);
    margin-top: -1rem;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card:nth-child(2) {
        transform: scale(1);
        margin-top: 0;
    }
}

/* Cryptotrading - Pricing Card Tech Style */
.pricing-card {
    background: linear-gradient(135deg, #2a2a3e 0%, #1a1a2e 100%);
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: 10px 10px 0 rgba(255, 107, 53, 0.2);
    border: 3px solid #ff6b35;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #9d4edd, #ff6b35);
    background-size: 200% 100%;
    animation: borderFlow 3s linear infinite;
}

@keyframes borderFlow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.pricing-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px 0 rgba(157, 78, 221, 0.3);
}

.pricing-card.featured {
    border-color: #9d4edd;
    transform: scale(1.05) translate(-5px, -5px);
    box-shadow: 15px 15px 0 rgba(157, 78, 221, 0.4);
}

.pricing-card h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.pricing-card p,
.pricing-card ul li {
    color: #f0f0f0;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #764ba2;
    margin: 1rem 0;
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.btn-order {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.3s;
    width: 100%;
}

.btn-order:hover {
    opacity: 0.9;
}

.contact {
    text-align: center;
}

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

/* Cryptotrading Consultation - Bold Tech Footer with Glowing Effect */
footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    border-top: 2px solid #ff6b35;
    box-shadow: 0 -5px 30px rgba(255, 107, 53, 0.3);
    position: relative;
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff6b35, #9d4edd, transparent);
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

footer a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #9d4edd;
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.5);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

form label {
    font-weight: bold;
    margin-top: 0.5rem;
}

form input,
form textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

form textarea {
    resize: vertical;
}

/* Cryptotrading Consultation - Tech-Style Form Inputs with Dark Background */
form input:not([type="submit"]),
form textarea,
form select {
    border: 2px solid #ff6b35;
    border-radius: 3px;
    padding: 0.875rem;
    transition: all 0.3s ease;
    background: #1a1a2e;
    color: white;
    font-family: 'Courier New', monospace;
}

form input:not([type="submit"])::placeholder,
form textarea::placeholder {
    color: #888;
}

form input:not([type="submit"]):focus,
form textarea:focus,
form select:focus {
    outline: none;
    border-color: #9d4edd;
    background: #2a2a3e;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.3);
}

.form-disclaimer {
    background: #fff3cd;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
}

.btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
}

.btn-submit:hover {
    opacity: 0.9;
}

.intro {
    padding: 4rem 0;
    background-color: white;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-list {
    margin-bottom: 3rem;
    text-align: left;
}

.service-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 10px;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.service-item p {
    margin-bottom: 0;
}

.cta-buttons {
    margin-top: 2.5rem;
}

.btn-primary,
.btn-secondary {
    margin-bottom: 1rem;
}

.btn-primary:last-child,
.btn-secondary:last-child {
    margin-bottom: 1rem;
}

section .container > p:not(.disclaimer-box p) {
    margin-bottom: 2rem;
}

section .container > .btn-primary,
section .container > .btn-secondary {
    margin-top: 2rem;
}

.intro-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.intro-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #9d4edd 100%);
    color: white;
}

.btn-secondary {
    background: white;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-primary:hover, .btn-secondary:hover {
    opacity: 0.9;
}

.about-detailed, .services-detailed, .ai-tools-detailed, .pricing-detailed, .contact-detailed {
    padding: 4rem 0;
}

.about-detailed {
    background-color: white;
}

.about-detailed .container {
    text-align: center;
}

.about-detailed .about-content {
    text-align: left;
}

.about-detailed h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.about-detailed h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #764ba2;
}

.about-detailed p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-detailed ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-detailed ul li {
    margin-bottom: 0.5rem;
}

.terms-detailed {
    padding: 4rem 0;
    background-color: white;
}

.terms-detailed .container {
    text-align: center;
}

.terms-detailed .about-content {
    text-align: left;
    max-width: 900px;
}

.terms-detailed h2 {
    text-align: left;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #667eea;
}

.terms-detailed h2:first-child {
    margin-top: 0;
}

.terms-detailed p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-detailed ul {
    margin-left: 2rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-detailed ul li {
    margin-bottom: 0.5rem;
}

.terms-detailed .disclaimer-box {
    text-align: left;
}

.terms-detailed .disclaimer-box ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.terms-detailed .btn-order {
    margin-top: 2rem;
}

.services-detailed, .ai-tools-detailed {
    background-color: #f9f9f9;
}

.pricing-detailed, .contact-detailed {
    background-color: white;
}

/* Cryptotrading - Detailed Sections Dark Tech */
.service-detailed, .ai-tool-detailed {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: #2a2a3e;
    border-radius: 0;
    box-shadow: 8px 8px 0 rgba(255, 107, 53, 0.2);
    border: 2px solid #ff6b35;
    transition: all 0.3s ease;
}

.service-detailed:hover, .ai-tool-detailed:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 rgba(157, 78, 221, 0.3);
    border-color: #9d4edd;
}

.service-detailed h2, .ai-tool-detailed h2 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-size: 1.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    border-bottom: 2px solid #9d4edd;
    padding-bottom: 1rem;
}

.service-detailed h3, .ai-tool-detailed h3 {
    color: #9d4edd;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.service-detailed p, .ai-tool-detailed p {
    color: #f0f0f0;
}

.service-detailed ul, .ai-tool-detailed ul {
    margin-left: 2rem;
    margin-top: 1rem;
    line-height: 1.8;
}

.service-detailed ul li, .ai-tool-detailed ul li {
    margin-bottom: 0.7rem;
    color: #ddd;
}

.service-detailed ul li::marker, .ai-tool-detailed ul li::marker {
    color: #ff6b35;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.pricing-details {
    text-align: left;
    margin: 2rem 0;
}

.pricing-details h4 {
    color: #667eea;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-details ul {
    list-style: none;
    margin-left: 0;
}

.pricing-details ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-details ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.duration {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.savings {
    color: #28a745;
    font-weight: bold;
    margin-bottom: 1rem;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #ffd700;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.pricing-card {
    position: relative;
}

.payment-info, .faq-section {
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Cryptotrading - FAQ Tech Box Style */
.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: #2a2a3e;
    border-radius: 0;
    border: 2px solid #ff6b35;
    box-shadow: 6px 6px 0 rgba(255, 107, 53, 0.15);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 rgba(157, 78, 221, 0.25);
    border-color: #9d4edd;
}

.faq-item h3 {
    color: #ff6b35;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Courier New', monospace;
}

.faq-item h3::before {
    content: '▸ ';
    color: #9d4edd;
}

.faq-item p {
    line-height: 1.8;
    color: #f0f0f0;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
}

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

.contact-method {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 10px;
}

.contact-method h3 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.response-time, .consultation-process {
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.consultation-process ol {
    margin-left: 2rem;
    line-height: 1.8;
}

.consultation-process ol li {
    margin-bottom: 1rem;
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #ff6b35 0%, #9d4edd 100%);
    color: white;
    border-radius: 10px;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: white !important;
}

.cta-section .btn-primary {
    background: white;
    color: #ff6b35;
    margin-right: 1rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-image-container {
    max-width: 400px;
    margin: 0 auto 2rem;
    text-align: center;
}

.person-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.person-portrait {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 0 auto 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

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

/* Cryptotrading - Feature Card with Corner Cut */
.feature-card {
    background: linear-gradient(135deg, #2a2a3e 0%, #1a1a2e 100%);
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: 10px 10px 0 rgba(255, 107, 53, 0.2);
    border: 2px solid #ff6b35;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 25px 25px 0;
    border-color: transparent #9d4edd transparent transparent;
}

.feature-card:hover {
    transform: translate(-5px, -5px) rotate(1deg);
    box-shadow: 15px 15px 0 rgba(157, 78, 221, 0.3);
    border-color: #9d4edd;
}

.feature-card h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

.feature-card p {
    color: #ddd;
}

.feature-card img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 0;
    margin: 0 auto 1.5rem;
    box-shadow: 5px 5px 0 rgba(255, 107, 53, 0.3);
    border: 2px solid #ff6b35;
}

.about-image {
    text-align: center;
    margin-bottom: 2rem;
}

.about-image img {
    max-width: 100%;
    height: auto;
}

.intro-image, .service-image-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.content-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .content-image {
        max-width: 100%;
    }
    
    .modal-content {
        margin: 2% auto;
        padding: 1.5rem;
        max-width: 95%;
        max-height: 95vh;
    }
}

@media (max-width: 1200px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #ff6b35 0%, #9d4edd 100%);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        padding: 0;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        width: 100%;
    }

    nav .container {
        position: relative;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .cta-section .btn-primary,
    .cta-section .btn-secondary {
        display: block;
        margin: 0.5rem 0;
    }

    .hero-image-container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .person-image {
        max-width: 250px;
    }

    .person-portrait {
        max-width: 100%;
    }

    .feature-card img {
        max-width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        margin-top: 1rem;
    }

    .map-wrapper iframe {
        width: 100%;
        height: 300px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo img {
        height: 30px;
    }
}

.map-wrapper {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.map-placeholder {
    background: #f5f5f5;
    padding: 3rem;
    text-align: center;
    border-radius: 10px;
    border: 2px dashed #ccc;
}

.contact-info-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-details {
    text-align: center;
}

.contact-form-main {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .contact-info-main {
        grid-template-columns: 1fr;
    }

    .contact-form-main {
        max-width: 100%;
    }
}

.map-container {
    margin-top: 3rem;
}

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

/* Cryptotrading - AI Feature Dark Tech Style */
.ai-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.ai-feature {
    background: #2a2a3e;
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: 8px 8px 0 rgba(255, 107, 53, 0.2);
    border: 2px solid #ff6b35;
    position: relative;
}

.ai-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #9d4edd);
}

.ai-feature h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.ai-feature p {
    color: #f0f0f0;
}

@media (max-width: 768px) {
    .ai-features {
        grid-template-columns: 1fr;
    }
}

.services-preview, .ai-preview, .pricing-preview, .pricing-highlight, .about-preview, .disclaimer-section, .contact-section {
    padding: 4rem 0;
}

.pricing-highlight {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
}

/* Cryptotrading - Bold Tech Animations with Glitch Effects */
@keyframes glitchIn {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    20% {
        transform: translateX(10px);
    }
    40% {
        transform: translateX(-5px);
    }
    60% {
        transform: translateX(5px);
    }
    80% {
        transform: translateX(-2px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-5deg);
    }
    70% {
        transform: scale(1.1) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

@keyframes neonGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(157, 78, 221, 0.6);
    }
}

@keyframes neonPulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(157, 78, 221, 0.8);
    }
}

h1 {
    animation: glitchIn 0.8s ease-out;
}

/* Testimonial Section - Cryptotrading (Tech Style) */
.testimonials-section {
    background: #1a1a2e;
    padding: 4rem 0;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 107, 53, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(157, 78, 221, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.testimonials-section h2 {
    color: #ff6b35;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: #2a2a3e;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 5px 5px 0 rgba(255, 107, 53, 0.2);
    border: 2px solid #ff6b35;
    transition: all 0.3s ease;
    animation: popIn 0.6s ease-out;
    animation-fill-mode: both;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 8px 8px 0 rgba(157, 78, 221, 0.3);
    border-color: #9d4edd;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 5px;
    background: linear-gradient(135deg, #ff6b35 0%, #9d4edd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
    font-family: 'Courier New', monospace;
}

.testimonial-info h4 {
    margin: 0;
    color: #ff6b35;
    font-weight: 700;
    text-transform: uppercase;
}

.testimonial-rating {
    color: #9d4edd;
    font-size: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: #ddd;
    line-height: 1.6;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
}

.service-card,
.pricing-card,
.feature-card {
    animation: popIn 0.6s ease-out;
    transition: all 0.3s ease;
}

.service-card:hover,
.pricing-card:hover,
.feature-card:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    animation: neonGlow 2s ease-in-out infinite;
}

.btn-primary {
    transition: all 0.3s ease;
    position: relative;
}

.btn-primary:hover {
    transform: skewX(-5deg);
    box-shadow: 5px 5px 0 rgba(157, 78, 221, 0.3);
}

h2 {
    transition: all 0.3s ease;
}

h2:hover {
    animation: neonPulse 1.5s ease-in-out;
}

.service-detailed p, .ai-tool-detailed p, .pricing-card .duration, .pricing-card .savings, .faq-item p {
    color: #ddd !important;
}