/* ===================================
   CLOUD TOP G — Base Styles
   =================================== */

/* ---------- Design Tokens ---------- */
:root {
    --red: #e61a1a;
    --red-dark: #ad0707;
    --red-light: #ed5959;
    --black: #000000;
    --dark: #0b0a0a;
    --dark-2: #171717;
    --dark-3: #191919;
    --gray-dark: #2d2d2d;
    --gray-mid: #595959;
    --gray: #929292;
    --gray-light: #8f8f8f;
    --silver: #c3c3c3;
    --light: #f5f5f5;
    --white: #ffffff;
    --green: #25d366;

    --font-heading: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Manrope', sans-serif;

    --max-width: 1200px;
    --nav-height: 72px;
    --section-padding: 100px 0;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-card: 0 4px 35px 5px rgba(0, 0, 0, 0.08);
    --shadow-icon: 0 4px 35px 5px rgba(0, 0, 0, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    background: none;
    border: none;
    font: inherit;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-mid);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ---------- Utilities ---------- */
.text-red {
    color: var(--red) !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    color: var(--black);
    letter-spacing: -0.5px;
}

.section-title--white {
    color: var(--white);
}

.section-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-mid);
    max-width: 780px;
}

.section-desc--light {
    color: var(--silver);
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

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

.btn--primary:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(230, 26, 26, 0.35);
}

.btn--ghost {
    background: transparent;
    padding: 12px 0;
}

.btn--ghost:hover {
    opacity: 0.8;
}

.btn--outline-red {
    background: transparent;
    border: 2px solid var(--red);
    color: var(--red);
}

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

/* ---------- Fade-in animation ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in--visible {
    opacity: 1;
    transform: translateY(0);
}