/* =========================
   MARKETING BUTTON STYLES
   ========================= */

/* Brand color */
:root {
    --lattia-blue: #0EA5E9;
    --lattia-outline-hover: #E0F2FE;
}

/* Base button reset */
.btn {
    border-radius: 9px;
    font-weight: 600;
    padding: 14px 32px;
    font-size: 16px;
    line-height: 1;
    transition: all 0.2s ease-in-out;
}

/* Primary CTA */
.btn-primary {
    background-color: var(--lattia-blue);
    border-color: var(--lattia-blue);
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #1286ce;
    border-color: #1286ce;
    color: #fff;
    box-shadow: 0 8px 20px rgba(22, 149, 227, 0.25);
}

/* Secondary CTA */
.btn-outline-primary {
    border: 2px solid var(--lattia-blue);
    color: var(--lattia-blue);
    background-color: #fff;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--lattia-blue);
    color: #fff;
    box-shadow: 0 8px 20px rgba(22, 149, 227, 0.25);
}

.btn-outline-secondary:hover{
    background-color: var(--lattia-outline-hover);
    border: 1px solid var(--lattia-blue);
    color: var(--lattia-blue);
}

/* =========================
   HERO GRADIENT
   ========================= */

   .hero-gradient {
    background: linear-gradient(
        to bottom,
        #F8FAFC 0%,
        #FFFFFF 100%
    );
}

.shadow-light{
    box-shadow: 1px 1px 3px #0000001f;
}

/* =========================
   HERO PREVIEW TILT
   ========================= */

   .preview-tilt {
    display: inline-block;
    perspective: 1200px;
}

.preview-tilt img {
    transform:
        rotateX(2deg)
        rotateY(-3deg)
        translateY(0);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;

}

/* Hover effect */
.preview-tilt:hover img {
    transform:
        rotateX(0deg)
        rotateY(0deg)
        translateY(-6px);

}

/* =========================
   HOW IT WORKS
   ========================= */

   .how-it-works {
    background-color: #ffffff;
}

.how-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 32px;
    border: 1px solid #eef2f7;
    transition: all 0.25s ease;
}

.how-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

/* Icon container */
.icon-pill {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    border-radius: 20px;
    background: #e0f2fe;
    color: var(--lattia-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Step number badge */
.step-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--lattia-blue);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   MARKETING FEATURES
   ========================= */

   .bg-marketing-light {
    background-color: #F8FAFC;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #E0F2FE;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lattia-blue);
}

/* =========================
   FEATURE CARD HOVER EFFECT
   ========================= */

   .feature-card {
    border: 1px solid transparent;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(14, 165, 233, 0.35); /* accent */
    box-shadow:
    3px 3px 10px rgba(15, 23, 42, 0.08),
        2px 2px 3px rgba(14, 165, 233, 0.08);
}

/* =========================
   PRICING CARD
   ========================= */

   .pricing-card {
    background: #ffffff;
    border-radius: 18px;
    border: 2px solid var(--lattia-blue);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

/* Badge */
.pricing-badge {
    display: inline-block;
    background: #e0f2fe;
    color: var(--lattia-blue);
    font-weight: 600;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 999px;
}

/* Price */
.pricing-price {
    font-size: 64px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
}

.pricing-period {
    font-size: 18px;
    color: #64748b;
    margin-left: 6px;
}

/* Feature list */
.pricing-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #0f172a;
}

.pricing-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-weight: 700;
}

/* Annual box */
.pricing-annual {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
}

/* =========================
   MARKETING CTA
   ========================= */

   .cta-marketing {
    padding: 96px 0;
    background: linear-gradient(
        135deg,
        #0ea5e9 0%,
        #14b8a6 100%
    );
    color: #ffffff;
}

.cta-marketing h2 {
    font-size: 2.25rem;
}

.cta-subtext {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Button */
.cta-btn {
    background: #ffffff;
    color: #0ea5e9;
    border-radius: 14px;
    padding: 14px 36px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
    color: #0ea5e9;
}

/* =========================
   MARKETING FOOTER
   ========================= */

   .footer-marketing {
    background: radial-gradient(
        circle at top,
        #111827,
        #020617
    );
    padding: 80px 0 40px;
    color: #94a3b8;
}

.footer-logo {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-description {
    max-width: 280px;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-heading {
    color: #e5e7eb;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-divider {
    border-color: rgba(148, 163, 184, 0.15);
    margin: 48px 0 24px;
}

.footer-bottom {
    font-size: 0.85rem;
    color: #64748b;
}