@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800;900&family=Open+Sans:wght@400;600;700&display=swap');

:root {
    /* Brand Colors - High Contrast Retail Protocol */
    --primary-blue: #003366;
    /* Deep Trustworthy Blue */
    --action-red: #d52b1e;
    /* Pantone 199 C - URGENCY */
    --value-green: #00af48;
    /* Pantone 354 C - MONEY/SAVINGS */
    --pop-cyan: #00aeef;
    /* Cyan - FRESHNESS */
    --pop-orange: #FF6B35;
    /* Secondary Callout */

    /* Surfaces */
    --bg-white: #ffffff;
    --bg-light: #f4f4f4;
    --text-dark: #222222;
    --text-grey: #555555;

    /* Retail UI Elements */
    --radius-sm: 4px;
    --radius-md: 8px;
    --shadow-pop: 0 4px 0px rgba(0, 0, 0, 0.15);
    /* Hard shadow for "button" feel */
    --shadow-float: 0 10px 25px rgba(0, 0, 0, 0.1);
    --border-coupon: 2px dashed #cccccc;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    background-color: var(--bg-white);
}

h1,
h2,
h3,
h4,
.btn {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    /* Retail shouts headers */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- High Impact Header --- */
header {
    background: var(--bg-white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

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

.logo {
    height: 75px;
    width: auto;
}

/* Bigger Logo */

/* --- Action Buttons (Click Me!) --- */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
    background: var(--action-red);
    border: none;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 0 #b31b0e;
    /* 3D Click Feel */
    text-decoration: none;
    transition: all 0.1s;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #b31b0e;
}

.btn:active {
    transform: translateY(4px);
    box-shadow: none;
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    background: var(--primary-blue);
    box-shadow: 0 3px 0 #002244;
}

.btn-small:hover {
    box-shadow: 0 1px 0 #002244;
}

/* --- "Magazine Cover" Hero --- */
.hero {
    background: linear-gradient(to bottom, #eef2f5 0%, #ffffff 100%);
    padding: 4rem 0 6rem;
    position: relative;
    border-bottom: 5px solid var(--primary-blue);
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* Text wider */
    align-items: center;
    gap: 3rem;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    color: var(--action-red);
    display: inline-block;
    background: #fff0f0;
    padding: 0 10px;
    transform: skew(-5deg);
    /* Dynamic angle */
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-grey);
    font-weight: 600;
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    transform: rotate(-3deg);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s;
}

.hero-image:hover img {
    transform: rotate(0deg) scale(1.02);
}

.hero- badge {
    /* "Best Value" Badge style overlay could go here */
}

/* --- "Battle" Comparison Section --- */
.comparison {
    padding: 5rem 0;
    background: var(--bg-white);
    text-align: center;
}

.comparison h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.comp-card {
    padding: 2rem;
    border: 2px solid #eee;
    border-radius: var(--radius-md);
    background: #fff;
}

.card-bad {
    background: #fff5f5;
    border-color: #ffdcdc;
}

.card-bad h3 {
    color: var(--action-red);
}

.card-good {
    background: #f0fff4;
    border-color: #dcfce7;
    box-shadow: var(--shadow-float);
    transform: scale(1.02);
    /* Slight lift for the winner */
}

.card-good h3 {
    color: var(--value-green);
}

/* --- Features (Icons with Punch) --- */
.features {
    padding: 5rem 0;
    background: var(--bg-light);
    border-top: 1px dashed #ccc;
    border-bottom: 1px dashed #ccc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid var(--primary-blue);
    /* Color coded bottom */
}

.feature-item:nth-child(2) {
    border-color: var(--action-red);
}

.feature-item:nth-child(3) {
    border-color: var(--value-green);
}

.feature-item:nth-child(4) {
    border-color: var(--pop-orange);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

/* --- Guarantee (The "Certified" Look) --- */
.guarantee-section {
    padding: 5rem 0;
    background: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guarantee-badge-large {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    padding: 0.5rem 2rem;
    transform: skew(-10deg);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.guarantee-quote {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto 1rem;
    font-family: 'Montserrat', sans-serif;
}

/* --- Offer / Pricing (Coupon Style) --- */
.offer-section {
    padding: 6rem 0;
    background: #003366;
    /* Deep Blue background for contrast */
    color: white;
}

.offer-card {
    background: white;
    color: var(--text-dark);
    border: 4px dashed var(--action-red);
    /* The "Cut Here" Look */
    border-radius: 12px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* "Special Offer" Corner Ribbon could go here via CSS pseudo-element */

.offer-card h3 {
    font-size: 2.5rem;
    color: var(--action-red);
    margin-bottom: 0.5rem;
}

.offer-includes {
    text-align: left;
    max-width: 450px;
    margin: 2rem auto;
    font-size: 1.1rem;
}

.offer-includes li {
    list-style: none;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
}

.offer-includes li::before {
    content: '✔';
    color: var(--value-green);
    position: absolute;
    left: 0;
    font-weight: 900;
}

/* --- Stats Bar --- */
.stats {
    background: var(--action-red);
    color: white;
    padding: 3rem 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.2rem;
}

.stat-item p {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.9;
}

/* --- Contact Form --- */
.contact-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.contact-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: var(--radius-md);
    border: 1px solid #ddd;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form h2 {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 0.5rem;
}

.form-group label {
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.form-group input:focus {
    border-color: var(--primary-blue);
    outline: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .comparison-grid,
    .features-grid,
    .stats-grid {
        display: block;
    }

    .stats-grid .stat-item {
        margin-bottom: 2rem;
    }

    .comp-card,
    .feature-item {
        margin-bottom: 1.5rem;
    }
}