/* =========================
   CSS RESET & NORMALIZE
   ========================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    height: 100%;
    scroll-behavior: smooth;
}
body {
    background: #fff;
    color: #17191b;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    min-height: 100vh;
    /* For cookie banner offset */
    position: relative;
    -webkit-font-smoothing: antialiased;
}
article, aside, footer, header, nav, section {
    display: block;
}
ul, ol {
    list-style: none;
}
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
a:focus {
    outline: 2px solid #14395B;
    outline-offset: 2px;
}
button, input, select, textarea {
    font: inherit;
    background: none;
    border: none;
    outline: none;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
    height: auto;
}
input::placeholder {
    color: #a0a5aa;
    opacity: 1;
}

/* ========================
   VARIABLES
   ======================== */
:root {
    --color-primary:#14395B;
    --color-secondary:#F0F4F8;
    --color-accent:#EDB62B;
    --color-black:#17191b;
    --color-white:#fff;
    --color-gray:#e5e8eb;
    --color-midgray:#adb2b5;
    --shadow-elevate: 0 4px 20px rgba(20, 57, 91, 0.08);
    --radius-8:8px;
    --radius-16:16px;
}

/* ========================
   TYPOGRAPHY
   ======================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400|Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    color: #17191b;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
h1 {
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 32px;
}
h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 24px;
}
h3 {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 16px;
    font-weight: 600;
}
h4, h5, h6 {
    font-size: 1.1rem;
}
p, ul, ol, li {
    color: #222325;
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 1rem;
}
strong, b {
    font-weight: 700;
}

/* Style blockquotes for sophistication */
blockquote {
    padding: 20px 32px;
    margin: 32px 0;
    font-style: italic;
    background: #F0F4F8;
    border-left: 4px solid #17191b;
    color: #17191b;
    border-radius: var(--radius-8);
}

/* ==============================
    GENERAL CONTAINERS & SECTIONS
============================== */
.container {
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.content-wrapper {
    width: 100%;
    margin-bottom: 32px;
}
.section, section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: transparent;
}

/* ========================
   HEADER & NAVIGATION
   ======================== */
header {
    background: var(--color-white);
    box-shadow: 0 2px 8px rgba(23,25,27,0.06);
    border-bottom: 1px solid #ececec;
    padding: 0;
    z-index: 30;
    font-family: 'Montserrat', Arial, sans-serif;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    gap: 32px;
}
header img {
    height: 44px;
    width: auto;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.main-nav a {
    font-weight: 500;
    color: var(--color-black);
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.15s;
}
.main-nav a:not(.cta-primary):hover,
.main-nav a:not(.cta-primary):focus {
    color: var(--color-primary);
    text-shadow: 0 1px 0 #efefef;
}
.main-nav .cta-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-8);
    padding: 10px 24px;
    font-weight: 700;
    margin-left: 16px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 14px rgba(20,57,91,0.08);
}
.main-nav .cta-primary:hover,
.main-nav .cta-primary:focus {
    background: #282828;
    color: var(--color-accent);
}
.mobile-menu-toggle {
    background: var(--color-black);
    color: var(--color-white);
    font-size: 2rem;
    border: none;
    border-radius: var(--radius-8);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    margin-left: auto;
}
.mobile-menu-toggle:hover {
    background: var(--color-primary);
    color: var(--color-accent);
}
@media (min-width: 1025px) {
    .mobile-menu-toggle {
        display: none;
    }
}
/* Main nav hidden on mobile */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
}

/* =========================
   MOBILE SLIDE MENU + NAV
   ========================= */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(17,19,21,0.96);
    z-index: 1000;
    transform: translateX(-100vw);
    transition: transform 0.38s cubic-bezier(.77,0,.18,1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    will-change: transform;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    background: none;
    color: var(--color-accent);
    font-size: 2.2rem;
    position: absolute;
    top: 24px;
    right: 28px;
    border: none;
    cursor: pointer;
    z-index: 20;
    transition: color 0.15s;
}
.mobile-menu-close:hover {
    color: var(--color-white);
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 84px;
    padding: 32px 32px 24px;
    width: 100%;
}
.mobile-nav a {
    color: var(--color-white);
    font-size: 1.25rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.6px;
    padding: 10px 4px;
    border-radius: var(--radius-8);
    transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
    background: var(--color-primary);
    color: var(--color-accent);
}

@media (min-width: 1025px) {
    .mobile-menu {
        display: none!important;
    }
}

/* =====================
    HERO / CTA / SECTIONS
   ===================== */
.hero, .cta, .pricing-hero, .blog-hero, .contact-hero, .thank-you {
    background: var(--color-secondary);
    border-radius: var(--radius-16);
    box-shadow: var(--shadow-elevate);
    margin-bottom: 60px;
    padding: 60px 20px 50px 20px;
    display: flex;
    align-items: center;
    min-height: 310px;
}
.hero .container, .cta .container, .pricing-hero .container,
.blog-hero .container, .contact-hero .container, .thank-you .container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero h1, .cta h2, .thank-you h1 {
    color: var(--color-primary);
    font-weight: 800;
    margin-bottom: 24px;
    font-size: 2.5rem;
    line-height: 1.1;
}
.hero p, .cta p, .thank-you p {
    color: #32333a;
    font-size: 1.15rem;
    margin-bottom: 28px;
    max-width: 700px;
}

/* =====================
   FLEX PATTERNS
   ===================== */
.features .content-wrapper, .feature-grid,
.services-brief .content-wrapper, .services-details .content-wrapper,
.service-grid, .blog-list .content-wrapper, .footer-main, .footer-nav, .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
}
.feature {
    background: var(--color-white);
    border-radius: var(--radius-16);
    box-shadow: var(--shadow-elevate);
    padding: 32px 28px;
    flex: 1 1 260px;
    min-width: 240px;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    transition: box-shadow 0.18s, transform 0.18s;
}
.feature:hover, .service-item:hover {
    box-shadow: 0 8px 36px rgba(20,57,91,0.14);
    transform: translateY(-6px) scale(1.024);
}
.feature img, .service-item img, .values img, .why-us img {
    height: 40px;
    width: 40px;
    margin-bottom: 12px;
}

/* Cards & Card Grids */
.card-container, .card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    background: var(--color-white);
    border-radius: var(--radius-16);
    box-shadow: var(--shadow-elevate);
    padding: 28px 24px;
    position: relative;
    transition: box-shadow 0.16s, transform 0.16s;
}
.card:hover {
    box-shadow: 0 8px 30px rgba(23,25,27,0.14);
    transform: translateY(-3px);
}

.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .text-image-section {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials {
    background: var(--color-white);
    border-radius: var(--radius-16);
    box-shadow: var(--shadow-elevate);
    margin-bottom: 60px;
    padding: 40px 20px;
}
.testimonials .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: flex-start;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 32px 20px 32px;
    background: var(--color-secondary);
    border-radius: var(--radius-16);
    box-shadow: 0 2px 12px rgba(20,57,91,0.09);
    flex: 1 1 320px;
    min-width: 270px;
    max-width: 420px;
    margin-bottom: 20px;
    color: #17191b;
}
.testimonial-card p {
    font-size: 1.05rem;
    color: #17191b;
    margin-bottom: 6px;
}
.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.97rem;
    color: #313335;
}
.testimonial-meta strong {
    font-weight: 700;
    color: #14395B;
}
.testimonial-meta span:last-child {
    color: #EDB62B;
    font-weight: 700;
    letter-spacing: 2px;
    margin-left: 4px;
}

/* FAQ & BLOG LISTS */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}
.faq-item {
    background: #f7f8fa;
    border-radius: var(--radius-8);
    padding: 22px 24px;
    box-shadow: 0 2px 6px rgba(20,57,91,0.07);
    color: #212224;
    transition: box-shadow 0.14s, background 0.14s;
}
.faq-item:hover {
    box-shadow: 0 4px 16px rgba(20,57,91,0.11);
    background: #edeef0;
}
.contact-cta {
    padding: 22px 0 0 0;
    font-size: 1.06rem;
}
.contact-cta a {
    color: var(--color-primary);
    border-bottom: 1.5px dotted var(--color-primary);
    padding-bottom: 2px;
    transition: color 0.15s;
}
.contact-cta a:hover {
    color: var(--color-accent);
    border-bottom: 1.5px solid var(--color-accent);
}

/* Blog List + Filters */
.blog-list .content-wrapper {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 40px;
}
.blog-previews {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 20px;
}
.blog-previews article {
    flex: 1 1 330px;
    background: var(--color-white);
    border-radius: var(--radius-8);
    box-shadow: 0 2px 8px rgba(23,25,27,0.08);
    padding: 26px 20px 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 260px;
    margin-bottom: 20px;
    transition: box-shadow 0.14s, transform 0.13s;
}
.blog-previews article:hover {
    box-shadow: 0 6px 24px rgba(20,57,91,0.13);
    transform: translateY(-4px) scale(1.015);
}
.blog-previews h3 {
    color: var(--color-primary);
    font-size: 1.18rem;
    margin-bottom: 12px;
}
.blog-previews p {
    font-size: 1.02rem;
    margin-bottom: 14px;
}
.blog-previews a {
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 0.02em;
    border-bottom: 1.5px dotted var(--color-primary);
    transition: color 0.15s, border 0.15s;
}
.blog-previews a:hover {
    color: var(--color-accent);
    border-bottom: 1.5px solid var(--color-accent);
}

.search-bar {
    width: 100%;
    max-width: 400px;
    padding: 12px 16px;
    border-radius: var(--radius-8);
    border: 1px solid #d0d4da;
    background: var(--color-secondary);
    font-size: 1rem;
    margin-bottom: 16px;
    color: #2b2e34;
}
.search-bar:focus {
    border-color: var(--color-primary);
}
.filter-options {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
}
.filter-options button {
    background: var(--color-white);
    border: 1px solid #cad0da;
    color: var(--color-black);
    border-radius: var(--radius-8);
    padding: 8px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.14s, border 0.14s;
}
.filter-options button:hover, .filter-options button.selected {
    background: var(--color-primary);
    color: var(--color-white);
    border: 1.5px solid var(--color-primary);
}

/* =========================
    SERVICES/CARDS IN GRID
========================= */
.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
    margin-left: -12px;
    margin-right: -12px;
}
.service-item {
    background: #fff;
    border-radius: var(--radius-16);
    box-shadow: var(--shadow-elevate);
    padding: 32px 24px 24px;
    flex: 1 1 260px;
    min-width: 240px;
    min-height: 210px;
    margin: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    transition: box-shadow 0.18s, transform 0.18s;
}

/* SECTION: VALUES/WHY US LISTS */
.values .content-wrapper ul, .why-us .content-wrapper ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.values li, .why-us li {
    display: flex;
    align-items: center;
    gap: 13px;
    background: #f7f8fa;
    border-radius: var(--radius-8);
    padding: 17px 15px;
    font-size: 1.06rem;
    color: #18191b;
    box-shadow: 0 1px 4px rgba(20,57,91,0.06);
}

/* =====================
   PRICING TABLE
   ===================== */
.pricing-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--color-white);
    border-radius: var(--radius-16);
    box-shadow: var(--shadow-elevate);
    margin-bottom: 20px;
    overflow-x: auto;
    font-size: 1.01rem;
}
.pricing-table th, .pricing-table td {
    text-align: left;
    padding: 16px 18px;
    border-bottom: 1px solid #ecebeb;
}
.pricing-table th {
    background: var(--color-secondary);
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    color: var(--color-black);
    font-size: 1.05rem;
}
.pricing-table tr:last-child td {
    border-bottom: none;
}

/* =========================
    POLICY/LEGAL SECTIONS
   ========================= */
.policy-section {
    margin-bottom: 32px;
}
.policy-section h2 {
    font-size: 1.18rem;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

/* =========================
    CTA BUTTONS
   ========================= */
.cta-primary,
button.cta-primary {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 14px 40px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    font-size: 1.12rem;
    border-radius: var(--radius-8);
    text-align: center;
    box-shadow: var(--shadow-elevate);
    cursor: pointer;
    border: none;
    transition: background 0.19s, color 0.18s, box-shadow 0.16s, transform 0.15s;
    margin-top: 8px;
}
.cta-primary:hover,
.cta-primary:focus {
    background: var(--color-accent);
    color: #222325;
    box-shadow: 0 4px 18px rgba(237,182,43,0.11);
    transform: translateY(-2px) scale(1.018);
}
.cta-secondary {
    display: inline-block;
    background: var(--color-white);
    color: var(--color-primary);
    padding: 12px 26px;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-8);
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 8px;
    transition: background 0.18s, color 0.18s, border 0.18s;
}
.cta-secondary:hover, .cta-secondary:focus {
    background: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-accent);
}
button, input[type=button], input[type=submit] {
    cursor: pointer;
}

/* =========================
   FOOTER & CONTACT INFO
   ========================= */
footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 0 0 0 0;
    position: relative;
    margin-top: 60px;
}
footer .container {
    padding-top: 36px;
    padding-bottom: 16px;
}
.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 32px;
}
.footer-main > a img {
    height: 50px;
    margin-bottom: 12px;
}
.footer-nav {
    display: flex;
    gap: 32px;
}
.footer-nav nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-nav a {
    color: #E8EAEB;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1rem;
    padding: 2px 0;
    transition: color 0.18s;
}
.footer-nav a:hover,
.footer-nav a:focus {
    color: var(--color-accent);
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 11px;
    color: #e5e8eb;
    font-size: 0.98rem;
}
.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}
.footer-contact img {
    width: 24px;
    height: 24px;
    filter: grayscale(1) contrast(1.3);
    opacity: 0.75;
}
.footer-bottom {
    text-align: right;
    font-size: 0.96rem;
    color: #b1b5ba;
    border-top: 1px solid #23272d;
    padding: 14px 0 4px 0;
}
footer a {
    color: inherit;
    text-decoration: none;
}

/* =========================
     CONTACT DATA SECTIONS
   ========================= */
.contact-data {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contact-data .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.07rem;
    background: #f7f8fa;
    border-radius: var(--radius-8);
    padding: 12px 15px;
}
.office-map {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    font-size: 0.98rem;
}
.office-map img {
    width: 24px;
    opacity: 0.68;
}

/* =========================
   COOKIE CONSENT BANNER
   ========================= */
.cookie-banner {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    background: #18191b;
    color: #fff;
    z-index: 2000;
    box-shadow: 0 -2px 24px rgba(20,57,91,0.17);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 16px 24px 16px;
    gap: 16px;
    font-size: 1.01rem;
    animation: cookie-slidein 0.36s cubic-bezier(.42,0,.12,1) 1;
}
.cookie-banner p {
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
}
.cookie-btns {
    display: flex;
    gap: 18px;
    width: 100%;
    max-width: 420px;
    justify-content: center;
}
.cookie-banner button {
    padding: 10px 18px;
    border-radius: var(--radius-8);
    font-weight: 700;
    font-family: 'Montserrat', Arial, sans-serif;
    border: none;
    transition: background 0.16s, color 0.16s, box-shadow 0.15s;
}
.cookie-banner .accept {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(20,57,91,0.09);
}
.cookie-banner .accept:hover {
    background: var(--color-accent);
    color: #231f20;
}
.cookie-banner .reject {
    background: none;
    color: #f55;
    border: 2px solid #f55;
    box-shadow: none;
}
.cookie-banner .reject:hover {
    background: #f55;
    color: #fff;
}
.cookie-banner .settings {
    background: none;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}
.cookie-banner .settings:hover {
    background: var(--color-accent);
    color: #212224;
}
@keyframes cookie-slidein {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* COOKIE MODAL */
.cookie-modal {
    position: fixed;
    left: 0; right: 0;
    top: 0; bottom: 0;
    background: rgba(23,25,27,0.88);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: cookie-modal-fadein 0.22s;
}
@keyframes cookie-modal-fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}
.cookie-modal-content {
    background: #fff;
    color: #121212;
    border-radius: var(--radius-16);
    box-shadow: 0 8px 42px rgba(20,57,91,0.16);
    max-width: 420px;
    width: 96%;
    padding: 35px 32px 30px 32px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
    animation: modal-slidein 0.24s cubic-bezier(.42,0,.12,1);
}
@keyframes modal-slidein {
    from { transform: translateY(60px); opacity: 0.6; }
    to { transform: translateY(0); opacity: 1; }
}
.cookie-modal-content h3 {
    font-size: 1.22rem;
    color: var(--color-primary);
    margin-bottom: 14px;
}
.cookie-modal-content .close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: none;
    font-size: 2rem;
    color: var(--color-primary);
    border: none;
    cursor: pointer;
}
.cookie-category {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f6f7fa;
    border-radius: var(--radius-8);
    padding: 12px 14px;
    margin-bottom: 11px;
    box-shadow: 0 1px 4px rgba(20,57,91,0.05);
}
.cookie-category input[type=checkbox] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-primary);
}
.cookie-category label {
    font-weight: 600;
    color: #232325;
    user-select: none;
}
.cookie-category .always {
    color: #8c9289;
    font-weight: 400;
    font-size: 0.92rem;
    margin-left: 7px;
}
.cookie-modal-buttons {
    margin-top: 16px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}
.cookie-modal-buttons button {
    padding: 10px 18px;
    border-radius: var(--radius-8);
    font-weight: 700;
    font-family: 'Montserrat', Arial, sans-serif;
    border: none;
    transition: background 0.16s, color 0.16s;
}
.cookie-modal-buttons .save {
    background: var(--color-primary);
    color: #fff;
}
.cookie-modal-buttons .save:hover {
    background: var(--color-accent);
    color: #17191b;
}
.cookie-modal-buttons .cancel {
    background: none;
    border: 2px solid #c2c2c5;
    color: #48494d;
}
.cookie-modal-buttons .cancel:hover {
    background: #ececec;
}

/* =========================
   RESPONSIVE DESIGN
   ========================= */
@media (max-width: 1280px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}
@media (max-width: 1024px) {
    .footer-main, .footer-nav {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    .footer-main {
        gap: 32px;
    }
}
@media (max-width: 900px) {
    .feature-grid, .service-grid, .blog-previews, .content-grid, .testimonials .content-wrapper {
        flex-direction: column;
        gap: 26px;
    }
    .feature, .service-item, .testimonial-card, .blog-previews article {
        min-width: 200px;
        max-width: 98vw;
        width: 100%;
    }
}
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.35rem; }
    .hero, .cta, .pricing-hero, .blog-hero, .contact-hero, .thank-you, .testimonials {
        min-height: unset;
        padding: 34px 8px 24px 8px;
        border-radius: var(--radius-8);
    }
    .section, section {
        padding: 32px 10px;
        margin-bottom: 30px;
    }
    .container {
        padding-left: 8px;
        padding-right: 8px;
    }
    header .container {
        padding-left: 8px;
        padding-right: 8px;
        min-height: 58px;
    }
    .content-wrapper {
        margin-bottom: 18px;
    }
    .footer-main {
        flex-direction: column;
        gap: 24px;
    }
    .feature, .service-item {
        padding: 24px 12px;
    }
    .testimonial-card {
        padding: 16px 14px 12px 14px;
    }
    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }
    .cookie-modal-content {
        padding: 18px 7vw 14px 7vw;
    }
}
@media (max-width: 500px) {
    .card, .feature, .service-item, .testimonial-card, .blog-previews article {
        padding: 14vw 3vw;
    }
}

/* =====================
   UTILITY CLASSES
   ===================== */
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.mb-8 { margin-bottom: 8px!important; }
.mb-16 { margin-bottom: 16px!important; }
.mb-24 { margin-bottom: 24px!important; }
.mb-32 { margin-bottom: 32px!important; }
.text-center { text-align: center!important; }
.text-right { text-align: right!important; }
.text-accent { color: var(--color-accent)!important; }
.text-primary { color: var(--color-primary)!important; }
.text-secondary { color: var(--color-secondary)!important; }
.bg-accent { background: var(--color-accent)!important; }
.bg-secondary { background: var(--color-secondary)!important; }
.rounded { border-radius: var(--radius-8)!important; }

/* Hide elements visually but keep for screen readers */
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    border: 0;
}

/* =====================
  MICRO-INTERACTIONS
   ===================== */
a, button, .cta-primary, .cta-secondary {
    transition: all 0.15s cubic-bezier(.5,.3,0,1), box-shadow 0.2s;
}
.card, .card-container > *, .feature, .service-item, .testimonial-card, .blog-previews article, .footer-nav a, .filter-options button {
    will-change: transform;
}

/* ==== END ==== */
