/* Variables */
:root {
    --primary: #FF5722;
    --primary-light: #FFAB91;
    --primary-dark: #E64A19;
    --accent: #FFB74D;
    --dark: #263238;
    --dark-light: #37474F;
    --text: #ECEFF1;
    --text-dark: #B0BEC5;
    --gray: #546E7A;
    --white: #ffffff;
    --black: #0F1419;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--black);
    overflow-x: hidden;
}

.wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--white);
}

ul {
    list-style: none;
}

section {
    padding: 70px 20px;
}

/* Typography */
h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title span {
    color: var(--primary);
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--dark);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-svg {
    flex-shrink: 0;
}

.logo h1 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0;
}

.logo span {
    color: var(--primary);
}

.logo-svg.small {
    width: 30px;
    height: 30px;
}

nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    color: var(--text);
    position: relative;
    padding: 5px 0;
    font-weight: 500;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s;
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--white);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: var(--transition);
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 10px;
}

.menu-toggle span:nth-child(3) {
    top: 20px;
}

.menu-toggle.active span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu-toggle.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 80px 20px;
    background-color: var(--dark);
    position: relative;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, #ff57220d 0%, transparent 50%);
}

.hero-content {
    flex: 1;
    min-width: 300px;
    z-index: 1;
}

.hero h2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h2 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-svg {
    max-width: 100%;
    height: auto;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 87, 34, 0.6);
}

.cta-button.large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Features Section */
.features {
    background-color: var(--black);
    padding: 80px 20px;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.feature-card {
    background-color: var(--dark);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--dark-light);
    padding: 80px 20px;
}

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

.step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: var(--gradient);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    border-radius: 50%;
}

/* Try Now Section */
.try-now {
    background-color: var(--black);
    padding: 80px 20px;
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--dark);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.cta-container:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.1) 0%, rgba(255, 87, 34, 0) 70%);
    z-index: 0;
}

.cta-container h2, 
.cta-container p,
.cta-container .cta-button,
.cta-container .trust-badges {
    position: relative;
    z-index: 1;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.badge {
    text-align: center;
}

.badge .number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
}

.badge .label {
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Footer */
footer {
    background-color: var(--dark);
    padding: 50px 20px 20px;
}

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

.footer-brand h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.footer-brand p {
    color: var(--primary);
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-nav h4,
.footer-legal h4 {
    color: var(--text);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-nav h4:after,
.footer-legal h4:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
}

.footer-nav ul,
.footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a,
.footer-legal a {
    color: var(--text-dark);
    transition: var(--transition);
}

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

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

.copyright p {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        padding: 80px 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hero h2 {
        font-size: 2.3rem;
    }
    
    .feature-cards, .steps {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

@media screen and (max-width: 480px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
