:root {
    --primary-color: #D91B21;
    --primary-hover: #b0151a;
    --secondary-color: #4285F4;
    --dark-bg: #1a1a1a;
    --light-bg: #fdfdfd;
    --text-color: #333333;
    --text-light: #666;
    --font-main: 'DM Sans', sans-serif;
    --container-width: 1200px;
    --spacing-section: 100px;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

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

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(217, 27, 33, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(217, 27, 33, 0.4);
}

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

.btn-block {
    display: block;
    width: 100%;
}

.text-center { text-align: center; }
.highlight-red { color: var(--primary-color); }

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

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

.logo img {
    height: 45px;
}

/* Hero Section - LIGHT THEME */
.hero-section {
    padding: 120px 0;
    background: radial-gradient(circle at top right, #fff5f5 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(217, 27, 33, 0.03);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-label {
    background: #fff;
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
    border: 1px solid #ffebeb;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.hero-text h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 900;
    color: #111;
}

.hero-sub {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #555;
}

.hero-cta .trust-text {
    font-size: 0.95rem;
    margin-top: 15px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Staging Preview Graphic */
.preview-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #eee;
    animation: float 6s ease-in-out infinite;
}

.card-header {
    background: #f8f9fa;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #eee;
}

.dots { display: flex; gap: 6px; }
.dots span { width: 10px; height: 10px; background: #ddd; border-radius: 50%; }
.address-bar {
    background: white;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #aaa;
    flex-grow: 1;
    border: 1px solid #eee;
}

.card-body {
    padding: 50px 40px;
    text-align: center;
}

.update-pulse {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.text-blue { color: #21759b; }

.check-animation {
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 2.5rem;
    color: #27c93f;
    background: white;
    border-radius: 50%;
    line-height: 1;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.status-list {
    text-align: left;
    max-width: 250px;
    margin: 0 auto;
}

.status-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.status-item i { color: var(--primary-color); opacity: 0.7; }
.status-item span { color: #27c93f; font-weight: 700; margin-left: auto; }

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

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

/* Hosting Bar */
.hosting-bar {
    padding: 40px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.hosting-title {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #bbb;
    margin-bottom: 30px;
}

.hosting-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* Problem Section */
.problem-section {
    padding: var(--spacing-section) 0;
    background: var(--light-bg);
}

.section-title {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: #111;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-sub {
    font-size: 1.15rem;
    margin-bottom: 70px;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: white;
    padding: 45px 35px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f5f5f5;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-color: #ffebeb;
}

.card-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    background: #fff5f5;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    transition: 0.3s;
}

.card:hover .card-icon {
    background: var(--primary-color);
    color: white;
    transform: rotate(-5deg) scale(1.1);
}

.card h3 {
    margin-bottom: 18px;
    font-size: 1.4rem;
    font-weight: 800;
    color: #111;
}

.card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* Method Section */
.method-section {
    padding: var(--spacing-section) 0;
    background: #fff;
}

.method-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.method-item {
    display: flex;
    gap: 30px;
    padding: 40px;
    background: #fafafa;
    border-radius: 20px;
    align-items: flex-start;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(217, 27, 33, 0.2);
}

.method-content h3 {
    margin-bottom: 10px;
    font-weight: 800;
    font-size: 1.4rem;
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-section) 0;
    background: #111;
    color: white;
    position: relative;
    border-radius: 50px 50px 0 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 900;
}

.info-list {
    margin: 40px 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 600;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: rgba(217, 27, 33, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Security Badge V3 - Contact Section */
.security-badge-v3 {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 18px 35px;
    border-radius: 100px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e0e0e0;
}

.security-badge-v3:hover {
    transform: translateY(-5px) scale(1.02);
}

.security-badge-v3 .badge-icon {
    width: 54px;
    height: 54px;
    background: #e9f7ef;
    color: #27c93f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.security-badge-v3 .badge-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.security-badge-v3 .badge-text strong {
    color: #111;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.2;
}

.security-badge-v3 .badge-text span {
    color: #666;
    font-size: 0.9rem;
}

/* Form Styling */
.contact-form {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    color: var(--text-color);
    box-shadow: 0 20px 70px rgba(0,0,0,0.5);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 16px;
    border: 1px solid #eee;
    background: #fdfdfd;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
    background: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.form-privacy {
    margin-top: 20px;
    font-size: 0.85rem;
    text-align: center;
    color: #999;
}

/* Footer */
.site-footer {
    background: #000;
    color: white;
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.brand-col p { opacity: 0.6; }

.footer-col h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a:hover { color: var(--primary-color); }

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    text-align: center;
    color: #666;
}

/* Responsive */
@media (max-width: 1100px) {
    .hero-text h1 { font-size: 3rem; }
}

@media (max-width: 992px) {
    .hero-content, .contact-container, .method-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 { font-size: 2.8rem; }
    
    .hero-cta .trust-text { justify-content: center; }
    
    .status-list { margin: 0 auto; }
    
    .grid-3 { grid-template-columns: 1fr; }
    
    .hosting-icons { gap: 30px; }
    
    .info-item { justify-content: center; }
    
    .trust-badges-v2 { justify-content: center; }
    
    .footer-content { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
    .hero-text h1 { font-size: 2.2rem; }
    .hero-section { padding: 80px 0; }
    .site-header .main-nav { display: none; }
    .contact-form { padding: 30px; }
}
