:root {
    --primary: #0B3C5D;
    --secondary: #1F7A8C;
    --accent: #F2C14E;
    --bg: #F8FAFC;
    --text: #0F172A;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #0B3C5D, #1F7A8C);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --radius: 12px;
    --btn-radius: 10px;
    --godaddy-color: #2b2b2b;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.bg-alt { background-color: #f1f5f9; }
.bg-primary { background: var(--gradient); color: white; }
.bg-white { background-color: var(--white); }
.border-top { border-top: 1px solid #e2e8f0; }

.text-white { color: var(--white) !important; }

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 50px;
    color: var(--primary);
    letter-spacing: -1px;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    padding: 160px 20px 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gradient);
    color: var(--white);
    overflow: hidden;
}

.hero-logo {
    position: absolute;
    top: clamp(20px, 4vw, 40px);
    left: clamp(20px, 4vw, 40px);
    height: clamp(34px, 5vw, 48px);
    width: auto;
    z-index: 100;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    max-width: 80%;
    object-fit: contain;
}

/* Ensure no horizontal scroll */
body, html {
    width: 100%;
    overflow-x: hidden;
}

#gas-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    margin: 10px 0 25px;
    line-height: 1.1;
    letter-spacing: -1.5px;
    font-weight: 800;
}

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 45px;
    line-height: 1.5;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(242, 193, 78, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(242, 193, 78, 0.3);
    color: var(--accent);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.negotiable {
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0.9;
    background: var(--accent);
    color: var(--primary);
    padding: 2px 10px;
    border-radius: 4px;
    margin-left: 5px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: var(--btn-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
    width: 100%;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.btn-whatsapp { background-color: #25D366; color: white; }
.btn-email { background-color: var(--secondary); color: white; }
.btn-godaddy, .btn-secondary { background-color: var(--godaddy-color); color: white; }
.btn-outline { background-color: transparent; border: 2px solid rgba(255, 255, 255, 0.4); color: white; }

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

/* Common Card Base */
.card, .industry-card, .trust-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: var(--transition);
}

.grid-3, .industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card-icon, .industry-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 25px;
    display: block;
}

/* Trust Section */
.step-num {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    background: #f1f5f9;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Value Box */
.value-box {
    background: var(--white);
    padding: 60px 40px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    max-width: 1000px;
    margin: 0 auto;
}

.highlight-box {
    display: flex;
    flex-direction: column;
    padding: 40px;
    background: #f8fafc;
    border-radius: var(--radius);
    gap: 30px;
    margin-top: 40px;
    border: 1px solid #e2e8f0;
}

.price-amount { font-size: 3rem; font-weight: 700; color: var(--primary); }
.price-sub { font-size: 1.1rem; color: var(--secondary); font-weight: 600; display: block; }

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-text { text-align: center; margin-top: 30px; font-size: 0.95rem; }
.contact-info-text strong { color: var(--accent); }

/* Footer */
.footer { padding: 50px 0; text-align: center; border-top: 1px solid #e2e8f0; background: #fff; }
.footer p { font-size: 0.9rem; color: #64748b; }

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Overrides */
@media (min-width: 641px) {
    .hero-btns { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .btn { width: auto; min-width: 200px; }
    .contact-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1025px) {
    .highlight-box { flex-direction: row; justify-content: space-between; align-items: center; text-align: left; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
    .hero-logo { 
        top: 20px; 
        right: 20px; 
        left: auto;
        transform: none; 
        height: 28px; 
        display: block;
    }
    .hero { 
        padding-top: 100px; 
        padding-bottom: 60px; 
        min-height: auto;
    }
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    .subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    .price-badge {
        font-size: 1rem;
        padding: 8px 18px;
        margin-bottom: 15px;
    }
    .hero-btns {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }
    .btn {
        padding: 14px 20px;
        font-size: 15px;
    }
    .section { padding: 60px 0; }
}
