:root {
    /* Color Palette */
    --primary-navy: #2d3e5e;
    /* Navy for main header */
    --top-bar-dark: #121821;
    /* Darker for top bar */
    --accent-red: #f05454;
    --btn-blue: #5d7bbd;
    /* Specific button blue */
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --white: #ffffff;
    --light-grey: #f9fafb;
    --border-grey: #e5e7eb;

    /* Typography */
    --font-main: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 140px 0;
    --container-width: 1320px;

    /* Shadows & Rounds */
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --border-radius: 12px;
}

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

body {
    font-family: var(--font-main);
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.rounded {
    border-radius: var(--border-radius);
}

.shadow {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.bg-light {
    background-color: var(--light-grey);
}

.text-center {
    text-align: center;
}

.w-100 {
    width: 100%;
}

.align-center {
    align-items: center;
}

h1,
h2,
h3,
h4,
h5 {
    color: var(--primary-navy);
    line-height: 1.25;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
}

p {
    margin-bottom: 30px;
    color: #4b5563;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 32px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background: #d94545;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 84, 84, 0.3);
}

.btn-quote {
    background: var(--cta-blue);
    color: var(--white);
}

/* Header & Top Bar */
.top-bar {
    background: #11141a;
    color: #e2e8f0;
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
}

.top-bar-content {
    display: flex;
    align-items: center;
}

.top-nav-left {
    display: flex;
    align-items: center;
}

.top-nav-left a {
    color: white;
    font-weight: 600;
    text-decoration: none;
    margin-right: 15px;
}

.divider {
    color: #f05454;
    margin: 0 15px;
    opacity: 0.8;
}

.top-nav-right {
    display: flex;
    align-items: center;
}

.top-nav-right span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-nav-right i {
    color: var(--accent-red);
    font-style: normal;
}

.main-header {
    background: var(--primary-navy);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling to match ref */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

/* Logo styles replaced by img */

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #cbd5e1;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-menu a:hover {
    color: white;
}

.btn-schedule {
    background: var(--btn-blue);
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
}

/* Hero */
.hero {
    background: linear-gradient(to right, rgba(29, 44, 77, 0.95) 40%, rgba(29, 44, 77, 0.8) 100%), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    color: white;
    min-height: 800px;
    display: flex;
    align-items: center;
}

/* Different Section */
.different-grid {
    padding: 140px 0;
    background: #f1f6fa;
}

.different-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.different-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #111;
    margin-bottom: 70px;
}

.diff-cards {
    gap: 40px;
}

.diff-card {
    background: white;
    padding: 50px 35px;
    border-radius: 12px;
    text-align: left;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.diff-card:hover {
    transform: translateY(-5px);
}

.diff-icon {
    font-size: 45px;
    color: var(--accent-red);
    margin-bottom: 25px;
}

.diff-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1a2b4b;
    margin-bottom: 20px;
}

.diff-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
}

@media (max-width: 991px) {
    .grid-3-col.diff-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .grid-3-col.diff-cards {
        grid-template-columns: 1fr;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 80px;
    align-items: center;
}

.hero-intro {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    text-transform: capitalize;
}

.hero h1 {
    color: white;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-tag {
    display: inline-block;
    padding: 10px 20px;
    background: var(--btn-blue);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 40px;
}

.hero-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.hero-benefits li {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--btn-blue);
    color: white;
    border-radius: 50%;
    font-size: 10px;
}

.google-review-badge {
    background: white;
    border-radius: 8px;
    padding: 15px 25px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.google-icon {
    font-family: 'Arial', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #4285F4;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
}

.google-rating .stars {
    color: #FBBC05;
    font-size: 20px;
    letter-spacing: 2px;
}

/* Hero Form Card */
.hero-form-box {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color: var(--text-dark);
    padding: 0;
}

.form-header {
    background: var(--btn-blue);
    padding: 25px;
    text-align: center;
}

.form-header h3 {
    color: white;
    margin: 0;
    font-size: 26px;
    font-weight: 700;
}

.form-body {
    padding: 40px 30px;
    text-align: center;
}

.form-body p {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
    line-height: 1.4;
}

.form-body input {
    width: 100%;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
}

.round-btn {
    border-radius: 6px;
    padding: 16px;
    font-size: 15px;
    letter-spacing: 1px;
}

/* Why Settle For Less / Dark CTA */
.dark-cta {
    background: linear-gradient(rgba(45, 62, 94, 0.95), rgba(45, 62, 94, 0.95)), url('../images/team-meeting.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: white;
}

/* Stop Struggling Section */
.stop-struggling {
    padding: 100px 0;
    background: white;
}

.stop-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 70px;
}

.side-title {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
}

.side-intro {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    margin-bottom: 25px;
}

.side-text {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 35px;
}

.stop-struggling .btn-red {
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.stop-struggling .image-side img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.cta-text h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 30px;
}

.cta-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-next {
    margin-top: 50px;
}

.cta-next h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.next-list {
    list-style: none;
}

.next-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.next-list li::before {
    content: "➔";
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    background: var(--btn-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
}

.cta-form-box {
    background: white;
    padding: 60px 40px;
    border-radius: 12px;
    color: var(--text-dark);
}

.schedule-form .form-group {
    margin-bottom: 20px;
}

.schedule-form input,
.schedule-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

.schedule-form textarea {
    height: 120px;
    resize: none;
}

.form-checkbox {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    margin: 0;
}

.form-links {
    text-align: center;
    margin: 25px 0;
}

.form-links a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}

.btn-red {
    background: var(--accent-red);
    color: white;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.hero-form-box,
.cta-form-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    color: var(--text-dark);
}

.hero-form-box h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

/* IT Projects Section */
.it-projects {
    padding: 100px 0;
    background: #fdfdfd;
}

.projects-title {
    font-size: 48px;
    font-weight: 800;
    color: #111;
    margin-bottom: 30px;
}

.projects-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    margin-bottom: 25px;
}

.projects-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 25px;
}

.it-projects .btn-red {
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 700;
}

/* Final Newsletter Section */
.final-newsletter {
    padding: 100px 0;
    background: white;
}

.final-newsletter .grid-2-col {
    align-items: flex-start;
}

.final-newsletter .text-side p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 25px;
    padding-right: 40px;
}

.final-newsletter .text-side p strong {
    color: #111;
    font-weight: 800;
}

.final-newsletter .image-side img {
    width: 100%;
    aspect-ratio: 1 / 1.05;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.news-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.news-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.check-list-red {
    list-style: none;
    margin: 30px 0 40px;
}

.check-list-red li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
}

.check-list-red li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: #f87171;
    color: white;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 900;
}

.final-newsletter .btn-red {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
}

.hero-form-box p {
    font-size: 14px;
    margin-bottom: 30px;
}

form input,
form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid var(--border-grey);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
}

/* Sections */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px;
}

.section-tag {
    color: var(--accent-red);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

/* Proof Section / Three Pillars */
.proof-section {
    padding: 140px 0;
    background: #f8fafc;
}

.pillar-intro {
    font-size: 20px;
    font-weight: 500;
    color: #1a2b4b;
    margin-bottom: 10px;
}

.pillar-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 70px;
    letter-spacing: -1.5px;
}

/* Benefits / Common Problems */
.benefits {
    padding: 140px 0;
    background: #fdfdfd;
}

.problem-title {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.problem-subtitle {
    font-size: 26px;
    font-weight: 500;
    color: #333;
    margin-bottom: 50px;
}

.problem-intro {
    color: #f05454;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 60px;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.problem-card {
    background: white;
    padding: 50px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
}

.problem-card h4 {
    margin: 30px 0 20px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--primary-navy);
}

.problem-card p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #f87171;
    color: white;
    font-size: 32px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pillar-card {
    background: #edf2f7;
    padding: 30px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    transition: transform 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
}

.pillar-icon {
    font-size: 40px;
    background: white;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--accent-red);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.pillar-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.3;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    padding: 45px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.card .icon {
    font-size: 50px;
    margin-bottom: 25px;
    display: block;
}

.card h4 {
    font-size: 22px;
    margin-bottom: 18px;
}

/* Record Straight Section */
.record-straight {
    padding: 140px 0;
    background: white;
}

.record-title {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.record-subtitle {
    font-size: 28px;
    font-weight: 500;
    color: #333;
    margin-bottom: 80px;
}

/* Trust Bar */
.trust-bar {
    padding: 60px 0;
    background: #f8fbfe;
    border-bottom: 1px solid #eee;
}

.trust-text {
    font-size: 14px;
    font-weight: 700;
    color: #888;
    margin-right: 30px;
}

.logo-grid-small {
    display: flex;
    gap: 40px;
    align-items: center;
    opacity: 0.6;
}

.placeholder-logo {
    font-weight: 800;
    font-size: 18px;
    color: #444;
}

.faq-item.active .faq-body {
    display: block;
}

.faq-header {
    cursor: pointer;
}

.faq-toggle {
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* Reviews Page Styling */
.reviews-hero {
    background: linear-gradient(rgba(33, 50, 78, 0.9), rgba(33, 50, 78, 0.9)), url('../images/reviews_hero.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: #ffffff;
}

.reviews-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.reviews-hero p {
    font-size: 20px;
    border-left: 3px solid #f7454a;
    padding-left: 15px;
    color: #ffffff;
}

.reputation-list {
    padding: 80px 0;
    background: #ffffff;
}

.reviews-header {
    margin-bottom: 60px;
    max-width: 800px;
}

.reviews-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.reputation-intro {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.reputation-intro.bold {
    font-weight: 700;
    color: #111;
}

.review-item {
    padding: 40px 0;
    border-bottom: 1px solid #eaeaea;
}

.review-item:last-child {
    border-bottom: none;
}

.stars {
    color: #ffc107;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.review-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 25px;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-details strong {
    font-size: 16px;
    color: #111;
}

.reviewer-details span {
    font-size: 14px;
    color: #777;
}

/* Reviews Page Layout & Sidebar */
.reviews-layout-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

.reviews-main-col {
    padding-right: 20px;
}

.reviews-sidebar-col {
    position: sticky;
    top: 110px;
    align-self: start;
    margin-left: auto;
    width: 100%;
    max-width: 340px;
}

.sidebar-form-card {
    background: #f1f5f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.sidebar-header {
    background: #253350;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.sidebar-header h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 1px;
    margin: 0;
    color: #ffffff;
}

.sidebar-body {
    padding: 40px 30px;
}

.sidebar-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.sidebar-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 18px;
    color: #111;
    line-height: 1.4;
}

.check-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background-color: #f7454a;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 3px;
}

.check-icon svg {
    width: 14px;
    height: 14px;
}

.sidebar-form-intro {
    font-size: 18px;
    color: #111;
    margin-bottom: 30px;
    line-height: 1.5;
}

.sidebar-form input {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
    padding: 18px 20px;
    font-size: 16px;
}

.sidebar-form .btn-red {
    font-size: 16px;
    padding: 18px 30px;
    letter-spacing: 1px;
    border-radius: 4px;
}

/* Responsive adjustments for reviews grid */
@media (max-width: 1024px) {
    .reviews-layout-grid {
        grid-template-columns: 1fr;
    }

    .reviews-main-col {
        padding-right: 0;
    }

    .reviews-sidebar-col {
        position: static;
        margin-left: 0;
        max-width: 100%;
        margin-top: 40px;
    }
}


/* FAQ Section */
.faq-section {
    background: #f1f6fa;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    margin: 0;
}

.faq-map {
    height: 100%;
    min-height: 600px;
}

.faq-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.faq-content {
    padding: 140px 8% 140px 10%;
    background: #f1f6fa;
}

.faq-title {
    font-size: 56px;
    font-weight: 800;
    color: #2e4466;
    margin-bottom: 60px;
    letter-spacing: -1.5px;
}

.faq-accordion {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 30px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

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

.faq-header h4 {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin: 0;
}

.faq-toggle {
    width: 35px;
    height: 35px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 14px;
}

.faq-toggle.blue {
    background: var(--btn-blue);
}

.faq-toggle.red {
    background: #f87171;
}

.faq-body {
    display: none;
    margin-top: 20px;
    padding-right: 40px;
}

.faq-body p {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
}

@media (max-width: 1200px) {
    .faq-container {
        grid-template-columns: 1fr;
    }

    .faq-map {
        height: 400px;
        min-height: 400px;
    }

    .faq-content {
        padding: 60px 40px;
    }
}

.record-box {
    background: #f1f6fa;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 80px;
    align-items: center;
}

.record-logo {
    margin-bottom: 40px;
}

.record-logo .logo-main {
    color: var(--primary-navy);
}

.record-logo .logo-sub {
    color: #64748b;
}

.record-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 30px;
}

.record-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .record-box {
        grid-template-columns: 1fr;
        padding: 40px;
    }
}

/* Grid Helpers */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

/* Split Sections */
.check-list {
    list-style: none;
    margin-top: 25px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 16px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: 900;
}

/* How It Works */
.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.how-item {
    position: relative;
}

.how-item .num {
    font-size: 60px;
    font-weight: 900;
    color: #f1f5f9;
    position: absolute;
    top: -30px;
    left: -10px;
    z-index: -1;
}

.how-item h4 {
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--primary-navy);
}

/* How We Do IT - v2 */
.how-it-works {
    padding: 100px 0;
    background: white;
}

.how-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 30px;
    letter-spacing: -1.5px;
}

.how-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 80px;
}

.how-item-v2 {
    text-align: left;
}

.how-icon-v2 {
    font-size: 50px;
    color: var(--accent-red);
    margin-bottom: 25px;
    display: inline-block;
}

.how-item-v2 h4 {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.how-item-v2 p {
    font-size: 16px;
    line-height: 1.6;
    color: #888;
}

@media (max-width: 768px) {
    .how-grid-v2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Dark CTA */
.dark-cta {
    background: linear-gradient(rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.82)),
        url('../images/hero-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 100px 0;
}

.dark-cta .grid-2-col {
    align-items: center;
    gap: 60px;
}

.dark-cta h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.dark-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.dark-cta p a,
.dark-cta p strong a {
    color: #f05454;
    font-weight: 700;
    text-decoration: none;
}

.happens-next-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 28px 0 16px;
}

.happens-next-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.happens-next-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    line-height: 1.5;
}

.happens-next-list li::before {
    content: "➔";
    color: #f05454;
    flex-shrink: 0;
    margin-top: 1px;
}

/* White card wrapping the CTA form */
.cta-form-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px 36px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.cta-form-box {
    background: transparent;
}

.cta-contact p {
    margin-bottom: 10px;
    font-size: 18px;
}

/* Different Grid */
.s-card {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.s-card .icon-small {
    font-size: 24px;
    background: #fff1f2;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--accent-red);
}

/* Alternating */
.alternating-sections {
    padding: 120px 0;
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-grey);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.faq-item h4 {
    margin-bottom: 10px;
}

/* Footer */
.main-footer {
    background: #161f32;
    color: white;
    padding: 0;
}

.footer-top {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 100px 0 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.main-footer .logo-text {
    color: white;
    font-weight: 700;
    font-size: 24px;
}

.footer-brand .logo {
    margin-bottom: 0;
}

.footer-brand .logo-main {
    color: white;
}

.footer-brand .logo-sub {
    color: rgba(255, 255, 255, 0.5);
}

.footer-brand .logo-mark .mark-dots,
.footer-brand .logo-mark .mark-line {
    color: #f05454;
}

.main-footer h5 {
    color: white;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 700;
}

.main-footer p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #94a3b8;
}

.footer-contact-icon {
    width: 22px;
    height: 22px;
    background: #f05454;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 11px;
    color: white;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 6px;
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.5;
}

.footer-address .footer-contact-icon {
    margin-top: 2px;
}

.main-footer ul {
    list-style: none;
}

.main-footer ul li {
    margin-bottom: 12px;
}

.main-footer ul a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
}

.main-footer ul a:hover {
    color: white;
}

.footer-bottom {
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: #64748b;
    font-size: 13px;
    margin: 0;
}

.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-social a {
    width: 32px;
    height: 32px;
    background: #1e293b;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
    background: #f05454;
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .hero-grid,
    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .how-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .benefit-cards,
    .grid-3-col {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 32px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .section-padding {
        padding: 60px 0;
    }
}

/* Blog Page Styles */
.blog-section {
    padding: 140px 0;
    background: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-item {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: center;
}

.blog-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-navy);
}

.blog-date {
    font-size: 14px;
    color: var(--accent-red);
    margin-bottom: 15px;
    font-weight: 500;
}

.blog-excerpt {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.read-more {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    text-decoration: underline;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 110px;
    align-self: start;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-box input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid var(--border-grey);
    border-radius: 6px;
    font-size: 14px;
}

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--btn-blue);
    font-size: 14px;
}

.sidebar-card {
    background: #f1f6fa;
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.sidebar-help-text {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 25px;
    color: #111;
    font-weight: 700;
}

.sidebar-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-form input {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 15px;
    background: white;
}

.sidebar-form .btn-red {
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
}

.sidebar-card h3 {
    font-size: 24px;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

/* Pagination */
.pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.page-link {
    text-decoration: none;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 600;
}

.page-num {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-grey);
    border-radius: 5px;
    color: var(--btn-blue);
}

.page-num.active {
    background: var(--btn-blue);
    color: white;
    border-color: var(--btn-blue);
}

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-item {
        grid-template-columns: 1fr;
    }

    .blog-img img {
        aspect-ratio: 16/9;
    }
}