:root {
    --primary: #1a3a5c;
    --secondary: #2d6a9f;
    --accent: #e8a838;
    --dark: #0f1f2e;
    --light: #f7f9fc;
    --gray: #6b7c8a;
    --white: #ffffff;
    --shadow: 0 12px 40px rgba(26, 58, 92, 0.12);
    --shadow-lg: 0 20px 60px rgba(26, 58, 92, 0.18);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

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

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

/* Navigation - Asymmetric floating */
.nav-wrapper {
    position: fixed;
    top: 30px;
    right: 40px;
    z-index: 1000;
}

.nav-float {
    background: var(--white);
    padding: 16px 28px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent);
    color: var(--dark);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
}

.nav-cta:hover {
    background: var(--primary);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

/* Hero - Asymmetric layout */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
    padding-left: 8%;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background: var(--light);
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
    border-left: 3px solid var(--accent);
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--accent);
}

.hero-text {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 520px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1.2;
    position: relative;
}

.hero-image-main {
    width: 100%;
    height: 580px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 0 0 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    mix-blend-mode: luminosity;
}

.hero-float-card {
    position: absolute;
    bottom: -40px;
    left: -60px;
    background: var(--white);
    padding: 28px 36px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
}

.hero-float-card h4 {
    font-size: 2.2rem;
    color: var(--accent);
    font-weight: 700;
}

.hero-float-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 4px;
}

.hero-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--accent);
    opacity: 0.08;
    border-radius: 50%;
    top: -100px;
    left: -150px;
    z-index: 1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

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

.btn-accent {
    background: var(--accent);
    color: var(--dark);
}

.btn-accent:hover {
    background: #d49a2e;
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--secondary);
    padding: 12px 0;
}

.btn-ghost:hover {
    color: var(--primary);
}

/* Section styling */
section {
    padding: 100px 0;
}

.section-offset {
    padding-left: 12%;
}

.section-offset-right {
    padding-right: 12%;
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-light {
    background: var(--light);
}

.section-accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary);
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
}

/* About section - Asymmetric split */
.about-grid {
    display: flex;
    gap: 80px;
    align-items: stretch;
}

.about-visual {
    flex: 1;
    position: relative;
}

.about-image {
    width: 100%;
    height: 500px;
    background: var(--light);
    border-radius: 20px 100px 20px 20px;
    overflow: hidden;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-accent-box {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    background: var(--accent);
    border-radius: 20px;
    z-index: -1;
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--secondary);
}

.about-feature h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--primary);
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

/* Services - Card offset grid */
.services-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.services-intro-text {
    max-width: 600px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card:nth-child(2) {
    transform: translateY(30px);
}

.service-card:nth-child(5) {
    transform: translateY(-30px);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card:nth-child(2):hover {
    transform: translateY(22px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(26, 58, 92, 0.08);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--secondary);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--light);
}

.service-price .amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.service-price .period {
    font-size: 0.9rem;
    color: var(--gray);
}

.service-card .btn {
    width: 100%;
    justify-content: center;
}

/* Process section - Staggered timeline */
.process-wrapper {
    display: flex;
    gap: 80px;
}

.process-content {
    flex: 1;
    max-width: 400px;
}

.process-timeline {
    flex: 2;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--secondary));
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
    position: relative;
}

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

.process-number {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 3px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
    z-index: 2;
}

.process-step-content {
    padding-top: 8px;
}

.process-step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.process-step-content p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Testimonials - Overlapping cards */
.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    position: relative;
}

.testimonial-card {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card:nth-child(2) {
    margin-top: 60px;
}

.testimonial-card:nth-child(3) {
    margin-top: 30px;
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: var(--dark);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.2rem;
}

.testimonial-info h5 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Stats section - Asymmetric boxes */
.stats-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.stats-content {
    flex: 1;
}

.stats-content .section-title {
    color: var(--white);
}

.stats-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.stats-grid {
    flex: 1.2;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-box {
    flex: 1 1 calc(50% - 10px);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 36px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-box:nth-child(2) {
    transform: translateY(30px);
}

.stat-box h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* CTA Banner - Diagonal */
.cta-banner {
    position: relative;
    padding: 80px 0;
    background: var(--light);
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    transform: skewY(-3deg);
    transform-origin: top left;
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-inner h3 {
    font-size: 2rem;
    color: var(--white);
    max-width: 600px;
}

.cta-inner .btn {
    flex-shrink: 0;
}

/* Contact form section */
.contact-grid {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--primary);
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--secondary);
}

.contact-item-content h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 4px;
}

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

.contact-form-wrapper {
    flex: 1.2;
    background: var(--white);
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--light);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(45, 106, 159, 0.1);
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 1.5;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 24px;
    color: var(--white);
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: var(--accent);
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--gray);
}

.cookie-text a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--primary);
    color: var(--white);
}

.cookie-accept:hover {
    background: var(--secondary);
}

.cookie-reject {
    background: var(--light);
    color: var(--gray);
}

.cookie-reject:hover {
    background: var(--gray);
    color: var(--white);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
}

.sticky-cta .btn {
    box-shadow: var(--shadow-lg);
    border-radius: 50px;
}

/* Page headers */
.page-header {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--accent);
    opacity: 0.1;
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.page-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: var(--white);
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    max-width: 600px;
}

.breadcrumb {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

/* Thanks page */
.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent) 0%, #f4c14e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--white);
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.thanks-content p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.thanks-service {
    background: var(--light);
    padding: 20px 32px;
    border-radius: 12px;
    margin-bottom: 32px;
    display: inline-block;
}

.thanks-service span {
    color: var(--gray);
    font-size: 0.9rem;
}

.thanks-service strong {
    display: block;
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 4px;
}

/* Legal pages */
.legal-content {
    padding: 80px 0;
}

.legal-content h2 {
    font-size: 1.6rem;
    color: var(--primary);
    margin: 40px 0 16px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--gray);
    margin-bottom: 16px;
    font-size: 1rem;
}

.legal-content ul {
    margin: 16px 0 24px 24px;
    color: var(--gray);
}

.legal-content li {
    margin-bottom: 8px;
}

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 100px 40px 40px;
    flex-direction: column;
}

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

.mobile-nav-close {
    position: absolute;
    top: 30px;
    right: 40px;
    width: 40px;
    height: 40px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    padding: 16px 0;
    border-bottom: 1px solid var(--light);
}

.mobile-nav a:hover {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-wrapper {
        right: 24px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-grid {
        flex-direction: column;
    }

    .hero-content {
        padding-left: 0;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
    }

    .hero-image-main {
        height: 400px;
        border-radius: 20px;
    }

    .hero-float-card {
        left: 20px;
        bottom: -20px;
    }

    .about-grid,
    .process-wrapper,
    .stats-wrapper,
    .contact-grid {
        flex-direction: column;
    }

    .section-offset,
    .section-offset-right {
        padding-left: 0;
        padding-right: 0;
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .testimonial-card:nth-child(2),
    .testimonial-card:nth-child(3) {
        margin-top: 0;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .nav-float {
        padding: 12px 20px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .service-card:nth-child(2),
    .service-card:nth-child(5) {
        transform: none;
    }

    .stat-box:nth-child(2) {
        transform: none;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        right: 16px;
        bottom: 16px;
    }
}

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

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

    .contact-form-wrapper {
        padding: 32px 24px;
    }

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