/* ========================================
   JEM CPA, PLLC — Website Styles
   Colors pulled from logo:
   - Navy:      #1e1e3a
   - Deep navy: #13132b
   - Rose gold: #c4a17e
   - Light rose:#d4b896
   - Off-white: #f9f7f4
   - White:     #ffffff
   ======================================== */

/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #2d2d3d;
    line-height: 1.7;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', 'Georgia', serif;
    color: #1e1e3a;
    line-height: 1.3;
}

a {
    color: #c4a17e;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #a8845f;
}

img {
    max-width: 100%;
    height: auto;
}


/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #c4a17e;
    color: #ffffff;
}

.btn-primary:hover {
    background: #a8845f;
    color: #ffffff;
}

.btn-secondary {
    background: #1e1e3a;
    color: #ffffff;
}

.btn-secondary:hover {
    background: #2d2d55;
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #1e1e3a;
}

.btn-nav {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
    text-align: center;
}


/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 16px 0;
}

.navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 150px;
    width: auto;
}

.nav-brand {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e1e3a;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 24px;
}

.nav-links a {
    color: #1e1e3a;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #c4a17e;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: #1e1e3a;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* --- HERO --- */
.hero {
    background: linear-gradient(135deg, #13132b 0%, #1e1e3a 50%, #2a2a50 100%);
    padding: 220px 0 120px;
    text-align: center;
}

.hero-firm-name {
    color: #c4a17e;
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero h1 {
    color: #ffffff;
    font-size: 3rem;
    max-width: 800px;
    margin: 0 auto 24px;
}

.hero-sub {
    color: #b8b8d0;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* --- TRUST BAR --- */
.trust-bar {
    background: #f9f7f4;
    padding: 20px 0;
    border-bottom: 1px solid #ece8e1;
}

.trust-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1e1e3a;
}

.trust-icon {
    color: #c4a17e;
    font-size: 1.1rem;
}


/* --- WHO THIS IS FOR --- */
.who-for {
    padding: 100px 0;
    background: #ffffff;
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
}

.who-card {
    background: #f9f7f4;
    border-radius: 12px;
    padding: 40px;
}

.who-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: #1e1e3a;
}

.who-card p {
    color: #555;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.who-card ul {
    list-style: none;
    padding: 0;
}

.who-card ul li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 0.93rem;
    color: #444;
}

.who-card ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #c4a17e;
    font-weight: 700;
}


/* --- SERVICES --- */
.services {
    padding: 100px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 60px;
}

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

.service-card {
    background: #f9f7f4;
    border-radius: 12px;
    padding: 40px 32px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.service-card.featured {
    background: #1e1e3a;
    color: #d0d0e0;
}

.service-card.featured h3,
.service-card.featured .service-headline {
    color: #ffffff;
}

.service-card.featured .service-icon {
    color: #c4a17e;
}

.service-card.featured .service-list li::before {
    color: #c4a17e;
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 32px;
    background: #c4a17e;
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-icon {
    color: #1e1e3a;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.service-headline {
    color: #c4a17e;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 16px;
}

.service-card > p {
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    margin-bottom: 28px;
    flex-grow: 1;
}

.service-list li {
    padding: 4px 0 4px 20px;
    position: relative;
    font-size: 0.93rem;
}

.service-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #c4a17e;
    font-weight: 700;
}

.services-cta {
    text-align: center;
    margin-top: 48px;
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.05rem;
}


/* --- BOOKKEEPING CTA --- */
.bookkeeping-cta {
    background: linear-gradient(135deg, #1e1e3a 0%, #2a2a50 100%);
    padding: 80px 0;
    text-align: center;
}

.bookkeeping-content h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.bookkeeping-content p {
    color: #b8b8d0;
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto 36px;
}


/* --- WHY JEM --- */
.why-jem {
    padding: 100px 0;
    background: #f9f7f4;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
}

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

.why-icon {
    width: 56px;
    height: 56px;
    background: #1e1e3a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4a17e;
    margin: 0 auto 20px;
}

.why-item h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.why-item p {
    color: #555;
    font-size: 0.93rem;
}


/* --- ABOUT --- */
.about {
    padding: 100px 0;
    background: #ffffff;
}

.about-content {
    max-width: 720px;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    max-width: 600px;
}

.about-text p {
    margin-bottom: 20px;
    color: #444;
    font-size: 1.05rem;
}

.about-text .btn {
    margin-top: 12px;
}


/* --- REVIEWS --- */
.reviews {
    padding: 100px 0;
    background: #f9f7f4;
}

.reviews-header {
    text-align: center;
    margin-bottom: 48px;
}

.reviews-header h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.stars {
    color: #c4a17e;
    font-size: 2rem;
    letter-spacing: 4px;
    margin-bottom: 8px;
}

.reviews-summary {
    color: #555;
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.reviews-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.reviews-footer {
    text-align: center;
    margin-top: 40px;
}

.review-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease;
}

.review-card:hover {
    transform: translateY(-2px);
}

.review-stars {
    color: #f5b731;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.review-text {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    background: #1e1e3a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.review-name {
    display: block;
    font-weight: 600;
    color: #1e1e3a;
    font-size: 0.9rem;
}

.review-source {
    display: block;
    color: #999;
    font-size: 0.8rem;
}


/* --- CONTACT --- */
.contact {
    padding: 100px 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-info > p {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.contact-details {
    margin-bottom: 32px;
}

.contact-detail {
    margin-bottom: 16px;
}

.contact-detail strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    margin-bottom: 4px;
}

.contact-detail a,
.contact-detail span {
    color: #2d2d3d;
    font-size: 1rem;
}

.contact-form-wrap {
    background: #f9f7f4;
    border-radius: 12px;
    padding: 40px;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e1e3a;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #2d2d3d;
    background: #ffffff;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c4a17e;
    box-shadow: 0 0 0 3px rgba(196, 161, 126, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    text-align: center;
    color: #999;
    font-size: 0.85rem;
    margin-top: 12px;
}


/* --- MODAL --- */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-title {
    font-size: 1.6rem;
    color: #1e1e3a;
    margin-bottom: 12px;
}

.modal-text {
    color: #555;
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

.modal-btn {
    min-width: 120px;
}


/* --- FOOTER --- */
.footer {
    background: #13132b;
    padding: 60px 0 0;
    color: #8888a8;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    height: 200px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #8888a8;
    font-size: 0.9rem;
}

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

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.footer-contact a {
    color: #8888a8;
}

.footer-contact a:hover {
    color: #c4a17e;
}

.footer-bottom {
    border-top: 1px solid #2a2a45;
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #6666888;
    text-align: center;
}


/* --- NAV DROPDOWN --- */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 12px 0;
    min-width: 220px;
    list-style: none;
    z-index: 1001;
    padding-top: 20px;
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 20px;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    color: #1e1e3a !important;
    font-size: 0.9rem !important;
    font-weight: 500;
    transition: background 0.15s ease;
}

.dropdown-menu a:hover {
    background: #f9f7f4;
    color: #c4a17e !important;
}


/* --- JUMP NAV --- */
.jump-nav {
    margin-top: 28px;
}

.jump-select {
    padding: 12px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #1e1e3a;
    background: #ffffff;
    border: 2px solid #c4a17e;
    border-radius: 6px;
    cursor: pointer;
    min-width: 260px;
    appearance: auto;
}

.jump-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(196, 161, 126, 0.3);
}


/* --- RESOURCE CENTER PAGE --- */
.resources-section {
    padding: 80px 0;
    background: #ffffff;
}

.resources-section.alt-bg {
    background: #f9f7f4;
}

.resource-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}

.resource-card {
    background: #f9f7f4;
    border-radius: 12px;
    padding: 36px;
}

.resources-section.alt-bg .resource-card {
    background: #ffffff;
}

.resource-card h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #1e1e3a;
}

.resource-list {
    list-style: none;
    padding: 0;
}

.resource-list li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 0.93rem;
    color: #444;
}

.resource-list li::before {
    content: "\25A0";
    position: absolute;
    left: 0;
    color: #c4a17e;
    font-size: 0.6rem;
    top: 10px;
}

/* Deadlines Table */
.deadlines-table {
    margin-top: 40px;
    overflow-x: auto;
}

.deadlines-table table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.deadlines-table thead {
    background: #1e1e3a;
    color: #ffffff;
}

.deadlines-table th {
    padding: 16px 24px;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.deadlines-table td {
    padding: 16px 24px;
    font-size: 0.93rem;
    color: #444;
    border-bottom: 1px solid #f0ede8;
}

.deadlines-table tr:last-child td {
    border-bottom: none;
}

.deadlines-table tbody tr:hover {
    background: #faf8f5;
}

.table-note {
    margin-top: 20px;
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
}

/* FAQ Accordion */
.faq-container {
    max-width: 780px;
    margin: 0 auto;
}

.faq-category {
    font-size: 1.2rem;
    color: #c4a17e;
    margin: 40px 0 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.faq-category:first-child {
    margin-top: 0;
}

.faq-item {
    border-bottom: 1px solid #e8e4de;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 40px 20px 0;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1e1e3a;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #c4a17e;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: #c4a17e;
    transition: transform 0.2s ease;
}

.faq-item.open .faq-question::after {
    content: "\2212";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Onboarding Steps */
.onboarding-steps {
    max-width: 700px;
    margin: 40px auto 0;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #1e1e3a;
    color: #c4a17e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.step-content p {
    color: #555;
    font-size: 0.95rem;
}

/* Useful Links */
.links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.link-group h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #1e1e3a;
}

.link-group ul {
    list-style: none;
    padding: 0;
}

.link-group li {
    margin-bottom: 10px;
}

.link-group a {
    color: #555;
    font-size: 0.93rem;
    transition: color 0.2s ease;
}

.link-group a:hover {
    color: #c4a17e;
}


/* --- BOOKKEEPING PAGE --- */
.page-hero {
    background: linear-gradient(135deg, #13132b 0%, #1e1e3a 50%, #2a2a50 100%);
    padding: 220px 0 60px;
    text-align: center;
}

.page-hero h1 {
    color: #ffffff;
    font-size: 2.6rem;
    max-width: 700px;
    margin: 0 auto 24px;
}

.bk-services {
    padding: 100px 0;
    background: #ffffff;
}

.bk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.bk-item {
    background: #f9f7f4;
    border-radius: 12px;
    padding: 36px;
}

.bk-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1e1e3a;
}

.bk-item p {
    color: #555;
    font-size: 0.95rem;
}

.bk-why {
    padding: 80px 0;
    background: #f9f7f4;
}

.bk-why-content {
    max-width: 700px;
    margin: 40px auto 0;
}

.bk-why-content p {
    color: #444;
    font-size: 1.05rem;
    margin-bottom: 20px;
    text-align: center;
}


/* --- SCROLL ANIMATIONS --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* --- STICKY MOBILE CTA --- */
.sticky-cta {
    display: none;
}


/* --- RESPONSIVE --- */

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

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

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

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

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

    .page-hero h1 {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .reviews-cards {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

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

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        padding: 200px 0 80px;
    }

    .logo-img {
        height: 100px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .trust-items {
        gap: 16px;
    }

    .trust-item {
        font-size: 0.82rem;
    }

    .bookkeeping-content h2 {
        font-size: 1.75rem;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }

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

    .sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        padding: 12px 16px;
        background: #ffffff;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    }

    .sticky-cta .btn {
        display: block;
        text-align: center;
    }

    .footer {
        padding-bottom: 70px;
    }

    .contact {
        padding-bottom: 120px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.7rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 12px 28px;
    }

    .service-card {
        padding: 32px 24px;
    }
}
