:root {
    --kvrs-primary: #00A88F;
    --kvrs-primary-hover: #008f79;
    --kvrs-action: #F93943;
    --kvrs-action-hover: #e02f39;
    --kvrs-text: #1a1a1a;
    --kvrs-text-light: #666666;
    --kvrs-bg-light: #f8f9fa;
}

body {
    font-family: 'Google Sans', sans-serif;
    color: var(--kvrs-text);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Header */
.navbar-brand {
    font-weight: 700;
    color: var(--kvrs-primary) !important;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.nav-link {
    color: var(--kvrs-text);
    font-weight: 500;
    font-size: 0.9rem;
}

.btn-account {
    background-color: var(--kvrs-primary);
    color: white;
    font-weight: 500;
    border-radius: 0;
    padding: 0.5rem 1.25rem;
}

.btn-account:hover {
    background-color: var(--kvrs-primary-hover);
    color: white;
}

/* Breadcrumb */
.breadcrumb-section {
    font-size: 0.8rem;
    color: var(--kvrs-text-light);
    padding: 1rem 0;
}

.breadcrumb-section a {
    color: var(--kvrs-text-light);
    text-decoration: none;
}

.breadcrumb-section a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero-title {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-list {
    list-style: none;
    padding: 0;
}

.hero-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--kvrs-text-light);
}

.hero-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--kvrs-primary);
    font-weight: bold;
}

.compatibility-text {
    font-size: 0.85rem;
    color: var(--kvrs-text-light);
    margin: 1.5rem 0;
}

.btn-action {
    background-color: var(--kvrs-action);
    color: white;
    border-radius: 0;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border: none;
}

.btn-action:hover {
    background-color: var(--kvrs-action-hover);
    color: white;
}

.btn-outline-primary {
    color: var(--kvrs-primary);
    border-color: var(--kvrs-primary);
    border-radius: 0;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

.btn-outline-primary:hover {
    background-color: var(--kvrs-primary);
    color: white;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 0 50px 0 100px; /* Adjusting shape to somewhat match the original */
    background: var(--kvrs-bg-light);
    clip-path: polygon(10% 0, 100% 0, 100% 80%, 80% 100%, 0 80%, 0 20%);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Badge */
.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.product-badge-icon {
    background-color: var(--kvrs-primary);
    color: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    font-weight: bold;
}

.product-badge-text {
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.product-badge-sub {
    font-size: 0.75rem;
    color: var(--kvrs-text-light);
    margin: 0;
}

.stars {
    color: #ffc107;
    font-size: 0.8rem;
}

/* Features */
.features-section {
    padding: 5rem 0;
    background-color: #fcfcfc;
}

.section-title {
    text-align: center;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    color: var(--kvrs-primary);
    margin-bottom: 1.5rem;
    background: rgba(0, 168, 143, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--kvrs-text-light);
    line-height: 1.6;
}

/* Stats */
.stats-section {
    padding: 4rem 0 6rem;
    text-align: center;
}

.stats-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stats-subtitle {
    color: var(--kvrs-text-light);
    margin-bottom: 3rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--kvrs-primary);
    font-size: 0.9rem;
    font-weight: 500;
    max-width: 200px;
    margin: 0 auto;
}

.text-balance {
    text-wrap: balance;
}
