:root {
    --primary: #06b6d4;
    /* Vibrant Cyan */
    --primary-dark: #0891b2;
    --accent: #ec4899;
    /* Vibrant Pink */
    --accent-hover: #db2777;
    --accent-glow: rgba(236, 72, 153, 0.4);
    --secondary: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --bg-main: #020617;
    --bg-card: rgba(15, 23, 42, 0.7);
    --border: rgba(6, 182, 212, 0.15);
    /* Tinted with Cyan */
    --glass: rgba(15, 23, 42, 0.9);
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --cyan-glow: rgba(6, 182, 212, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Authentic Human Feel Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

nav.scrolled {
    padding: 1rem 0;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.15), transparent),
        radial-gradient(circle at 20% 80%, rgba(236, 72, 153, 0.1), transparent),
        url('https://images.unsplash.com/photo-1628155930542-3c7a64e2c833?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.7);
    /* Darker overlay for readability */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(6, 182, 212, 0.15);
    color: var(--primary);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 3.5rem;
    max-width: 650px;
    opacity: 0.9;
}

/* Sections */
.section {
    padding: 140px 0;
}

.section-title {
    margin-bottom: 80px;
    text-align: center;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 3.5rem 3rem;
    border-radius: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.card:hover {
    background: rgba(15, 23, 42, 0.9);
    border-color: var(--primary);
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 2rem;
    color: #fff;
    font-size: 1.5rem;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    margin-top: 2rem;
    border: 1px solid var(--border);
}

/* The Human Touch Section */
.owner-note {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    border-radius: 48px;
    padding: 5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
    border: 1px solid var(--border);
}

.owner-text {
    flex: 1.2;
    min-width: 300px;
}

.owner-image-container {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.owner-image {
    width: 100%;
    height: 450px;
    border-radius: 32px;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.owner-image-container::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 32px;
    z-index: -1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 3rem;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px var(--accent-glow);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    box-shadow: 0 10px 25px var(--cyan-glow);
}

/* FAQ Refinement */
.faq-trigger {
    width: 100%;
    padding: 2rem;
    background: transparent;
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-trigger:hover {
    color: var(--primary);
}

.faq-card.active {
    border-color: var(--primary);
    background: rgba(6, 182, 212, 0.05);
}

/* Footer */
footer {
    padding: 100px 0 50px;
    background: #010409;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 80px;
}

@media (max-width: 992px) {
    .owner-note {
        padding: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .nav-links {
        display: none;
    }

    .section {
        padding: 80px 0;
    }
}