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

body {
    font-family: 'Roboto', sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header & Orange Logo */
header {
    background: #ffffff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 32px;
    color: #FF6600;
    letter-spacing: -1.5px;
}

/* Compact Hero Section */
.hero {
    background: #fdfdfd;
    padding: 40px 0;
    text-align: center;
}

.badgev2 {
    font-family: 'Montserrat', sans-serif;
    background: #fff0e6;
    color: #FF6600;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.orange-text { color: #FF6600; }

.hero p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 25px;
}

/* Buttons */
.btn-orange, .btn-orange-large {
    font-family: 'Montserrat', sans-serif;
    background: #FF6600;
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
}

.btn-orange-large { font-size: 18px; }
.btn-orange:hover { background: #e65c00; transform: translateY(-2px); }

/* Services Grid */
.section { padding: 60px 0; }
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
}

.gridv2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.cardv2 {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
}

.icon { font-size: 40px; margin-bottom: 15px; }

/* Contact & Partner Box */
.contact-box {
    text-align: center;
    background: #fff8f4;
    padding: 60px 20px;
    border-radius: 20px;
}

.partner-box {
    margin-top: 40px;
    padding: 30px;
    border: 2px dashed #FF6600;
    border-radius: 15px;
    display: inline-block;
    background: white;
}

.partner-link {
    color: #FF6600;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
}

footer {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #888;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 30px; }
    .hero p { font-size: 16px; }
    .logo { font-size: 28px; }
    .section-title { font-size: 28px; }
}