/* style.css - Inkspired V1A bright SaaS theme */

:root {
    --brand-primary: #6C2BD9;      /* deep purple */
    --brand-secondary: #00C2A8;    /* teal */
    --brand-accent: #FF7A30;       /* orange CTA */
    --brand-gold: #FFC53D;         /* star ratings */
    --bg-light: #F7F6FB;
    --text-dark: #1E1B2E;
    --text-muted: #6B6478;
    --card-shadow: 0 8px 24px rgba(108, 43, 217, 0.10);
}

body {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

/* Navbar */
.navbar-brand-custom {
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero */
.hero-section {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #9B5DE5 50%, var(--brand-secondary) 100%);
    color: white;
    padding: 5rem 1rem;
    border-radius: 0 0 40px 40px;
}
.hero-section h1 {
    font-weight: 800;
    font-size: 2.75rem;
}
.hero-section p.lead {
    font-size: 1.2rem;
    opacity: 0.95;
}
.btn-cta {
    background-color: var(--brand-accent);
    color: white;
    font-weight: 700;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 6px 16px rgba(255, 122, 48, 0.4);
    transition: transform 0.15s ease;
}
.btn-cta:hover {
    transform: translateY(-2px);
    color: white;
}
.badge-pill-custom {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    display: inline-block;
    margin: 0.2rem;
}

/* Feature cards */
.feature-card {
    background: white;
    border-radius: 18px;
    padding: 2rem 1.5rem;
    box-shadow: var(--card-shadow);
    height: 100%;
    border-top: 4px solid var(--brand-secondary);
}
.feature-card .icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Symbols strip */
.symbol-chip {
    background: white;
    border: 2px solid var(--brand-secondary);
    color: var(--brand-primary);
    font-weight: 700;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    display: inline-block;
    margin: 0.3rem;
}

/* Pricing card */
.pricing-card {
    background: white;
    border-radius: 22px;
    box-shadow: var(--card-shadow);
    padding: 2.5rem 2rem;
    border: 3px solid var(--brand-accent);
    text-align: center;
}
.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-primary);
}
.pricing-card .price small {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
    height: 100%;
}
.stars {
    color: var(--brand-gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

/* CSS-only star rating input */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.star-rating input {
    display: none;
}
.star-rating label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    padding: 0 0.1rem;
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: var(--brand-gold);
}

/* Forms */
.form-card {
    background: white;
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    max-width: 480px;
    margin: 3rem auto;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: #cfc9dc;
    padding: 3rem 1rem 1.5rem;
    margin-top: 4rem;
}
footer a {
    color: #cfc9dc;
    text-decoration: none;
}
footer a:hover {
    color: white;
}
footer .disclaimer-box {
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1.2rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

.section-title {
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.section-subtitle {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}