:root {
--primary-green: #0cc994;
--primary-coral: #f76c55;
--dark-blue: #1a253c;
--medium-blue: #4a5468;
--light-gray: #f8fafc;
--text-light: #ffffff;
--text-dark: #1e293b;
--border-color: #e2e8f0;
--hero-gradient: linear-gradient(135deg, #f8fafc 0%, #e8f4fd 100%);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
color: var(--text-dark);
background-color: #ffffff;
line-height: 1.6;
overflow-x: hidden;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
section {
padding: 80px 0;
}
h1, h2, h3, h4 {
color: var(--dark-blue);
font-weight: 700;
}
h1 {
font-size: 3.5rem;
line-height: 1.1;
font-weight: 800;
}
h2 {
font-size: 2.5rem;
text-align: center;
margin-bottom: 40px;
}
h3 {
font-size: 1.8rem;
margin-bottom: 15px;
}
p {
font-size: 1.1rem;
color: var(--medium-blue);
}
a {
text-decoration: none;
color: var(--primary-green);
}
.btn {
display: inline-block;
padding: 14px 32px;
border-radius: 12px;
font-weight: 600;
transition: all 0.3s ease;
cursor: pointer;
border: none;
}
.btn-primary {
background: linear-gradient(135deg, var(--primary-green) 0%, #00b884 100%);
color: var(--text-light);
box-shadow: 0 4px 15px rgba(12, 201, 148, 0.3);
}
.btn:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(12, 201, 148, 0.4);
} .main-header {
background-color: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
padding: 15px 0;
border-bottom: 1px solid var(--border-color);
position: sticky;
top: 0;
z-index: 1000;
}
.main-nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-logo img {
height: 45px;
width: auto;
}
.nav-links {
list-style: none;
display: flex;
align-items: center;
gap: 30px;
}
.nav-links a {
color: var(--medium-blue);
font-weight: 500;
position: relative;
transition: color 0.3s ease;
}
.nav-links a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(90deg, var(--primary-green), var(--primary-coral));
transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-features-dropdown { position: relative; }
.nav-features-dropdown .dropdown-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
background-color: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border: 1px solid var(--border-color);
border-radius: 12px;
padding: 15px 0;
min-width: 220px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.nav-features-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
display: block;
padding: 12px 20px;
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover { 
background-color: var(--light-gray);
color: var(--primary-green);
}
.hamburger-menu { display: none; cursor: pointer; } #hero {
background: var(--hero-gradient);
padding: 120px 0 80px 0;
position: relative;
overflow: hidden;
}
.hero-container {
display: grid;
grid-template-columns: 2fr 3fr;
gap: 60px;
align-items: stretch;
position: relative;
z-index: 2;
}
.hero-content {
max-width: 540px;
}
.hero-content h1 {
font-size: 4rem;
line-height: 1.1;
margin-bottom: 24px;
background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-green) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-content p {
font-size: 1.3rem;
line-height: 1.6;
margin-bottom: 40px;
color: var(--medium-blue);
}
.hero-stats {
display: flex;
gap: 30px;
margin-bottom: 40px;
}
.stat-item {
text-align: left;
}
.stat-number {
font-size: 2rem;
font-weight: 800;
color: var(--primary-green);
display: block;
}
.stat-label {
font-size: 0.9rem;
color: var(--medium-blue);
text-transform: uppercase;
letter-spacing: 0.5px;
}
.hero-cta-buttons {
display: flex;
gap: 15px;
align-items: center;
}
.hero-cta-buttons img {
height: 60px;
transition: transform 0.3s ease;
}
.hero-cta-buttons img:hover {
transform: scale(1.05);
}
.hero-visual {
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.hero-visual img {
width: 100%;
height: 100%; object-fit: cover; border-radius: 24px;
box-shadow: 0 25px 60px rgba(26, 37, 60, 0.2);
position: relative;
z-index: 2;
transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
transition: transform 0.3s ease;
}
.hero-visual img:hover {
transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
} #social-proof {
padding: 60px 0;
background-color: #fff;
}
#social-proof h2 {
font-size: 1rem;
font-weight: 600;
color: #999;
letter-spacing: 1px;
text-transform: uppercase;
margin-bottom: 30px;
}
.logos {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 50px;
}
.logos .main-logo-strip {
max-height: 300px; 
width: auto;
max-width: 100%;
opacity: 0.7;
transition: opacity 0.3s ease;
}
.logos .main-logo-strip:hover {
opacity: 1;
} .feature-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}
.feature-row.reverse {
direction: rtl;
}
.feature-row.reverse > * {
direction: ltr;
}
.feature-image img {
width: 100%;
height: 450px; object-fit: cover; border-radius: 20px;
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
border: 1px solid var(--border-color);
transition: transform 0.3s ease;
}
.feature-image img:hover {
transform: translateY(-5px);
}
.feature-text h3 {
font-size: 2.2rem;
font-weight: 700;
margin-bottom: 20px;
}
.feature-text p {
font-size: 1.2rem;
line-height: 1.7;
margin-bottom: 30px;
}
.feature-link {
font-weight: 600;
color: var(--primary-green);
display: inline-flex;
align-items: center;
gap: 8px;
transition: gap 0.3s ease;
}
.feature-link:hover {
gap: 12px;
}
.feature-section-1 { 
background: linear-gradient(135deg, #e6f9f4 0%, #f0fdf8 100%);
}
.feature-section-2 { 
background: linear-gradient(135deg, #feefeb 0%, #fef7f3 100%);
}
.feature-section-3 { 
background: linear-gradient(135deg, var(--light-gray) 0%, #f1f5f9 100%);
}
.feature-section-2 .feature-link {
color: var(--primary-coral);
} #trust {
background-color: #ffffff;
}
.testimonials {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 40px;
margin-bottom: 60px;
}
.testimonial-card {
background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
padding: 35px;
border-radius: 20px;
border-left: 5px solid var(--primary-green);
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
transition: transform 0.3s ease;
}
.testimonial-card:hover {
transform: translateY(-5px);
}
.testimonial-card p {
font-size: 1.1rem;
font-style: italic;
margin-bottom: 20px;
color: var(--text-dark);
}
.testimonial-card cite {
font-weight: 600;
color: var(--primary-green);
} #deeper-savings {
background: linear-gradient(135deg, var(--light-gray) 0%, #e8f4fd 100%);
}
#deeper-savings .container > p {
text-align: center;
max-width: 600px;
margin: -20px auto 50px;
font-size: 1.2rem;
}
.savings-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
}
.savings-card {
display: flex;
align-items: center;
gap: 20px;
padding: 30px;
background-color: #fff;
border: 2px solid transparent;
border-radius: 16px;
transition: all 0.3s ease;
cursor: pointer;
}
.savings-card:hover {
background: linear-gradient(135deg, var(--primary-green) 0%, #00b884 100%);
color: #fff;
border-color: var(--primary-green);
transform: translateY(-3px);
}
.savings-card:hover .savings-icon,
.savings-card:hover .savings-text,
.savings-card:hover p {
color: #fff;
}
.savings-icon {
font-size: 2.2rem;
color: var(--primary-green);
transition: color 0.3s ease;
}
.savings-text {
font-size: 1.2rem;
font-weight: 600;
color: var(--dark-blue);
transition: color 0.3s ease;
} #guides {
background-color: #fff;
}
.guides-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
}
.guide-card {
background-color: #fff;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 8px 25px rgba(0,0,0,0.08);
border: 1px solid var(--border-color);
transition: all 0.3s ease;
}
.guide-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.guide-card img {
width: 100%;
height: 200px;
object-fit: cover;
transition: transform 0.3s ease;
}
.guide-card:hover img {
transform: scale(1.05);
}
.guide-content {
padding: 25px;
}
.guide-content h4 {
font-size: 1.2rem;
margin-bottom: 15px;
line-height: 1.4;
}
.guide-content a {
font-weight: 600;
color: var(--primary-green);
display: inline-flex;
align-items: center;
gap: 5px;
transition: gap 0.3s ease;
}
.guide-content a:hover {
gap: 8px;
} #final-cta {
background: linear-gradient(135deg, var(--dark-blue) 0%, #2d3748 100%);
text-align: center;
position: relative;
overflow: hidden;
}
#final-cta h2, #final-cta p, #final-cta .hero-cta-buttons {
position: relative;
z-index: 2;
}
#final-cta h2 {
font-size: 3rem;
margin-bottom: 20px;
color: var(--text-light);
}
#final-cta p {
font-size: 1.3rem;
margin-bottom: 40px;
opacity: 0.9;
color: var(--text-light);
} footer {
background-color: #fff;
color: var(--medium-blue);
padding: 80px 0 40px;
border-top: 1px solid var(--border-color);
}
.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 50px;
margin-bottom: 60px;
}
.footer-about .footer-logo img {
height: 40px;
margin-bottom: 20px;
}
.footer-col h4 {
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 20px;
color: var(--dark-blue);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { 
color: var(--medium-blue);
transition: color 0.3s ease;
}
.footer-col ul a:hover { color: var(--primary-green); }
.footer-bottom {
border-top: 1px solid var(--border-color);
padding-top: 40px;
display: flex;
justify-content: space-between;
align-items: center;
}
.social-links a {
margin-left: 20px;
font-size: 1.4rem;
color: var(--medium-blue);
transition: all 0.3s ease;
}
.social-links a:hover { 
color: var(--primary-green);
transform: translateY(-2px);
} @media (max-width: 1024px) {
.hero-container {
grid-template-columns: 1fr;
gap: 40px;
text-align: center;
}
.stat-item {
text-align: center;
}
.hero-content {
max-width: 100%;
order: 2;
}
.hero-content {
max-width: 100%;
order: 2;
}
.hero-visual {
order: 1;
}
.hero-stats {
justify-content: center;
}
.feature-row {
grid-template-columns: 1fr;
gap: 50px;
text-align: center;
}
.feature-row.reverse {
direction: ltr;
}
.feature-image {
order: 1;
}
.feature-text {
order: 2;
}
}
@media (max-width: 991px) {
.guides-grid { grid-template-columns: repeat(2, 1fr); }
.footer-grid { grid-template-columns: repeat(2, 1fr); }
.testimonials { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
section { padding: 60px 0; }
.hero-content h1 {
font-size: 2.8rem;
}
#hero {
padding: 80px 0 60px 0;
}
.hero-stats {
flex-direction: column;
gap: 20px;
align-items: center;
}
.hero-cta-buttons {
flex-direction: column;
gap: 10px;
align-items: center;
}
.nav-links {
display: none;
flex-direction: column;
position: absolute;
top: 76px; left: 0;
width: 100%;
background-color: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
padding: 20px 0;
border-bottom: 1px solid var(--border-color);
}
.nav-links.active { display: flex; }
.nav-links .btn-primary { display: none; } .desktop-cta-button { display: none; } .hamburger-menu { display: block; font-size: 1.8rem; }
.footer-bottom { flex-direction: column; gap: 20px; }
.savings-grid {
grid-template-columns: 1fr;
}
}
@media (max-width: 576px) {
.guides-grid { grid-template-columns: 1fr; }
.footer-grid { grid-template-columns: 1fr; text-align: center; }
.hero-content h1 { font-size: 2.2rem; }
#final-cta h2 { font-size: 2.2rem; }
} .entry-content {
max-width: 740px; margin-left: auto;
margin-right: auto;
} .entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content blockquote {
margin-bottom: 1.5em;
} .entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
margin-top: 2em;
margin-bottom: 1em;
line-height: 1.3;
}
.entry-content h2 { font-size: 2rem; }
.entry-content h3 { font-size: 1.75rem; }
.entry-content h4 { font-size: 1.5rem; } .entry-content ul,
.entry-content ol {
padding-left: 1.5em;
} .entry-content blockquote {
border-left: 3px solid var(--primary-green);
padding-left: 1.5em;
font-style: italic;
font-size: 1.2rem;
color: var(--medium-blue);
} .entry-content img {
max-width: 100%;
height: auto;
border-radius: 8px; }  .sub-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
background-color: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border: 1px solid var(--border-color);
border-radius: 12px;
padding: 15px 0;
min-width: 220px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
list-style: none;
z-index: 100;
} .menu-item-has-children {
position: relative;
} .menu-item-has-children:hover > .sub-menu {
display: block;
} .sub-menu a {
display: block;
padding: 12px 20px;
color: var(--medium-blue);
font-weight: 500;
}
.sub-menu a:hover {
background-color: var(--light-gray);
color: var(--primary-green);
} .sub-menu a::after {
display: none !important;
} #final-cta .hero-cta-buttons {
justify-content: center;
}  .post-content {
max-width: 740px; margin: 0 auto;
}
.post-content p {
font-size: 1.125rem; line-height: 1.8; margin-bottom: 1.75em;
} .post-content a {
color: var(--primary-green);
text-decoration: none;
border-bottom: 2px solid rgba(12, 201, 148, 0.2);
transition: all 0.2s ease-in-out;
}
.post-content a:hover {
background-color: rgba(12, 201, 148, 0.1);
border-bottom-color: var(--primary-green);
} .post-content h2,
.post-content h3,
.post-content h4 {
font-weight: 700;
line-height: 1.3;
margin-bottom: 0.75em;
}
.post-content h2 {
font-size: 2.2rem;
margin-top: 2.5em; border-bottom: 2px solid var(--border-color);
padding-bottom: 0.5em;
}
.post-content h3 {
font-size: 1.8rem;
margin-top: 2em;
}
.post-content h4 {
font-size: 1.5rem;
margin-top: 1.5em;
} .post-content img {
max-width: 100%;
height: auto;
border-radius: 12px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
margin-top: 2em;
margin-bottom: 2em;
} .post-content blockquote {
margin: 2em 0;
padding: 1.5em 2em;
background-color: var(--light-gray);
border-left: 4px solid var(--primary-green);
border-radius: 8px;
}
.post-content blockquote p {
font-size: 1.25rem;
font-style: italic;
color: var(--dark-blue);
margin-bottom: 0;
} .post-content ul,
.post-content ol {
margin-bottom: 1.75em;
padding-left: 1.5em;
}
.post-content li {
margin-bottom: 0.75em;
padding-left: 0.5em;
line-height: 1.8;
} .post-content hr {
border: none;
border-top: 2px solid var(--border-color);
margin: 3em auto;
}  .single .entry-content p:first-of-type::first-letter {
color: var(--dark-blue);
float: left;
font-size: 5rem; line-height: 0.75;
margin: 0.05em 0.1em 0 0;
} .entry-content .wp-caption-text {
font-size: 0.9rem;
color: var(--medium-blue);
text-align: center;
font-style: italic;
margin-top: -1em; } .wiselist-callout {
background-color: #f0fdf8; border-left: 4px solid var(--primary-green);
border-radius: 8px;
padding: 1.5em 2em;
margin: 2em 0;
}  .entry-header .entry-title {
font-size: 2.5rem; text-align: left; margin-bottom: 30px; border-bottom: 2px solid var(--border-color); padding-bottom: 0.5em;
}