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

:root {
    --purple: #6B2D8B;
    --purple-dark: #4A1D62;
    --purple-light: #8B4DAB;
    --teal: #5BB5B5;
    --teal-dark: #3D9494;
    --white: #ffffff;
    --gray-50: #f9f7fc;
    --gray-100: #f5f3f7;
    --gray-200: #e8e4ed;
    --gray-300: #d1cbd9;
    --gray-600: #6b6575;
    --gray-700: #4a4553;
    --gray-800: #2d2935;
    --gray-900: #1a1720;
    --font-heading: 'Georgia', 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --max-width: 1200px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

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

a {
    color: var(--purple);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--purple-dark);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--gray-900);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--purple);
    color: var(--white);
    padding: 0.5rem 1rem;
    z-index: 1000;
    font-size: 0.875rem;
}

.skip-link:focus {
    top: 0;
    color: var(--white);
}

/* ===== HEADER / NAV ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 100;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    text-decoration: none;
    white-space: nowrap;
}

.logo .logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--teal), var(--purple));
    border-radius: 50%;
    flex-shrink: 0;
}

.logo span {
    color: var(--purple);
}

.logo small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--gray-600);
    letter-spacing: 0.02em;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 110;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    padding: 5rem 2rem 2rem;
    transition: right var(--transition);
    box-shadow: -4px 0 16px rgba(0,0,0,0.1);
    z-index: 105;
}

.main-nav.open {
    right: 0;
}

.main-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.main-nav a {
    display: block;
    padding: 0.875rem 0;
    color: var(--gray-800);
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-200);
    transition: color var(--transition), padding-left var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--purple);
    padding-left: 0.5rem;
}

.main-nav .nav-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--purple);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    border: none;
    transition: background var(--transition);
}

.main-nav .nav-cta:hover {
    background: var(--purple-dark);
    color: var(--white);
    padding-left: 1.5rem;
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 102;
}

.nav-overlay.active {
    display: block;
}

/* Services dropdown on mobile */
.nav-dropdown {
    position: relative;
}

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

.nav-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--gray-600);
    border-bottom: 2px solid var(--gray-600);
    transform: rotate(45deg);
    transition: transform var(--transition);
    margin-left: 0.5rem;
    flex-shrink: 0;
}

.nav-dropdown.open > a::after {
    transform: rotate(-135deg);
}

.dropdown-menu {
    display: none;
    padding-left: 1rem;
}

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

.dropdown-menu a {
    font-size: 0.9rem;
    color: var(--gray-600);
    border-bottom-color: var(--gray-100);
    padding: 0.625rem 0;
}

.dropdown-menu a:hover {
    color: var(--purple);
}

/* ===== HERO ===== */
.hero {
    padding: 7rem 0 3rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, #f0eaf5 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-content {
    order: 2;
}

.hero-image {
    order: 1;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(107, 45, 139, 0.15);
}

.hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--purple);
    margin-bottom: 0.75rem;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.hero h1 span {
    display: block;
    color: var(--purple);
}

.hero .hero-name {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    border: none;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--purple-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(107, 45, 139, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--purple);
    border: 2px solid var(--purple);
}

.btn-outline:hover {
    background: var(--purple);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--purple);
}

.btn-white:hover {
    background: var(--gray-100);
    color: var(--purple-dark);
    transform: translateY(-2px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== INTRO / ABOUT SNIPPET ===== */
.intro {
    padding: 4rem 0;
    text-align: center;
}

.intro p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ===== FEATURES GRID ===== */
.features {
    padding: 4rem 0;
    background: var(--teal);
}

.features .section-title {
    color: var(--white);
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.feature-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    padding: 1.75rem;
    color: var(--white);
    transition: transform var(--transition), background var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.22);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.92;
}

/* ===== QUOTES SECTION ===== */
.quotes {
    padding: 3.5rem 0;
    background: var(--gray-50);
    overflow: hidden;
}

.quotes-track {
    display: flex;
    animation: scroll-quotes 30s linear infinite;
    gap: 2rem;
}

.quote-item {
    flex-shrink: 0;
    min-width: 280px;
    max-width: 360px;
    background: var(--white);
    border-left: 4px solid var(--purple);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.quote-item blockquote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1rem;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.quote-item cite {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.85rem;
    color: var(--purple);
    font-weight: 600;
}

@keyframes scroll-quotes {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== ABOUT SECTION (Home) ===== */
.about-home {
    padding: 4rem 0;
}

.about-home .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 340px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.about-text h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.about-text .subtitle {
    color: var(--purple);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-text .btn {
    margin-top: 0.5rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 4rem 0;
    background: var(--gray-50);
}

.services .section-title {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
    color: var(--gray-900);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(107, 45, 139, 0.12);
    color: inherit;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-body {
    padding: 1.5rem;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
    font-family: var(--font-body);
    font-weight: 700;
}

.service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--purple);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.service-card .service-link::after {
    content: '\2192';
    transition: transform var(--transition);
}

.service-card:hover .service-link::after {
    transform: translateX(4px);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 4rem 0;
    background: var(--purple);
    color: var(--white);
}

.testimonials .section-title {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
    color: var(--white);
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex-shrink: 0;
    width: 100%;
    padding: 0 0.5rem;
}

.testimonial-card-inner {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(8px);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    opacity: 0.95;
}

.testimonial-card .author {
    font-weight: 700;
    font-size: 0.95rem;
    opacity: 1;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.testimonial-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.testimonial-dots button.active {
    background: var(--white);
    border-color: var(--white);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 4rem 0;
}

.contact .section-title {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item .icon {
    width: 40px;
    height: 40px;
    background: var(--gray-50);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--gray-700);
    font-size: 0.95rem;
    word-break: break-all;
}

.contact-item a:hover {
    color: var(--purple);
}

.contact-item p {
    color: var(--gray-700);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(107, 45, 139, 0.1);
}

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

.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.825rem;
    color: var(--gray-600);
}

.form-privacy input[type="checkbox"] {
    margin-top: 0.25rem;
    accent-color: var(--purple);
}

.form-required {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 2.5rem 0 1.5rem;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}

.footer-links a {
    color: var(--gray-300);
    font-size: 0.825rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: 0.9rem;
    transition: all var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--purple);
    color: var(--white);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.footer-eu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 1rem;
}

.footer-eu img {
    height: 40px;
    width: auto;
    opacity: 0.8;
}

.footer-eu-text {
    font-size: 0.7rem;
    color: var(--gray-600);
    text-align: center;
    max-width: 500px;
}

/* ===== PAGE HERO (interior pages) ===== */
.page-hero {
    padding: 7rem 0 3rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, #f0eaf5 100%);
}

.page-hero .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.page-hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.page-hero-content .subtitle {
    font-size: 1rem;
    color: var(--purple);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.page-hero-content .subtitle-list {
    list-style: disc;
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.page-hero-content .subtitle-list li {
    color: var(--purple);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.page-hero-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.page-hero-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* ===== BIOGRAPHY PAGE ===== */
.bio-content {
    padding: 3rem 0 4rem;
}

.bio-content p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    max-width: 720px;
}

/* ===== SERVICE PAGE ===== */
.service-detail {
    padding: 3rem 0 4rem;
}

.service-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border-radius: 8px;
    color: var(--gray-800);
    font-weight: 500;
}

.service-list li::before {
    content: '\2713';
    color: var(--purple);
    font-weight: 700;
    flex-shrink: 0;
}

.service-cta {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    border-radius: 12px;
    margin-top: 2rem;
}

.service-cta h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    padding: 7rem 0 4rem;
}

.legal-page .container {
    max-width: 800px;
}

.legal-page h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--gray-900);
}

.legal-page h2 {
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
    color: var(--gray-800);
}

.legal-page p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-page ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-page li {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
    padding: 0.875rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
}

.legal-table th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--gray-800);
    width: 30%;
}

/* ===== BLOG PAGE ===== */
.blog-empty {
    padding: 7rem 0 4rem;
    text-align: center;
}

.blog-empty h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.blog-empty p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

/* ===== RESPONSIVE ===== */

/* Tablet - 768px */
@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
    }

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

    .page-hero .container {
        flex-direction: row;
        align-items: center;
    }

    .page-hero-content {
        flex: 1;
    }

    .page-hero-image {
        flex: 0 0 45%;
    }

    .about-home .container {
        flex-direction: row;
    }

    .about-image {
        flex: 0 0 40%;
    }

    .about-text {
        flex: 1;
    }

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

    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .testimonial-card {
        width: 50%;
    }
}

/* Desktop - 1024px */
@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }

    .main-nav {
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        box-shadow: none;
        background: transparent;
    }

    .main-nav ul {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .main-nav a {
        padding: 0.5rem 0.875rem;
        border-bottom: none;
        font-size: 0.875rem;
        position: relative;
    }

    .main-nav a:hover,
    .main-nav a.active {
        padding-left: 0.875rem;
    }

    .main-nav a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0.875rem;
        right: 0.875rem;
        height: 2px;
        background: var(--purple);
        transform: scaleX(0);
        transition: transform var(--transition);
    }

    .main-nav a:hover::after,
    .main-nav a.active::after {
        transform: scaleX(1);
    }

    .main-nav .nav-cta {
        margin-top: 0;
        margin-left: 0.5rem;
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
    }

    .main-nav .nav-cta::after {
        display: none;
    }

    .nav-overlay {
        display: none !important;
    }

    /* Desktop dropdown */
    .nav-dropdown > a::after {
        width: 6px;
        height: 6px;
        margin-left: 0.25rem;
    }

    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        min-width: 260px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        border-radius: 8px;
        padding: 0.5rem 0;
        z-index: 120;
    }

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

    .dropdown-menu a {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
        color: var(--gray-700);
        display: block;
    }

    .dropdown-menu a::after {
        display: none;
    }

    .dropdown-menu a:hover {
        background: var(--gray-50);
        color: var(--purple);
        padding-left: 1.25rem;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

    .hero .container {
        flex-direction: row;
        align-items: center;
    }

    .hero-content {
        flex: 1;
        order: 1;
    }

    .hero-image {
        order: 2;
        flex: 0 0 45%;
    }

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

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonial-card {
        width: 33.333%;
    }
}

/* Large desktop */
@media (min-width: 1280px) {
    .hero h1 {
        font-size: 3.25rem;
    }

    .container {
        padding: 0 2rem;
    }
}
