@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0F1B2D;
    --amber: #F5A623;
    --amber-light: #FDB94A;
    --bg: #FAF8F4;
    --slate: #4A6080;
    --silver: #E8EDF3;
    --silver-dark: #D0D8E4;
    --text: #1A2A3A;
    --text-light: #6B7D90;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Syne', sans-serif;
    line-height: 1.25;
    font-weight: 700;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 27, 45, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(245, 166, 35, 0.15);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 34px;
    height: 34px;
    background: var(--amber);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    color: var(--navy);
    font-size: 16px;
}

.logo-text {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
    letter-spacing: -0.2px;
}

.logo-text span {
    color: var(--amber);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--amber);
    background: rgba(245, 166, 35, 0.1);
}

.nav-cta {
    background: var(--amber) !important;
    color: var(--navy) !important;
    font-weight: 600 !important;
    padding: 8px 18px !important;
}

.nav-cta:hover {
    background: var(--amber-light) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* HERO */
.hero {
    background: var(--navy);
    padding: 104px 24px 88px;
    margin-top: 64px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 52px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 166, 35, 0.12);
    border: 1px solid rgba(245, 166, 35, 0.3);
    color: var(--amber);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(34px, 4.5vw, 50px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.hero h1 .accent {
    color: var(--amber);
    font-weight: 700;
}

.hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 460px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--amber);
    color: var(--navy);
    font-weight: 700;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--amber-light);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    border-color: var(--amber);
    color: var(--amber);
}

.hero-visual {
    position: relative;
}

.hero-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(245, 166, 35, 0.2);
}

.hero-img-wrap img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.hero-badge {
    position: absolute;
    bottom: -16px;
    left: -20px;
    background: var(--amber);
    color: var(--navy);
    padding: 14px 20px;
    border-radius: 12px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
}

.hero-badge .badge-num {
    font-size: 26px;
    display: block;
    line-height: 1;
}

.hero-badge .badge-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.75;
}

/* SECTION WRAPPERS */
.section {
    padding: 72px 24px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 40px;
}

.section-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.3px;
    line-height: 1.22;
}

.section-sub {
    color: var(--slate);
    font-size: 16px;
    margin-top: 10px;
    max-width: 520px;
    line-height: 1.65;
}

/* FEATURED CARDS */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.offer-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--silver);
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.offer-card:hover {
    box-shadow: 0 8px 32px rgba(15, 27, 45, 0.1);
    transform: translateY(-3px);
}

.offer-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.offer-card-body {
    padding: 20px;
}

.offer-tag {
    display: inline-block;
    background: rgba(245, 166, 35, 0.12);
    color: #C07D10;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.offer-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.offer-card-desc {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 16px;
}

.offer-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--amber);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.offer-card-link:hover {
    gap: 10px;
}

/* HOW IT WORKS */
.how-section {
    background: var(--navy);
    padding: 72px 24px;
}

.how-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.how-section .section-title {
    color: var(--white);
}

.how-section .section-sub {
    color: rgba(255, 255, 255, 0.55);
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
    position: relative;
}

.steps-row::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(245, 166, 35, 0.2);
    pointer-events: none;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.12);
    border: 1px solid rgba(245, 166, 35, 0.3);
    color: var(--amber);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-title {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* SAVINGS HIGHLIGHTS */

.highlights-section {
    background: var(--bg);
}

.highlights-layout {
    max-width: 1200px;
}

.highlights-content .section-sub {
    max-width: 620px;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.highlight-card {
    background: var(--white);
    border: 1px solid var(--silver);
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
    transition: all .25s ease;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(15, 27, 45, .08);
    border-color: rgba(245, 166, 35, .25);
}

.highlight-card .highlight-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    border-radius: 12px;
    background: rgba(245, 166, 35, .10);
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-card .highlight-icon i {
    color: var(--amber);
    font-size: 22px;
}

.highlight-card h4 {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.highlight-card p {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.7;
}

/* Mobile */

@media (max-width:768px) {

    .highlight-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .highlight-card {
        padding: 24px 20px;
    }

}

/* GUIDES PREVIEW */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.guide-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--silver);
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s ease;
    align-items: flex-start;
}

.guide-card:hover {
    border-color: var(--amber);
    box-shadow: 0 6px 24px rgba(15, 27, 45, 0.08);
}

.guide-card-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guide-card-icon i {
    color: var(--amber);
    font-size: 20px;
}

.guide-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.guide-card p {
    font-size: 13px;
    color: var(--slate);
    line-height: 1.6;
}

/* NEWSLETTER */
.newsletter-section {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3055 100%);
    padding: 72px 24px;
    text-align: center;
}

.newsletter-section h2 {
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.25;
}

.newsletter-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 12px;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    margin-bottom: 36px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 440px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 13px 18px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter-form input:focus {
    border-color: var(--amber);
}

.newsletter-form button {
    background: var(--amber);
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
    padding: 13px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--amber-light);
}

/* FOOTER */
footer {
    background: var(--navy);
    padding: 56px 24px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 14px;
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-col ul a:hover {
    color: var(--amber);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--amber);
}

/* PAGE HERO (inner pages) */
.page-hero {
    background: var(--navy);
    padding: 60px 24px 56px;
    margin-top: 64px;
}

.page-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 540px;
    line-height: 1.65;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.breadcrumb a,
.breadcrumb span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--amber);
}

.breadcrumb i {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.25);
}

/* ABOUT PAGE */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-img {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.about-img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.about-accent {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--amber);
    color: var(--navy);
    padding: 16px 22px;
    border-radius: 10px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 15px;
}

.about-text .section-tag {
    display: block;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
    line-height: 1.22;
}

.about-text p {
    color: var(--slate);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-values {
    background: var(--navy);
    padding: 80px 24px;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:28px;
    margin-top:48px;
}

.value-card{
    display:flex;
    flex-direction:column;
    padding:32px 28px;
    border:1px solid rgba(255,255,255,.07);
    border-radius:12px;
    background:rgba(255,255,255,.03);
    height:100%;
}

.value-card i{
    font-size:28px;
    color:var(--amber);
    margin-bottom:18px;
}

.value-card h3{
    font-size:20px;
    color:#fff;
    margin-bottom:14px;
    line-height:1.3;
}

.value-card p{
    color:rgba(255,255,255,.65);
    font-size:15px;
    line-height:1.75;
}

.team-section {
    background: var(--bg);
    padding: 80px 24px;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.focus-tile {
    padding: 28px 22px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--silver);
    text-align: center;
}

.focus-tile i {
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 14px;
    display: block;
}

.focus-tile h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.focus-tile p {
    font-size: 13px;
    color: var(--slate);
    line-height: 1.55;
}

/* FEATURED OFFERS PAGE */
.filters-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid var(--silver-dark);
    background: var(--white);
    color: var(--slate);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--amber);
}

.offers-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.offers-masonry .offer-card:nth-child(2) {
    grid-row: span 1;
}

.promo-banner {
    background: linear-gradient(135deg, #1a3055, var(--navy));
    border-radius: 14px;
    padding: 40px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border: 1px solid rgba(245, 166, 35, 0.15);
    flex-wrap: wrap;
    gap: 20px;
}

.promo-banner h2 {
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.promo-banner p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
}

/* SHOPPING GUIDES PAGE */
.guide-article-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    background: linear-gradient(135deg, var(--navy) 0%, #1a3055 100%);
}

.guide-article-icon i {
    font-size: 28px;
    color: var(--amber);
}

.editorial-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}

.guide-article {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--silver);
    margin-bottom: 28px;
}

.guide-article-body {
    padding: 28px;
}

.guide-article-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.guide-article-body p {
    color: var(--slate);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.sidebar-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--silver);
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--silver);
}

.sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-links li a {
    color: var(--slate);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.sidebar-links li a:hover {
    color: var(--amber);
}

.sidebar-links li a i {
    font-size: 11px;
    color: var(--amber);
}

.sidebar-newsletter {
    background: var(--navy);
    border-color: var(--navy);
}

.sidebar-newsletter h3 {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.1);
}

.sidebar-newsletter p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.sidebar-newsletter .newsletter-form{
    display:flex;
    flex-direction:column;
    gap:12px;
    max-width:100%;
    width:100%;
    margin:0;
}

.sidebar-newsletter .newsletter-form input{
    width:100%;
    padding:12px 14px;
    border-radius:8px;
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.08);
    color:#fff;
    font-size:14px;
    font-family:'Inter',sans-serif;
    outline:none;
    margin:0;
}

.sidebar-newsletter .newsletter-form input::placeholder{
    color:rgba(255,255,255,.45);
}

.sidebar-newsletter .newsletter-form button{
    width:100%;
    padding:12px;
    border:none;
    border-radius:8px;
    background:var(--amber);
    color:var(--navy);
    font-weight:700;
    font-size:14px;
    cursor:pointer;
    font-family:'Inter',sans-serif;
    transition:.25s;
}

.sidebar-newsletter .newsletter-form button:hover{
    background:var(--amber-light);
}

/* SAVINGS TIPS PAGE */
.tips-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 64px;
}

.tips-intro-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tips-visual-card {
    padding: 28px 24px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--silver);
}

.tips-visual-card i {
    font-size: 24px;
    color: var(--amber);
    margin-bottom: 12px;
    display: block;
}

.tips-visual-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.tips-visual-card p {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.6;
}

.tip-number-row {
    display: flex;
    gap: 28px;
    margin-bottom: 28px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.tip-number {
    font-family: 'Syne', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--silver-dark);
    line-height: 1;
    flex-shrink: 0;
    width: 60px;
}

.tip-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.tip-text p {
    color: var(--slate);
    font-size: 15px;
    line-height: 1.7;
}

.tips-accordion {
    margin-bottom: 60px;
}

.accordion-item {
    border: 1px solid var(--silver);
    border-radius: 10px;
    margin-bottom: 12px;
    background: var(--white);
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.accordion-header:hover {
    background: var(--bg);
}

.accordion-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 12px;
}

.accordion-header h3 i {
    color: var(--amber);
    font-size: 16px;
    width: 20px;
}

.accordion-toggle {
    color: var(--slate);
    font-size: 14px;
    transition: transform 0.25s ease;
}

.accordion-item.open .accordion-toggle {
    transform: rotate(180deg);
    color: var(--amber);
}

.accordion-body {
    display: none;
    padding: 0 24px 22px 56px;
}

.accordion-item.open .accordion-body {
    display: block;
}

.accordion-body p {
    color: var(--slate);
    font-size: 14px;
    line-height: 1.7;
}

.tips-cta-box {
    background: var(--navy);
    border-radius: 14px;
    padding: 48px 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

.tips-cta-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.tips-cta-box p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
}

/* RESOURCES PAGE */

.resources-categories {
    display: block;
    width: 100%;
}

.resource-section-group {
    width: 100%;
    max-width: 100%;
    margin-bottom: 56px;
}

.resource-section-group h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--silver);
}

.resource-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.resource-card {
    display: flex;
    gap: 16px;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--silver);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: .25s;
}

.resource-card:hover {
    transform: translateY(-3px);
    border-color: var(--amber);
    box-shadow: 0 8px 24px rgba(15, 27, 45, .08);
}

.resource-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(245, 166, 35, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.resource-card-icon i {
    color: var(--amber);
    font-size: 18px;
}

.resource-card h4 {
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 6px;
}

.resource-card p {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.65;
}

@media(max-width:768px) {

    .resource-cards {
        grid-template-columns: 1fr;
    }

}

/* CONTACT PAGE */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--slate);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--silver);
}

.contact-method-icon {
    width: 40px;
    height: 40px;
    background: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon i {
    color: var(--amber);
    font-size: 16px;
}

.contact-method h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
}

.contact-method p {
    font-size: 13px;
    color: var(--slate);
    margin-bottom: 0;
    line-height: 1.5;
}

.contact-form {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--silver);
    padding: 36px;
}

.contact-form h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--silver-dark);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--amber);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-submit {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    padding: 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.form-submit:hover {
    background: #1a3055;
}

.mission-strip {
    padding: 0 24px 72px;
    background: var(--bg);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mission-item {
    padding: 28px 24px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--silver);
    text-align: center;
}

.mission-item i {
    font-size: 26px;
    color: var(--amber);
    margin-bottom: 14px;
    display: block;
}

.mission-item h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.mission-item p {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.6;
}

.cta-strip {
    background: var(--navy);
    padding: 56px 24px;
    text-align: center;
}

.cta-strip-inner {
    max-width: 560px;
    margin: 0 auto;
}

.cta-strip h2 {
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 700;
    color: var(--white);
    margin: 10px 0 14px;
    line-height: 1.25;
}

.cta-strip p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.65;
}

.cta-strip-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-section {
    background: var(--bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-card {
    padding: 24px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--silver);
}

.faq-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.faq-card p {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.6;
}

.info-box {
    margin-top: 32px;
    padding: 24px;
    background: var(--bg);
    border-radius: 12px;
    border: 1px solid var(--silver);
}

.info-box h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.info-box p {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.65;
}

/* UTILITY */
.bg-white {
    background: var(--white);
}

.bg-silver {
    background: var(--silver);
}

.text-center {
    text-align: center;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background: var(--navy);
    z-index: 999;
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-direction: column;
    gap: 4px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 11px 14px;
    border-radius: 7px;
    transition: all 0.2s ease;
}

.mobile-menu a:hover {
    color: var(--amber);
    background: rgba(245, 166, 35, 0.08);
}

.mobile-menu a.nav-cta {
    background: var(--amber);
    color: var(--navy);
    font-weight: 700;
    margin-top: 8px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .hero h1 {
        max-width: 18ch;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-img-wrap img {
        height: 280px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .steps-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-row::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .values-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .editorial-layout {
        grid-template-columns: 1fr;
    }

    .resources-categories {
        grid-template-columns: 1fr;
    }

    .resource-nav {
        position: static;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 0 20px;
        align-items: start;
    }

    .tips-cta-box {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .about-intro {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .section {
        padding: 56px 20px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .guides-grid {
        grid-template-columns: 1fr;
    }

    .offers-masonry {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .promo-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .resource-cards {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .tips-intro {
        grid-template-columns: 1fr;
    }

    .values-grid{
        grid-template-columns:1fr;
        gap:18px;
    }
    
    .value-card{
        padding:24px 20px;
    }
    
    .value-card h3{
        font-size:22px;
    }
    
    .value-card p{
        font-size:15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 88px 20px 64px;
    }

    .page-hero {
        padding: 48px 20px 44px;
    }

    .hero-img-wrap img {
        height: 240px;
    }
}


/* CORE TIPS */

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.tip-card {
    background: #fff;
    border: 1px solid var(--silver);
    border-radius: 12px;
    padding: 28px;
    transition: .25s;
}

.tip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
}

.tip-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(245, 166, 35, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.tip-card-icon i {
    color: var(--amber);
    font-size: 22px;
}

.tip-card h3 {
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 18px;
}

.tip-card p {
    color: var(--slate);
    line-height: 1.7;
    font-size: 14px;
}

@media(max-width:768px) {

    .tips-grid {
        grid-template-columns: 1fr;
    }

}


.resource-shortcuts {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin: 60px 0 50px;
}

.shortcut-card {
    background: #fff;
    border: 1px solid var(--silver);
    border-radius: 12px;
    padding: 28px 18px;
    text-align: center;
    text-decoration: none;
    transition: .25s;
}

.shortcut-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
}

.shortcut-card i {
    font-size: 26px;
    color: var(--amber);
    margin-bottom: 14px;
}

.shortcut-card h4 {
    font-size: 15px;
    color: var(--navy);
}

@media(max-width:992px) {

    .resource-shortcuts {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:576px) {

    .resource-shortcuts {
        grid-template-columns: 1fr;
    }

}




