:root {
    --primary-blue: #1f2937;
    --accent-blue: #3b82f6;
    --accent-green: #10b981;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-lighter: #f3f4f6;
    --text-dark: #111827;
    --text-gray: #4b5563;
    --border: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Hidden Elements */
.circles,
.circle,
.circle-1,
.circle-2,
.circle-3 {
    display: none;
}

/* ==================== CLEAN ELEGANT NAVIGATION ==================== */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 0.875rem 5%;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.375rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    flex-shrink: 0;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-links a:hover {
    color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.06);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--accent-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ==================== HERO SECTION ==================== */
.hero {
    margin-top: 60px;
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-blue) 0%, #2563eb 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button.full-width {
    width: 100%;
    padding: 1rem;
}

/* ==================== HERO GRAPHIC - FEATURE BADGES ==================== */
.hero-graphic {
    flex: 1;
    position: relative;
    height: 450px;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.95) 0%, rgba(37, 99, 235, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: badge-float 3s ease-in-out infinite;
    cursor: default;
    transition: var(--transition);
    z-index: 10;
    white-space: nowrap;
}

.feature-badge:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.3) !important;
}

.badge-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-text {
    letter-spacing: 0.3px;
}

.growth-badge {
    top: 30px;
    left: 30px;
    animation-delay: 0s;
}

.innovation-badge {
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.95) 0%, rgba(5, 150, 105, 0.95) 100%);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    animation: badge-float-side 3s ease-in-out infinite;
    animation-delay: -1s;
}

.innovation-badge:hover {
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.3) !important;
}

.scale-badge {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.95) 0%, rgba(109, 40, 217, 0.95) 100%);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    animation: badge-float-bottom 3s ease-in-out infinite;
    animation-delay: -2s;
}

.scale-badge:hover {
    transform: translateX(-50%) translateY(-4px) !important;
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.3) !important;
}

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

@keyframes badge-float-side {
    0%, 100% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(calc(-50% - 12px));
    }
}

@keyframes badge-float-bottom {
    0%, 100% {
        transform: translateX(-50%);
    }
    50% {
        transform: translateX(-50%) translateY(-12px);
    }
}

/* ==================== GLASS UTILITY ==================== */
.glass {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.glass-bg {
    background: var(--bg-white);
    border: 1px solid var(--border);
}

/* ==================== SERVICES SECTION ==================== */
.services {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.services h2,
.products h2,
.contact h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-blue);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==================== CONTACT PAGE ==================== */
.contact-page {
    margin-top: 60px;
    padding: 4rem 5%;
    min-height: calc(100vh - 60px);
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 3.5rem;
    max-width: 700px;
    width: 100%;
    box-shadow: var(--shadow-md);
}

.contact-container h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.contact-container .subtitle {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* ==================== FORM STYLES ==================== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: var(--transition);
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.01) 0%, rgba(16, 185, 129, 0.01) 100%);
}

.form-group textarea {
    min-height: 140px;
    line-height: 1.5;
}

.form-status {
    font-size: 0.95rem;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    display: none;
    text-align: center;
    font-weight: 500;
}

.form-status.success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: block;
}

.form-status.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
    display: block;
}

/* Contact Info Cards */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.info-card {
    text-align: center;
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.info-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.info-card a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.info-card a:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--bg-lighter);
    border-top: 1px solid var(--border);
    padding: 2rem 5%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-blue);
}

/* ==================== PAGE CONTENT - PRIVACY/TERMS ==================== */
.privacy-content,
.terms-content {
    margin-top: 60px;
    padding: 4rem 5%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-dark);
}

.privacy-content h1,
.terms-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.privacy-content h2,
.terms-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-content h3,
.terms-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-content p,
.terms-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-content ul,
.terms-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.privacy-content li,
.terms-content li {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.privacy-content a,
.terms-content a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
}

.privacy-content a:hover,
.terms-content a:hover {
    text-decoration: underline;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .hero-graphic {
        height: 350px;
    }

    .feature-badge {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .badge-icon {
        font-size: 1.25rem;
    }

    .growth-badge {
        top: 20px;
        left: 20px;
    }

    .innovation-badge {
        right: 20px;
    }

    .scale-badge {
        bottom: 20px;
    }
}

@media (max-width: 768px) {
    .glass-nav {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem 5%;
    }

    .nav-links {
        width: 100%;
        flex-direction: column;
        gap: 0;
    }

    .nav-links a {
        text-align: center;
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }

    .hero {
        flex-direction: column;
        margin-top: 60px;
        gap: 2rem;
        padding: 2rem 5%;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-graphic {
        height: 300px;
        width: 100%;
        min-width: 100%;
    }

    .feature-badge {
        padding: 0.65rem 1rem;
        font-size: 0.8rem;
        gap: 0.5rem;
    }

    .badge-icon {
        font-size: 1rem;
    }

    .growth-badge {
        top: 15px;
        left: 15px;
    }

    .innovation-badge {
        right: 15px;
    }

    .scale-badge {
        bottom: 15px;
    }

    .services {
        padding: 3rem 5%;
    }

    .services h2 {
        font-size: 2rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .contact-page {
        margin-top: 60px;
        padding: 2rem 5%;
    }

    .contact-container {
        padding: 2.5rem;
    }

    .contact-container h1 {
        font-size: 1.75rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
    }

    .contact-info {
        gap: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .privacy-content,
    .terms-content {
        padding: 2rem 5%;
    }

    .privacy-content h1,
    .terms-content h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 640px) {
    .glass-nav {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 5%;
    }

    .logo {
        font-size: 1.25rem;
    }

    .nav-links {
        width: 100%;
        flex-direction: column;
        gap: 0;
    }

    .nav-links a {
        text-align: center;
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }

    .hero {
        padding: 1.5rem 5%;
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .cta-button {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }

    .cta-button.full-width {
        width: 100%;
    }

    .hero-graphic {
        height: 280px;
    }

    .feature-badge {
        padding: 0.6rem 0.9rem;
        font-size: 0.75rem;
        gap: 0.4rem;
    }

    .badge-icon {
        font-size: 0.9rem;
    }

    .growth-badge {
        top: 10px;
        left: 10px;
    }

    .innovation-badge {
        right: 10px;
    }

    .scale-badge {
        bottom: 10px;
    }

    .contact-page {
        padding: 1.5rem 5%;
    }

    .contact-container {
        padding: 1.5rem;
    }

    .contact-container h1 {
        font-size: 1.5rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
        padding: 0.75rem 0.875rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-content {
        gap: 1rem;
    }

    .footer-links {
        gap: 1rem;
        flex-direction: column;
    }
}
