:root {
    --text-main: #1f2937;
    /* Richer dark grey */
    --text-muted: #6b7280;
    --primary-color: #3b82f6;
    /* Trustworthy Functional Blue */
    --accent-color: #f59e0b;
    /* Warm Amber for subtle details/human touch */
    --secondary-bg: #f3f4f6;
    --bg-white: #ffffff;
    --border-subtle: #e5e7eb;
    --font-main: 'Inter', -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.8;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    font-size: 17px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
}

/* Layout & Spacing */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 32px;
}

.narrow-container {
    max-width: 720px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.section {
    padding: 120px 0;
}

.bg-soft {
    background-color: var(--secondary-bg);
}

.mt-4 {
    margin-top: 3rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

/* Navbar */
.navbar {
    padding: 40px 0;
    background: transparent;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-main);
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
}

.logo::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

/* Typography */
h1,
h2,
h3 {
    color: var(--text-main);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.page-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--text-main);
    word-break: break-word;
    letter-spacing: -0.04em;
    position: relative;
    display: inline-block;
}

/* Subtle underline effect for the domain */
.page-title::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 0.3em;
    background-color: var(--primary-color);
    opacity: 0.1;
    z-index: -1;
    border-radius: 4px;
}

.subtitle-block {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 24px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

/* Small accent dash for section titles */
.section-title::before {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    background: var(--accent-color);
    margin-bottom: 20px;
    border-radius: 2px;
}

.text-center .section-title::before {
    margin-left: auto;
    margin-right: auto;
}

.text-content p {
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Components */
.status-pill {
    background: #ecfdf5;
    /* Very light subtle green path */
    color: #059669;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 50px;
    letter-spacing: 0.02em;
    border: 1px solid #d1fae5;
}

.btn {
    display: inline-block;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.25s ease;
    cursor: pointer;
    font-size: 1.1rem;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--text-main);
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.btn-outline {
    border-color: #e5e7eb;
    color: var(--text-main);
    background: white;
}

.btn-outline:hover {
    border-color: var(--text-main);
}

.btn-text {
    color: var(--text-muted);
    border-bottom: 1px solid #e5e7eb;
    border-radius: 0;
    padding: 0 0 4px 0;
}

.btn-text:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.95rem;
    border-radius: 8px;
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 12px;
}

/* Hero */
.hero-section {
    padding-top: 100px;
    padding-bottom: 140px;
}

.hero-text {
    font-size: 1.35rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

/* Feature Cards */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 80px;
}

.reason-item h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--text-main);
}

.reason-item p {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.7;
}

/* Human Quote Section */
.quote-section {
    padding: 160px 0;
    text-align: center;
    background: white;
    background-image: radial-gradient(#f3f4f6 1px, transparent 1px);
    background-size: 32px 32px;
}

.quote-text {
    font-size: 2.2rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-main);
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.quote-text::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: 50px auto 0;
    opacity: 0.2;
}

/* Lists */
.clean-list {
    list-style: none;
    padding: 0;
}

.clean-list li {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 1.25rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 20px;
}

.clean-list li::before {
    content: "→";
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.clean-list li:last-child {
    border-bottom: none;
}

/* Pricing */
.pricing-display {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-main);
    letter-spacing: -0.04em;
    position: relative;
    display: inline-block;
}

/* Pricing subtle highlight */
.pricing-display::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: -10px;
    right: -10px;
    height: 15px;
    background: var(--accent-color);
    opacity: 0.2;
    z-index: -1;
    transform: rotate(-1deg);
}

.pricing-note p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Checklist Grid */
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
}

.check-item {
    font-size: 1.2rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-item {
    color: var(--text-main);
}

/* Form */
.contact-container {
    background: #fdfdfd;
    padding: 80px;
    border-radius: 32px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* Decorative corner accent */
.contact-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.form-group {
    margin-bottom: 32px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 20px;
    border: 2px solid var(--border-subtle);
    border-radius: 16px;
    font-size: 1.1rem;
    background: white;
    font-family: inherit;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

/* Footer */
.footer {
    padding: 80px 0;
    font-size: 1rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-subtle);
    margin-top: 100px;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .page-title {
        font-size: 1.9rem;
        /* Smaller fixed size to control wrapping better */
        margin-bottom: 24px;
        line-height: 1.3;
        overflow-wrap: break-word;
        /* Ensure it breaks if needed */
        word-break: initial;
        /* Reset aggressive breaking */
        hyphens: manual;
        padding: 0 10px;
        /* Extra breathing room */
    }

    .section {
        padding: 80px 0;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 18px;
    }

    .contact-container {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .quote-text {
        font-size: 1.6rem;
    }

    .pricing-display {
        font-size: 3rem;
    }

    .container {
        padding: 0 20px;
    }

    .checklist-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Micro-Interactions & Animations --- */

/* Selection Style */
::selection {
    background: var(--accent-color);
    color: white;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* 1. Discrete Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for child elements if needed */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* 2. Button & Link Refinements */
.btn {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Button Shine Effect on Hover */
.btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::after {
    left: 100%;
}

.nav-content a,
.footer a {
    position: relative;
}

/* 3. Card Hover Effects */
.reason-item {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.reasons-grid:hover .reason-item:not(:hover) {
    opacity: 0.6;
    transform: scale(0.98);
    filter: blur(0.5px);
}

.reason-item:hover {
    transform: translateY(-5px);
    opacity: 1;
}

/* 4. Input Focus Polish */
.form-group input,
.form-group textarea {
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease, background-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    background-color: #fdfeff;
}

/* 5. Logo Hover */
.logo {
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--primary-color);
}