:root {
    /* Color Palette */
    --color-bg-paper: #F5F2EB;
    /* Warm Sand/Paper tone */
    --color-bg-white: #FFFFFF;

    --color-primary: #FF7F50;
    /* Vibrant Orange for Call to Action */
    --color-primary-dark: #E66A3C;

    --color-secondary: #0077B6;
    /* Strong Blue for Trust/Info */
    --color-secondary-dark: #023E8A;

    --color-text-main: #2D2D2D;
    /* Darker for better contrast */
    --color-text-light: #4A4A4A;
    /* Darker grey */

    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-button: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-button-hover: 0 7px 14px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);

    --radius-round: 12px;
    --radius-pill: 50px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--color-bg-paper);
    color: var(--color-text-main);
    line-height: 1.6;
}

/* TypographyUtils */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Layout Utils */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 4rem 0;
}

.bg-sand {
    background-color: #EBE7DD;
    /* Slightly darker sand for contrast */
}

.center {
    text-align: center;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-main);
}

.logo-text .highlight {
    color: var(--color-secondary);
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-list a {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: var(--color-primary);
}

/* Buttons ("Grippy" & Modern) */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-button);
}

.btn:active {
    transform: scale(0.98);
}

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

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    box-shadow: var(--shadow-button-hover);
}

.btn-secondary {
    background-color: var(--color-bg-white);
    color: var(--color-text-main);
    border: 1px solid #ddd;
}

.btn-nav {
    background-color: var(--color-secondary);
    color: white;
    padding: 0.5rem 1.5rem;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: #000000;
    /* Force black text */
}

.hero h1,
.hero p {
    color: #000000;
}

.hero .text-gradient {
    /* Optional: Disable gradient on subpages if requested, but user said 'text color', assuming main text. 
       If they want EVERYTHING black, I should override the gradient too. 
       For now, I will keep the gradient as it is usually a design feature, but ensure body text is black. 
       Wait, "make sure ALL text in black". */
    background: none;
    -webkit-text-fill-color: #000000;
    color: #000000;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.trust-icons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

/* Calculator Card */
.calculator-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.calc-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.progress-bar {
    height: 4px;
    background: #eee;
    margin-bottom: 2rem;
    border-radius: 2px;
}

.progress {
    height: 100%;
    width: 33%;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    background: #fafafa;
    transition: border 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-secondary);
    background: white;
}

/* Step Logic */
.step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animations included in requests */
.pulse-anim {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 127, 80, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 127, 80, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 127, 80, 0);
    }
}

.success-anim {
    text-align: center;
    margin-bottom: 1rem;
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    display: inline-block;
}

.checkmark-check {
    stroke: #4CAF50;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

/* Cards & Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.3s;
}

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

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Placeholders */
.team-image-placeholder,
.video-placeholder {
    background: #e0e0e0;
    width: 100%;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}

.team-image-placeholder {
    height: 300px;
}

.video-placeholder {
    height: 400px;
    margin-top: 2rem;
    position: relative;
    /* Beautiful modern gradient using brand colors */
    background: linear-gradient(135deg, rgba(255, 127, 80, 0.1) 0%, rgba(0, 119, 182, 0.1) 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-color: white;
    overflow: hidden;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 25px rgba(255, 127, 80, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    z-index: 2;
    padding-left: 5px;
    /* Visual center adjustment for triangle */
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(255, 127, 80, 0.6);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 4rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer p {
    color: #aaa;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    margin-top: 3rem;
    border-top: 1px solid #444;
    padding-top: 2rem;
    font-size: 0.9rem;
    color: #666;
}

/* Mobile */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-list {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-grid,
    .grid-3,
    .grid-2,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 1.75rem;
        /* Smaller for better fit */
        line-height: 1.3;
        color: #000000 !important;
        /* Force black on mobile */
        word-wrap: break-word;
        /* Ensure it doesn't overflow */
    }

    .hero {
        text-align: center;
    }

    .hero .trust-icons {
        justify-content: center;
    }
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    pointer-events: none;
    /* Let clicks pass through container */
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.btn-float {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.btn-float:hover {
    transform: scale(1.1) translateY(-5px);
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-phone {
    background-color: #007bff;
}

/* Chic Text & Branding */
.chic-brand-bar {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
}

.chic-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
    display: block;
}

.phone-display {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    display: block;
    margin-top: 5px;
}