:root {
    --navy-blue: #1a365d;
    --off-white: #F8F6F3;
    --accent-gray: #e2e8f0;
    --text-dark: #2d3748;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--off-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 40px;
    transition: height 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--accent-gray) 100%);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--navy-blue);
}

.hero .subheadline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--navy-blue);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Sections */
section {
    padding: 5rem 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--navy-blue);
}

/* Why Trust Us */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-item .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* How It Works */
.how-it-works {
    background: var(--off-white);
    position: relative;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--navy-blue);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.step-icon {
    margin-bottom: 1.5rem;
    color: var(--navy-blue);
}

.step-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.step-number {
    width: 36px;
    height: 36px;
    background: var(--navy-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: bold;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.step h3 {
    font-size: 1.4rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Trust Boosters */
.trust-boosters {
    text-align: center;
    margin: 4rem 0 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.trust-booster-text {
    font-size: 1.3rem;
    color: var(--navy-blue);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.trust-badges-mini {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy-blue);
    font-weight: 500;
}

.trust-badge-mini svg {
    color: var(--navy-blue);
}

/* Animation Delays for Steps */
.step:nth-child(1) {
    animation: fadeInUp 0.6s ease forwards;
}

.step:nth-child(2) {
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.step:nth-child(3) {
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-top: 1rem;
}

/* Ad Spend Guide */
.pricing {
    background: white;
    padding: 5rem 0;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--navy-blue);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ad-tier-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(26, 54, 93, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-icon {
    margin-bottom: 1.5rem;
    color: var(--navy-blue);
}

.card-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.card h3 {
    font-size: 1.4rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.budget {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.budget strong {
    color: var(--navy-blue);
}

.card small {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-top: 1rem;
}

/* Limited Offer */
.limited-offer {
    background: var(--navy-blue);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.limited-offer-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.monogram-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    font-family: 'Inter', sans-serif;
    pointer-events: none;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.text-content {
    text-align: left;
}

.limited-offer h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.limited-offer .subtext {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.limited-offer .cta-button {
    background: white;
    color: var(--navy-blue);
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.limited-offer .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.trust-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.trust-item svg {
    color: white;
    flex-shrink: 0;
}

.scandinavian-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin: 2rem 0;
    font-weight: 500;
}

.scandinavian-guarantee svg {
    color: white;
}

.success-metric {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 1rem;
}

/* Trust Badges */
.trust-badges {
    background: var(--off-white);
    padding: 5rem 0;
    position: relative;
}

.trust-badges .monogram-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    font-weight: 700;
    color: rgba(26, 54, 93, 0.03);
    font-family: 'Inter', sans-serif;
    pointer-events: none;
}

.trust-badges h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.trust-card:nth-child(1) {
    animation-delay: 0.2s;
}

.trust-card:nth-child(2) {
    animation-delay: 0.4s;
}

.trust-card:nth-child(3) {
    animation-delay: 0.6s;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    border-radius: 50%;
    color: var(--navy-blue);
    transition: all 0.3s ease;
}

.trust-card:hover .trust-icon {
    transform: scale(1.1);
    background: var(--navy-blue);
    color: white;
}

.trust-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.trust-card h3 {
    font-size: 1.3rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.trust-card p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.5;
    opacity: 0.9;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .trust-badges {
        padding: 3rem 0;
    }

    .trust-badges h2 {
        font-size: 2rem;
    }

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

    .trust-card {
        padding: 2rem 1.5rem;
    }

    .trust-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.25rem;
    }

    .trust-icon svg {
        width: 28px;
        height: 28px;
    }

    .trust-card h3 {
        font-size: 1.2rem;
    }

    .trust-card p {
        font-size: 0.95rem;
    }
}

/* Stats Section */
.stats {
    background: var(--navy-blue);
    color: white;
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Sticky Booking Button */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: none;
}

.sticky-cta .cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Section Background Variations */
.hero {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--accent-gray) 100%);
}

.why-trust {
    background: white;
}

.how-it-works {
    background: var(--off-white);
}

.pricing {
    background: white;
}

.limited-offer {
    background: var(--navy-blue);
}

.calendar {
    background: var(--off-white);
    padding: 5rem 0;
    position: relative;
}

.calendar::before {
    content: 'N';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    font-weight: 700;
    color: rgba(26, 54, 93, 0.03);
    font-family: 'Inter', sans-serif;
    pointer-events: none;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.booking-content {
    padding-right: 2rem;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(26, 54, 93, 0.1);
    border-radius: 50px;
    margin-bottom: 2rem;
    color: var(--navy-blue);
    font-weight: 500;
}

.security-badge svg {
    color: var(--navy-blue);
}

.calendar h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.calendar .subheadline {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.expectations {
    margin: 2.5rem 0;
}

.expectations h3 {
    font-size: 1.4rem;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
}

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

.expectations-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.expectations-list li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.expectations-list li svg {
    color: var(--navy-blue);
    flex-shrink: 0;
}

.expectations-list li span {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.trust-badges {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: rgba(26, 54, 93, 0.1);
    border-radius: 8px;
    color: var(--navy-blue);
    font-weight: 500;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(26, 54, 93, 0.15);
    transform: translateY(-2px);
}

.trust-badge svg {
    color: var(--navy-blue);
}

.testimonial {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial cite {
    font-style: normal;
    color: var(--navy-blue);
    font-weight: 500;
}

.calendar-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    height: 100%;
}

.backup-options {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(26, 54, 93, 0.1);
}

.backup-options p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.backup-link {
    display: block;
    margin: 0.5rem 0;
    color: var(--navy-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.backup-link:hover {
    color: var(--text-dark);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subheadline {
        font-size: 1.2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    section {
        padding: 3rem 0;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .how-it-works h2 {
        font-size: 2rem;
    }
    
    .step {
        padding: 2rem;
    }
    
    .step h3 {
        font-size: 1.2rem;
    }
    
    .step p {
        font-size: 1rem;
    }
    
    .trust-booster-text {
        font-size: 1.1rem;
    }
    
    .trust-badges-mini {
        flex-direction: column;
        gap: 1rem;
    }

    .testimonials-grid,
    .badges-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .sticky-cta {
        display: block;
    }

    .sticky-cta .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .pricing h2,
    .limited-offer h2 {
        font-size: 2rem;
    }
    
    .card {
        padding: 2rem;
    }
    
    .budget {
        font-size: 1.4rem;
    }
    
    .trust-icons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .limited-offer .subtext {
        font-size: 1.1rem;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .monogram-watermark {
        font-size: 15rem;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-content {
        padding-right: 0;
    }

    .calendar h2 {
        font-size: 2rem;
    }

    .calendar .subheadline {
        font-size: 1.1rem;
    }

    .trust-badges {
        flex-direction: column;
    }

    .calendar::before {
        font-size: 15rem;
    }
}

/* About + Contact */
.about-contact {
    background: var(--off-white);
    padding: 5rem 0;
    position: relative;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-content {
    position: relative;
}

.monogram-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    font-weight: 700;
    color: rgba(26, 54, 93, 0.03);
    font-family: 'Inter', sans-serif;
    pointer-events: none;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.founder-quote {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin: 2.5rem 0;
    position: relative;
    z-index: 1;
}

.founder-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.founder-quote cite {
    font-style: normal;
    color: var(--navy-blue);
    font-weight: 500;
}

.contact-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin: 2.5rem 0;
    position: relative;
    z-index: 1;
}

.contact-box h3 {
    font-size: 1.4rem;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
}

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

.contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(26, 54, 93, 0.1);
}

.contact-list li:last-child {
    border-bottom: none;
}

.contact-list li svg {
    color: var(--navy-blue);
    flex-shrink: 0;
}

.contact-list li a {
    color: var(--navy-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list li a:hover {
    color: var(--text-dark);
}

.sweden-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(26, 54, 93, 0.1);
    border-radius: 50px;
    color: var(--navy-blue);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.sweden-badge svg {
    color: var(--navy-blue);
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.skyline-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.image-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    justify-content: center;
}

.image-overlay .trust-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--navy-blue);
    font-weight: 500;
    box-shadow: var(--shadow);
}

.image-overlay .trust-badge svg {
    color: var(--navy-blue);
}

@media (max-width: 768px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .description {
        font-size: 1.1rem;
    }

    .founder-quote {
        padding: 1.5rem;
    }

    .founder-quote p {
        font-size: 1.1rem;
    }

    .monogram-watermark {
        font-size: 15rem;
    }

    .about-image {
        height: 300px;
    }
}

/* Footer Styles */
.footer {
    background-color: #0F2A51;
    color: white;
    padding: 60px 0 30px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer::before {
    content: 'N';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 300px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand-column {
    max-width: 400px;
}

.footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.sweden-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
}

.sweden-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.footer-column h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
    transform: translateX(3px);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .brand-column {
        max-width: 100%;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 15px;
    }

    .sweden-badge {
        margin: 0 auto;
    }

    .footer-column h3 {
        text-align: center;
    }

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

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

    .contact-info li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Testimonials Section */
.testimonials {
    background: var(--off-white);
    padding: 5rem 0;
    position: relative;
}

.testimonials .monogram-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    font-weight: 700;
    color: rgba(26, 54, 93, 0.03);
    font-family: 'Inter', sans-serif;
    pointer-events: none;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    padding: 2rem;
    position: relative;
}

.quote-icon {
    color: var(--navy-blue);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.quote-icon svg {
    width: 32px;
    height: 32px;
}

.quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-blue);
    flex-shrink: 0;
}

.author-info {
    flex-grow: 1;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--navy-blue);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(26, 54, 93, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--navy-blue);
    font-weight: 500;
}

.verified-badge svg {
    width: 14px;
    height: 14px;
    color: var(--navy-blue);
}

.rating {
    color: #FFB800;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 0;
    }

    .testimonials h2 {
        font-size: 2rem;
    }

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

    .testimonial-content {
        padding: 1.5rem;
    }

    .quote {
        font-size: 1rem;
    }

    .author-info h4 {
        font-size: 1rem;
    }

    .author-info p {
        font-size: 0.85rem;
    }

    .verified-badge {
        font-size: 0.75rem;
    }

    .rating {
        font-size: 1rem;
    }
}

/* Trust Section (Why Remodelers Trust Us) */
.trust-section {
    background: var(--off-white);
    padding: 5rem 0;
    position: relative;
}

.trust-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 3rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.trust-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.trust-card {
    background: white;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    text-align: center;
    padding: 2.5rem 2rem 2rem 2rem;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.7s ease forwards;
}

.trust-card:nth-child(1) { animation-delay: 0.1s; }
.trust-card:nth-child(2) { animation-delay: 0.3s; }
.trust-card:nth-child(3) { animation-delay: 0.5s; }

.trust-card:hover {
    box-shadow: 0 8px 32px rgba(26,54,93,0.10);
    transform: translateY(-6px) scale(1.03);
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--off-white);
    color: var(--navy-blue);
    transition: background 0.3s, color 0.3s, transform 0.3s;
    box-shadow: 0 2px 8px rgba(26,54,93,0.04);
}

.trust-card:hover .trust-icon {
    background: var(--navy-blue);
    color: white;
    transform: scale(1.08);
}

.trust-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 1.5;
    color: inherit;
}

.trust-card h3 {
    font-size: 1.25rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.trust-card p {
    font-size: 1.05rem;
    color: var(--text-dark);
    opacity: 0.92;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .trust-cards {
        grid-template-columns: 1fr;
    }
    
    .trust-card {
        margin-bottom: 2rem;
    }
    
    .trust-section h2 {
        font-size: 2rem;
    }
}

/* Lead Form Section */
.lead-form-section {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--accent-gray) 100%);
    padding: 6rem 0;
    position: relative;
}

.lead-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.form-wrapper {
    position: relative;
    z-index: 2;
}

.form-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.form-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy-blue) 0%, #4a90e2 100%);
}

.form-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--navy-blue);
}

.form-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    opacity: 0.8;
}

.lead-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy-blue);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.checkbox-item:hover {
    border-color: var(--navy-blue);
    background: rgba(26, 54, 93, 0.02);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

.checkbox-item label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
    flex: 1;
}

.other-input {
    margin-top: 0.5rem;
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 0.9rem;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(26, 54, 93, 0.05);
    border-radius: 8px;
    border: 2px solid rgba(26, 54, 93, 0.1);
}

.consent-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    margin-top: 0.25rem;
    cursor: pointer;
}

.consent-checkbox label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
    line-height: 1.4;
}

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--navy-blue) 0%, #4a90e2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 54, 93, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button svg {
    width: 20px;
    height: 20px;
}

.form-trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.form-trust-badges .trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(26, 54, 93, 0.05);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-trust-badges .trust-badge:hover {
    background: rgba(26, 54, 93, 0.1);
    transform: translateY(-1px);
}

.form-trust-badges .trust-badge svg {
    width: 18px;
    height: 18px;
    color: var(--navy-blue);
}

/* Google reCAPTCHA styling */
.g-recaptcha {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

/* Responsive Design for Lead Form */
@media (max-width: 768px) {
    .lead-form-section {
        padding: 3rem 0;
    }
    
    .form-wrapper {
        margin: 0 1rem;
    }
    
    .form-content {
        padding: 2rem 1.5rem;
        margin: 0;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .form-content h2 {
        font-size: 1.875rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .form-trust-badges .trust-badge {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }
    
    /* Improve form field spacing on mobile */
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem 0.875rem;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 12px;
        min-height: 48px; /* Better touch target */
    }
    
    /* Improve submit button on mobile */
    .submit-button {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 12px;
    }
}

@media (max-width: 600px) {
    .lead-form-section {
        padding: 2.5rem 0;
    }
    
    .form-content {
        padding: 1.5rem 1rem;
        border-radius: 12px;
        margin: 0 0.5rem;
    }
    
    .form-content h2 {
        font-size: 1.75rem;
        margin-bottom: 0.875rem;
    }
    
    .form-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0;
    }
    
    .form-trust-badges {
        margin-top: 1.5rem;
    }
    
    .form-trust-badges .trust-badge {
        padding: 0.625rem 0.875rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .lead-form-section {
        padding: 2rem 0;
    }
    
    .form-wrapper {
        margin: 0 0.5rem;
    }
    
    .form-content {
        padding: 1.25rem 0.875rem;
        border-radius: 10px;
        margin: 0;
    }
    
    .form-content h2 {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    
    .form-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.4;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem 0.75rem;
        font-size: 16px;
        min-height: 44px;
        border-radius: 10px;
    }
    
    .submit-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        min-height: 44px;
        border-radius: 10px;
    }
    
    .form-trust-badges {
        margin-top: 1.25rem;
        gap: 0.75rem;
    }
    
    .form-trust-badges .trust-badge {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
}

/* Additional mobile optimizations for very small screens */
@media (max-width: 360px) {
    .form-content {
        padding: 1rem 0.75rem;
    }
    
    .form-content h2 {
        font-size: 1.375rem;
    }
    
    .form-subtitle {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem 0.625rem;
        min-height: 42px;
    }
    
    .submit-button {
        padding: 0.75rem 1rem;
        min-height: 42px;
    }
}

/* HubSpot Form Section */
.hubspot-form-section {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--accent-gray) 100%);
    padding: 6rem 0;
    position: relative;
}

.hubspot-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy-blue) 0%, #4a90e2 100%);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--navy-blue);
}

.form-header p {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 0;
}

.hubspot-form-wrapper {
    width: 100%;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hs-form-frame {
    width: 100%;
    max-width: 600px;
}

/* HubSpot Form Responsive Adjustments */
@media (max-width: 768px) {
    .hubspot-form-section {
        padding: 3rem 0;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        border-radius: 16px;
    }
    
    .form-header h2 {
        font-size: 1.875rem;
        line-height: 1.3;
    }
    
    .form-header p {
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 0.5rem;
    }
    
    .hubspot-form-wrapper {
        min-height: 300px;
    }
    
    /* Improve HubSpot form elements on mobile */
    .hs-form-frame .hs-form .hs-fieldtype-text input,
    .hs-form-frame .hs-form .hs-fieldtype-email input,
    .hs-form-frame .hs-form .hs-fieldtype-tel input,
    .hs-form-frame .hs-form .hs-fieldtype-select select,
    .hs-form-frame .hs-form .hs-fieldtype-textarea textarea {
        padding: 1rem 0.875rem;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 12px;
        min-height: 48px; /* Better touch target */
        margin-bottom: 1rem;
    }
    
    .hs-form-frame .hs-form .hs-button {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 12px;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hubspot-form-section {
        padding: 2.5rem 0;
    }
    
    .form-container {
        padding: 1.5rem 1rem;
        border-radius: 12px;
        margin: 0 0.5rem;
    }
    
    .form-header h2 {
        font-size: 1.75rem;
        margin-bottom: 0.875rem;
    }
    
    .form-header p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0;
    }
    
    .hubspot-form-wrapper {
        min-height: 280px;
    }
    
    .hs-form-frame .hs-form .hs-fieldtype-text input,
    .hs-form-frame .hs-form .hs-fieldtype-email input,
    .hs-form-frame .hs-form .hs-fieldtype-tel input,
    .hs-form-frame .hs-form .hs-fieldtype-select select,
    .hs-form-frame .hs-form .hs-fieldtype-textarea textarea {
        padding: 0.875rem 0.75rem;
        min-height: 44px;
        border-radius: 10px;
        margin-bottom: 0.875rem;
    }
    
    .hs-form-frame .hs-form .hs-button {
        padding: 0.875rem 1.25rem;
        min-height: 44px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .hubspot-form-section {
        padding: 2rem 0;
    }
    
    .form-container {
        padding: 1.25rem 0.875rem;
        border-radius: 10px;
        margin: 0;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    
    .form-header p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.4;
    }
    
    .hubspot-form-wrapper {
        min-height: 250px;
    }
    
    .hs-form-frame .hs-form .hs-fieldtype-text input,
    .hs-form-frame .hs-form .hs-fieldtype-email input,
    .hs-form-frame .hs-form .hs-fieldtype-tel input,
    .hs-form-frame .hs-form .hs-fieldtype-select select,
    .hs-form-frame .hs-form .hs-fieldtype-textarea textarea {
        padding: 0.75rem 0.625rem;
        font-size: 16px;
        min-height: 42px;
        border-radius: 8px;
        margin-bottom: 0.75rem;
    }
    
    .hs-form-frame .hs-form .hs-button {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        min-height: 42px;
        border-radius: 8px;
    }
}

/* Additional mobile optimizations for very small screens */
@media (max-width: 360px) {
    .form-container {
        padding: 1rem 0.75rem;
    }
    
    .form-header h2 {
        font-size: 1.375rem;
    }
    
    .form-header p {
        font-size: 0.85rem;
    }
    
    .hubspot-form-wrapper {
        min-height: 220px;
    }
    
    .hs-form-frame .hs-form .hs-fieldtype-text input,
    .hs-form-frame .hs-form .hs-fieldtype-email input,
    .hs-form-frame .hs-form .hs-fieldtype-tel input,
    .hs-form-frame .hs-form .hs-fieldtype-select select,
    .hs-form-frame .hs-form .hs-fieldtype-textarea textarea {
        padding: 0.625rem 0.5rem;
        min-height: 40px;
        border-radius: 6px;
        margin-bottom: 0.625rem;
    }
    
    .hs-form-frame .hs-form .hs-button {
        padding: 0.625rem 0.875rem;
        min-height: 40px;
        border-radius: 6px;
        font-size: 0.9rem;
    }
}

/* HubSpot Form Styles */
.hs-form-frame {
    max-width: 100%;
    margin: 0 auto;
}

/* Ensure HubSpot form inherits the parent styling */
.hs-form-frame iframe {
    border: none;
    width: 100% !important;
    min-height: 500px;
}

/* Style HubSpot form to match existing design */
.hs-form-frame .hs-form {
    font-family: 'Inter', sans-serif;
}

.hs-form-frame .hs-form .hs-fieldtype-text input,
.hs-form-frame .hs-form .hs-fieldtype-email input,
.hs-form-frame .hs-form .hs-fieldtype-tel input,
.hs-form-frame .hs-form .hs-fieldtype-select select,
.hs-form-frame .hs-form .hs-fieldtype-textarea textarea {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
    width: 100%;
}

.hs-form-frame .hs-form .hs-fieldtype-text input:focus,
.hs-form-frame .hs-form .hs-fieldtype-email input:focus,
.hs-form-frame .hs-form .hs-fieldtype-tel input:focus,
.hs-form-frame .hs-form .hs-fieldtype-select select:focus,
.hs-form-frame .hs-form .hs-fieldtype-textarea textarea:focus {
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
    outline: none;
}

.hs-form-frame .hs-form .hs-button {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hs-form-frame .hs-form .hs-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 153, 225, 0.3);
}

/* Additional mobile form optimizations */
@media (max-width: 768px) {
    /* Improve form trust badges layout on mobile */
    .form-trust-badges {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .form-trust-badges .trust-badge {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        background: rgba(26, 54, 93, 0.05);
        border-radius: 8px;
        border: 1px solid rgba(26, 54, 93, 0.1);
        transition: all 0.2s ease;
    }
    
    .form-trust-badges .trust-badge:hover {
        background: rgba(26, 54, 93, 0.1);
        transform: translateY(-1px);
    }
    
    .form-trust-badges .trust-badge svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
    
    .form-trust-badges .trust-badge span {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--navy-blue);
    }
    
    /* Improve form spacing and readability on mobile */
    .form-content > * + * {
        margin-top: 1.5rem;
    }
    
    .form-content > * + h2 {
        margin-top: 2rem;
    }
    
    .form-content > * + .form-subtitle {
        margin-top: 1rem;
    }
    
    .form-content > * + .hs-form-frame {
        margin-top: 2rem;
    }
    
    .form-content > * + .form-trust-badges {
        margin-top: 2.5rem;
    }
}

@media (max-width: 600px) {
    .form-trust-badges {
        margin-top: 1.5rem;
        gap: 0.875rem;
    }
    
    .form-trust-badges .trust-badge {
        padding: 0.625rem 0.875rem;
    }
    
    .form-trust-badges .trust-badge svg {
        width: 16px;
        height: 16px;
    }
    
    .form-trust-badges .trust-badge span {
        font-size: 0.8rem;
    }
    
    .form-content > * + * {
        margin-top: 1.25rem;
    }
    
    .form-content > * + h2 {
        margin-top: 1.5rem;
    }
    
    .form-content > * + .form-subtitle {
        margin-top: 0.875rem;
    }
    
    .form-content > * + .hs-form-frame {
        margin-top: 1.5rem;
    }
    
    .form-content > * + .form-trust-badges {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .form-trust-badges {
        margin-top: 1.25rem;
        gap: 0.75rem;
    }
    
    .form-trust-badges .trust-badge {
        padding: 0.5rem 0.75rem;
    }
    
    .form-trust-badges .trust-badge svg {
        width: 15px;
        height: 15px;
    }
    
    .form-trust-badges .trust-badge span {
        font-size: 0.75rem;
    }
    
    .form-content > * + * {
        margin-top: 1rem;
    }
    
    .form-content > * + h2 {
        margin-top: 1.25rem;
    }
    
    .form-content > * + .form-subtitle {
        margin-top: 0.75rem;
    }
    
    .form-content > * + .hs-form-frame {
        margin-top: 1.25rem;
    }
    
    .form-content > * + .form-trust-badges {
        margin-top: 1.75rem;
    }
}

@media (max-width: 360px) {
    .form-trust-badges {
        margin-top: 1rem;
        gap: 0.625rem;
    }
    
    .form-trust-badges .trust-badge {
        padding: 0.375rem 0.625rem;
    }
    
    .form-trust-badges .trust-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .form-trust-badges .trust-badge span {
        font-size: 0.7rem;
    }
    
    .form-content > * + * {
        margin-top: 0.875rem;
    }
    
    .form-content > * + h2 {
        margin-top: 1rem;
    }
    
    .form-content > * + .form-subtitle {
        margin-top: 0.625rem;
    }
    
    .form-content > * + .hs-form-frame {
        margin-top: 1rem;
    }
    
    .form-content > * + .form-trust-badges {
        margin-top: 1.5rem;
    }
}

/* Mobile form input optimizations */
@media (max-width: 768px) {
    /* Prevent zoom on iOS for form inputs */
    .hs-form-frame .hs-form input[type="text"],
    .hs-form-frame .hs-form input[type="email"],
    .hs-form-frame .hs-form input[type="tel"],
    .hs-form-frame .hs-form input[type="number"],
    .hs-form-frame .hs-form input[type="url"],
    .hs-form-frame .hs-form select,
    .hs-form-frame .hs-form textarea {
        font-size: 16px !important;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    /* Improve form field spacing and layout */
    .hs-form-frame .hs-form .hs-form-field {
        margin-bottom: 1.5rem;
    }
    
    .hs-form-frame .hs-form .hs-form-field .hs-field-desc {
        font-size: 0.875rem;
        margin-top: 0.5rem;
        color: #666;
    }
    
    /* Better button styling for mobile */
    .hs-form-frame .hs-form .hs-button {
        width: 100%;
        max-width: none;
        margin-top: 1rem;
    }
    
    /* Improve form container spacing */
    .hs-form-frame .hs-form {
        padding: 0;
    }
    
    /* Better label styling for mobile */
    .hs-form-frame .hs-form .hs-field-desc label {
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
        display: block;
        color: var(--text-dark);
    }
}

@media (max-width: 600px) {
    .hs-form-frame .hs-form .hs-form-field {
        margin-bottom: 1.25rem;
    }
    
    .hs-form-frame .hs-form .hs-form-field .hs-field-desc {
        font-size: 0.8rem;
        margin-top: 0.375rem;
    }
    
    .hs-form-frame .hs-form .hs-field-desc label {
        font-size: 0.85rem;
        margin-bottom: 0.625rem;
    }
    
    .hs-form-frame .hs-form .hs-button {
        margin-top: 0.875rem;
    }
}

@media (max-width: 480px) {
    .hs-form-frame .hs-form .hs-form-field {
        margin-bottom: 1rem;
    }
    
    .hs-form-frame .hs-form .hs-form-field .hs-field-desc {
        font-size: 0.75rem;
        margin-top: 0.25rem;
    }
    
    .hs-form-frame .hs-form .hs-field-desc label {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hs-form-frame .hs-form .hs-button {
        margin-top: 0.75rem;
    }
}

@media (max-width: 360px) {
    .hs-form-frame .hs-form .hs-form-field {
        margin-bottom: 0.875rem;
    }
    
    .hs-form-frame .hs-form .hs-form-field .hs-field-desc {
        font-size: 0.7rem;
        margin-top: 0.25rem;
    }
    
    .hs-form-frame .hs-form .hs-field-desc label {
        font-size: 0.75rem;
        margin-bottom: 0.375rem;
    }
    
    .hs-form-frame .hs-form .hs-button {
        margin-top: 0.625rem;
    }
}

/* Mobile form section layout optimizations */
@media (max-width: 768px) {
    /* Improve overall form section spacing */
    .lead-form-section {
        margin: 0;
        width: 100%;
    }
    
    .lead-form-section .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    /* Better form wrapper positioning */
    .form-wrapper {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 100%;
    }
    
    /* Improve form content mobile layout */
    .form-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
    
    /* Better monogram watermark positioning on mobile */
    .form-content .monogram-watermark {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
        opacity: 0.1;
        z-index: 1;
    }
    
    /* Improve form content spacing on mobile */
    .form-content > *:first-child {
        margin-top: 0;
    }
    
    .form-content > *:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 600px) {
    .lead-form-section .container {
        padding: 0 0.75rem;
    }
    
    .form-wrapper {
        margin: 0;
    }
    
    .form-content .monogram-watermark {
        top: 0.75rem;
        right: 0.75rem;
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .lead-form-section .container {
        padding: 0 0.5rem;
    }
    
    .form-content .monogram-watermark {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 1.5rem;
    }
}

@media (max-width: 360px) {
    .lead-form-section .container {
        padding: 0 0.375rem;
    }
    
    .form-content .monogram-watermark {
        top: 0.375rem;
        right: 0.375rem;
        font-size: 1.25rem;
    }
}

/* Ensure HubSpot form is properly responsive */
@media (max-width: 768px) {
    .hs-form-frame {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .hs-form-frame iframe {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Ensure HubSpot form container is properly sized */
    .hs-form-frame .hs-form {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* Additional mobile touch optimizations */
@media (max-width: 768px) {
    /* Ensure all interactive elements have proper touch targets */
    .form-content button,
    .form-content input[type="submit"],
    .form-content .hs-button,
    .form-content a {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Improve focus states for mobile */
    .form-content input:focus,
    .form-content select:focus,
    .form-content textarea:focus,
    .form-content button:focus {
        outline: 2px solid var(--navy-blue);
        outline-offset: 2px;
    }
    
    /* Better mobile scrolling */
    .form-content {
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
    }
}

/* Mobile Calendar Section Optimizations */
@media (max-width: 768px) {
    .calendar {
        padding: 3rem 0;
    }
    
    .calendar::before {
        font-size: 12rem;
        opacity: 0.02;
    }
    
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 0 1rem;
    }
    
    .booking-content {
        padding-right: 0;
        order: 1;
    }
    
    .calendar-container {
        order: 2;
        padding: 1.5rem;
        border-radius: 16px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .calendar h2 {
        font-size: 1.875rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .calendar .subheadline {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .security-badge {
        padding: 0.75rem 1.25rem;
        margin-bottom: 1.5rem;
        font-size: 0.875rem;
        border-radius: 25px;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .security-badge svg {
        width: 18px;
        height: 18px;
    }
    
    .expectations {
        margin: 2rem 0;
    }
    
    .expectations h3 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .expectations-list li {
        padding: 0.875rem 1.25rem;
        margin-bottom: 0.875rem;
        border-radius: 12px;
    }
    
    .expectations-list li svg {
        width: 18px;
        height: 18px;
    }
    
    .expectations-list li span {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 0.875rem;
        margin: 1.5rem 0;
    }
    
    .trust-badge {
        padding: 0.75rem 1rem;
        border-radius: 10px;
        justify-content: center;
    }
    
    .trust-badge svg {
        width: 18px;
        height: 18px;
    }
    
    .trust-badge span {
        font-size: 0.875rem;
    }
    
    .testimonial {
        margin-top: 2rem;
        padding: 1.25rem;
        border-radius: 16px;
    }
    
    .testimonial p {
        font-size: 1rem;
        margin-bottom: 0.875rem;
    }
    
    .testimonial cite {
        font-size: 0.875rem;
    }
    
    .backup-options {
        margin-top: 2rem;
        padding-top: 1.5rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .backup-options p {
        font-size: 0.9rem;
        margin-bottom: 0.875rem;
    }
    
    .backup-link {
        display: block;
        margin: 0.75rem 0;
        padding: 0.75rem 1rem;
        background: rgba(26, 54, 93, 0.05);
        border-radius: 8px;
        text-align: center;
        font-size: 0.9rem;
        transition: all 0.2s ease;
    }
    
    .backup-link:hover {
        background: rgba(26, 54, 93, 0.1);
        transform: translateY(-1px);
    }
    
    /* Calendly widget mobile optimization */
    .calendly-inline-widget {
        min-width: 100% !important;
        height: 600px !important;
        border-radius: 12px;
        overflow: hidden;
    }
}

@media (max-width: 600px) {
    .calendar {
        padding: 2.5rem 0;
    }
    
    .calendar::before {
        font-size: 10rem;
    }
    
    .booking-wrapper {
        gap: 1.5rem;
        margin: 0 0.75rem;
    }
    
    .calendar-container {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .calendar h2 {
        font-size: 1.75rem;
        margin-bottom: 0.875rem;
    }
    
    .calendar .subheadline {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .security-badge {
        padding: 0.625rem 1rem;
        margin-bottom: 1.25rem;
        font-size: 0.8rem;
    }
    
    .security-badge svg {
        width: 16px;
        height: 16px;
    }
    
    .expectations {
        margin: 1.5rem 0;
    }
    
    .expectations h3 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .expectations-list li {
        padding: 0.75rem 1rem;
        margin-bottom: 0.75rem;
        border-radius: 10px;
    }
    
    .expectations-list li svg {
        width: 16px;
        height: 16px;
    }
    
    .expectations-list li span {
        font-size: 0.9rem;
    }
    
    .trust-badges {
        gap: 0.75rem;
        margin: 1.25rem 0;
    }
    
    .trust-badge {
        padding: 0.625rem 0.875rem;
        border-radius: 8px;
    }
    
    .trust-badge svg {
        width: 16px;
        height: 16px;
    }
    
    .trust-badge span {
        font-size: 0.8rem;
    }
    
    .testimonial {
        margin-top: 1.5rem;
        padding: 1rem;
        border-radius: 12px;
    }
    
    .testimonial p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .testimonial cite {
        font-size: 0.8rem;
    }
    
    .backup-options {
        margin-top: 1.5rem;
        padding-top: 1.25rem;
        margin-left: 0.75rem;
        margin-right: 0.75rem;
    }
    
    .backup-options p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .backup-link {
        margin: 0.625rem 0;
        padding: 0.625rem 0.875rem;
        font-size: 0.85rem;
        border-radius: 6px;
    }
    
    /* Calendly widget optimization for smaller screens */
    .calendly-inline-widget {
        height: 550px !important;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .calendar {
        padding: 2rem 0;
    }
    
    .calendar::before {
        font-size: 8rem;
    }
    
    .booking-wrapper {
        gap: 1.25rem;
        margin: 0 0.5rem;
    }
    
    .calendar-container {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .calendar h2 {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    
    .calendar .subheadline {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.4;
    }
    
    .security-badge {
        padding: 0.5rem 0.875rem;
        margin-bottom: 1rem;
        font-size: 0.75rem;
        border-radius: 20px;
    }
    
    .security-badge svg {
        width: 15px;
        height: 15px;
    }
    
    .expectations {
        margin: 1.25rem 0;
    }
    
    .expectations h3 {
        font-size: 1rem;
        margin-bottom: 0.875rem;
    }
    
    .expectations-list li {
        padding: 0.625rem 0.875rem;
        margin-bottom: 0.625rem;
        border-radius: 8px;
    }
    
    .expectations-list li svg {
        width: 15px;
        height: 15px;
    }
    
    .expectations-list li span {
        font-size: 0.85rem;
    }
    
    .trust-badges {
        gap: 0.625rem;
        margin: 1rem 0;
    }
    
    .trust-badge {
        padding: 0.5rem 0.75rem;
        border-radius: 6px;
    }
    
    .trust-badge svg {
        width: 15px;
        height: 15px;
    }
    
    .trust-badge span {
        font-size: 0.75rem;
    }
    
    .testimonial {
        margin-top: 1.25rem;
        padding: 0.875rem;
        border-radius: 10px;
    }
    
    .testimonial p {
        font-size: 0.85rem;
        margin-bottom: 0.625rem;
    }
    
    .testimonial cite {
        font-size: 0.75rem;
    }
    
    .backup-options {
        margin-top: 1.25rem;
        padding-top: 1rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
    
    .backup-options p {
        font-size: 0.8rem;
        margin-bottom: 0.625rem;
    }
    
    .backup-link {
        margin: 0.5rem 0;
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        border-radius: 5px;
    }
    
    /* Calendly widget optimization for very small screens */
    .calendly-inline-widget {
        height: 500px !important;
        border-radius: 8px;
    }
}

@media (max-width: 360px) {
    .calendar {
        padding: 1.5rem 0;
    }
    
    .calendar::before {
        font-size: 6rem;
    }
    
    .booking-wrapper {
        gap: 1rem;
        margin: 0 0.375rem;
    }
    
    .calendar-container {
        padding: 0.875rem;
        border-radius: 8px;
    }
    
    .calendar h2 {
        font-size: 1.375rem;
        margin-bottom: 0.625rem;
    }
    
    .calendar .subheadline {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .security-badge {
        padding: 0.375rem 0.75rem;
        margin-bottom: 0.875rem;
        font-size: 0.7rem;
        border-radius: 18px;
    }
    
    .security-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .expectations {
        margin: 1rem 0;
    }
    
    .expectations h3 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .expectations-list li {
        padding: 0.5rem 0.75rem;
        margin-bottom: 0.5rem;
        border-radius: 6px;
    }
    
    .expectations-list li svg {
        width: 14px;
        height: 14px;
    }
    
    .expectations-list li span {
        font-size: 0.8rem;
    }
    
    .trust-badges {
        gap: 0.5rem;
        margin: 0.875rem 0;
    }
    
    .trust-badge {
        padding: 0.375rem 0.625rem;
        border-radius: 5px;
    }
    
    .trust-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .trust-badge span {
        font-size: 0.7rem;
    }
    
    .testimonial {
        margin-top: 1rem;
        padding: 0.75rem;
        border-radius: 8px;
    }
    
    .testimonial p {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .testimonial cite {
        font-size: 0.7rem;
    }
    
    .backup-options {
        margin-top: 1rem;
        padding-top: 0.875rem;
        margin-left: 0.375rem;
        margin-right: 0.375rem;
    }
    
    .backup-options p {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .backup-link {
        margin: 0.375rem 0;
        padding: 0.375rem 0.625rem;
        font-size: 0.75rem;
        border-radius: 4px;
    }
    
    /* Calendly widget optimization for extremely small screens */
    .calendly-inline-widget {
        height: 450px !important;
        border-radius: 6px;
    }
}

/* Additional Calendly Widget Mobile Optimizations */
@media (max-width: 768px) {
    /* Ensure Calendly widget is fully responsive */
    .calendar-container {
        position: relative;
        overflow: hidden;
    }
    
    /* Force Calendly widget to be mobile-friendly */
    .calendly-inline-widget {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: 600px !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Ensure Calendly iframe is properly sized */
    .calendly-inline-widget iframe {
        width: 100% !important;
        height: 100% !important;
        border: none !important;
        border-radius: 12px !important;
    }
    
    /* Improve calendar container mobile layout */
    .calendar-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 600px;
    }
    
    /* Better mobile spacing for calendar section */
    .calendar .container {
        padding: 0 1rem;
    }
    
    /* Improve mobile touch targets */
    .calendar-container * {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Better mobile scrolling for calendar content */
    .calendar {
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
    }
}

@media (max-width: 600px) {
    .calendly-inline-widget {
        height: 550px !important;
        border-radius: 10px !important;
    }
    
    .calendly-inline-widget iframe {
        border-radius: 10px !important;
    }
    
    .calendar-container {
        min-height: 550px;
    }
    
    .calendar .container {
        padding: 0 0.75rem;
    }
}

@media (max-width: 480px) {
    .calendly-inline-widget {
        height: 500px !important;
        border-radius: 8px !important;
    }
    
    .calendly-inline-widget iframe {
        border-radius: 8px !important;
    }
    
    .calendar-container {
        min-height: 500px;
    }
    
    .calendar .container {
        padding: 0 0.5rem;
    }
}

@media (max-width: 360px) {
    .calendly-inline-widget {
        height: 450px !important;
        border-radius: 6px !important;
    }
    
    .calendly-inline-widget iframe {
        border-radius: 6px !important;
    }
    
    .calendar-container {
        min-height: 450px;
    }
    
    .calendar .container {
        padding: 0 0.375rem;
    }
}

/* Mobile-specific calendar enhancements */
@media (max-width: 768px) {
    /* Improve mobile calendar section spacing */
    .calendar {
        margin: 0;
        width: 100%;
    }
    
    /* Better mobile calendar content flow */
    .booking-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Improve mobile expectations list */
    .expectations-list {
        display: flex;
        flex-direction: column;
        gap: 0.875rem;
    }
    
    .expectations-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.875rem;
        padding: 1rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.2s ease;
    }
    
    .expectations-list li:active {
        transform: scale(0.98);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    }
    
    /* Better mobile trust badges */
    .trust-badges {
        display: flex;
        flex-direction: column;
        gap: 0.875rem;
    }
    
    .trust-badge {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 1rem;
        background: rgba(26, 54, 93, 0.08);
        border: 1px solid rgba(26, 54, 93, 0.15);
        border-radius: 12px;
        transition: all 0.2s ease;
    }
    
    .trust-badge:active {
        transform: translateY(-1px);
        background: rgba(26, 54, 93, 0.12);
    }
    
    /* Improve mobile testimonial */
    .testimonial {
        background: white;
        border: 1px solid rgba(26, 54, 93, 0.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    
    /* Better mobile backup options */
    .backup-options {
        background: rgba(26, 54, 93, 0.02);
        border-radius: 12px;
        padding: 1.5rem;
        margin: 2rem 1rem;
    }
    
    .backup-link {
        background: white;
        border: 1px solid rgba(26, 54, 93, 0.1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: all 0.2s ease;
    }
    
    .backup-link:active {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
}

/* Mobile calendar performance optimizations */
@media (max-width: 768px) {
    /* Optimize mobile animations */
    .calendar * {
        will-change: auto;
    }
    
    /* Better mobile touch feedback */
    .calendar button,
    .calendar a,
    .calendar .trust-badge,
    .calendar .expectations-list li {
        -webkit-tap-highlight-color: rgba(26, 54, 93, 0.1);
        touch-action: manipulation;
    }
    
    /* Improve mobile scrolling performance */
    .calendar {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Optimize mobile shadows for performance */
    .calendar .testimonial,
    .calendar .calendar-container,
    .calendar .expectations-list li {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
}

/* Comprehensive Mobile Optimization for All Sections */
@media (max-width: 768px) {
    /* Global section mobile optimization */
    section {
        padding: 3rem 0;
        margin: 0;
        width: 100%;
    }
    
    section .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    section h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    section h3 {
        font-size: 1.25rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    section p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    /* Hero Section Mobile Optimization */
    .hero {
        padding: 6rem 0 3rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .hero .subheadline {
        font-size: 1.2rem;
        line-height: 1.4;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        min-height: 48px;
        border-radius: 12px;
    }
    
    /* Why Trust Us Section Mobile Optimization */
    .why-trust {
        padding: 3rem 0;
    }
    
    .why-trust h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .trust-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0 1rem;
    }
    
    .trust-item {
        padding: 1.5rem;
        border-radius: 16px;
        background: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        text-align: center;
    }
    
    .trust-item .icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .trust-item h3 {
        font-size: 1.125rem;
        line-height: 1.4;
        margin-bottom: 0;
    }
    
    /* Testimonials Section Mobile Optimization */
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonials h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .testimonials .monogram-watermark {
        font-size: 12rem;
        opacity: 0.02;
    }
    
    .testimonials-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0 1rem;
    }
    
    .testimonial-card {
        border-radius: 16px;
        overflow: hidden;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .testimonial-content .quote {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-author {
        gap: 1rem;
    }
    
    .author-info h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .author-info p {
        font-size: 0.875rem;
        margin-bottom: 0;
    }
    
    .verified-badge {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .rating {
        font-size: 1.125rem;
        margin-top: 1rem;
    }
    
    /* Trust Section Mobile Optimization */
    .trust-section {
        padding: 3rem 0;
    }
    
    .trust-section h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .trust-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0 1rem;
    }
    
    .trust-card {
        padding: 1.5rem;
        border-radius: 16px;
        text-align: center;
    }
    
    .trust-card h3 {
        font-size: 1.125rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .trust-card p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 0;
    }
    
    /* Stats Section Mobile Optimization */
    .stats {
        padding: 3rem 0;
    }
    
    .stats h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
        border-radius: 16px;
        text-align: center;
        background: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    
    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .stat-item p {
        font-size: 1rem;
        margin-bottom: 0;
    }
    
    /* How It Works Section Mobile Optimization */
    .how-it-works {
        padding: 3rem 0;
    }
    
    .how-it-works h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .steps {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 0 1rem;
    }
    
    .step {
        padding: 1.5rem;
        border-radius: 16px;
        background: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        text-align: center;
    }
    
    .step h3 {
        font-size: 1.125rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .step p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 0;
    }
    
    .trust-boosters {
        margin: 2rem 1rem;
        text-align: center;
    }
    
    .trust-booster-text {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .trust-badges-mini {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .trust-badge-mini {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        font-size: 0.875rem;
    }
    
    .how-it-works .cta-button {
        margin: 2rem 1rem 0;
        width: calc(100% - 2rem);
        padding: 1rem 2rem;
        font-size: 1.1rem;
        min-height: 48px;
        border-radius: 12px;
    }
    
    /* Pricing Section Mobile Optimization */
    .pricing {
        padding: 3rem 0;
    }
    
    .pricing h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .ad-tier-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0 1rem;
    }
    
    .card {
        padding: 1.5rem;
        border-radius: 16px;
        text-align: center;
        background: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    
    .card h3 {
        font-size: 1.125rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .budget {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .card small {
        font-size: 0.875rem;
        line-height: 1.4;
    }
    
    /* Limited Offer Section Mobile Optimization */
    .limited-offer {
        padding: 3rem 0;
    }
    
    .limited-offer .monogram-watermark {
        font-size: 12rem;
        opacity: 0.02;
    }
    
    .limited-offer h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .limited-offer .subtext {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .content-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 0 1rem;
    }
    
    .text-content {
        text-align: center;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .limited-offer .cta-button {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        min-height: 48px;
        border-radius: 12px;
        margin-bottom: 1.5rem;
    }
    
    .trust-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .trust-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
        background: rgba(26, 54, 93, 0.05);
        border-radius: 8px;
        font-size: 0.875rem;
    }
    
    .scandinavian-guarantee {
        margin: 2rem 1rem;
        padding: 1rem;
        background: rgba(26, 54, 93, 0.05);
        border-radius: 12px;
        text-align: center;
        font-size: 0.875rem;
    }
    
    .success-metric {
        margin: 1.5rem 1rem 0;
        text-align: center;
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--navy-blue);
    }
    
    /* About + Contact Section Mobile Optimization */
    .about-contact {
        padding: 3rem 0;
    }
    
    .about-contact .monogram-watermark {
        font-size: 12rem;
        opacity: 0.02;
    }
    
    .about-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 0 1rem;
    }
    
    .about-content h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .founder-quote {
        padding: 1.5rem;
        border-radius: 16px;
        margin: 2rem 0;
        text-align: center;
    }
    
    .founder-quote p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .founder-quote cite {
        font-size: 0.875rem;
    }
    
    .contact-box {
        padding: 1.5rem;
        border-radius: 16px;
        margin: 2rem 0;
        text-align: center;
    }
    
    .contact-box h3 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-list li {
        padding: 0.75rem 0;
        justify-content: center;
        text-align: center;
    }
    
    .sweden-badge {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        border-radius: 25px;
        margin: 1.5rem auto 0;
        display: inline-flex;
    }
    
    .about-image {
        height: 250px;
        border-radius: 16px;
    }
    
    .image-overlay {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }
    
    .image-overlay .trust-badge {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        border-radius: 25px;
    }
    
    /* Footer Mobile Optimization */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer::before {
        font-size: 200px;
        opacity: 0.01;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .footer-column {
        gap: 1rem;
    }
    
    .footer-logo {
        height: 40px;
        margin: 0 auto;
    }
    
    .tagline {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .footer-links {
        gap: 0.75rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .contact-info li {
        justify-content: center;
        text-align: center;
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .social-link {
        padding: 0.75rem;
        border-radius: 8px;
    }
    
    .footer-bottom {
        text-align: center;
        padding-top: 1.5rem;
    }
    
    .copyright {
        font-size: 0.85rem;
    }
    
    /* Sticky CTA Mobile Optimization */
    .sticky-cta {
        display: block;
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        z-index: 1000;
    }
    
    .sticky-cta .cta-button {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(26, 54, 93, 0.3);
    }
}

/* Additional Mobile Breakpoints for Perfect Alignment */
@media (max-width: 600px) {
    /* Global section mobile optimization for smaller screens */
    section {
        padding: 2.5rem 0;
    }
    
    section .container {
        padding: 0 0.75rem;
    }
    
    section h2 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    section h3 {
        font-size: 1.125rem;
        margin-bottom: 0.875rem;
    }
    
    section p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    /* Hero Section - Smaller screens */
    .hero {
        padding: 5rem 0 2.5rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
        padding: 0 0.25rem;
    }
    
    .hero .subheadline {
        font-size: 1.1rem;
        padding: 0 0.5rem;
    }
    
    .hero .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        min-height: 44px;
    }
    
    /* Why Trust Us - Smaller screens */
    .why-trust {
        padding: 2.5rem 0;
    }
    
    .why-trust h2 {
        padding: 0 0.5rem;
    }
    
    .trust-grid {
        gap: 1.25rem;
        margin: 0 0.75rem;
    }
    
    .trust-item {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .trust-item .icon {
        font-size: 2.25rem;
    }
    
    .trust-item h3 {
        font-size: 1rem;
    }
    
    /* Testimonials - Smaller screens */
    .testimonials {
        padding: 2.5rem 0;
    }
    
    .testimonials h2 {
        padding: 0 0.5rem;
    }
    
    .testimonials .monogram-watermark {
        font-size: 10rem;
    }
    
    .testimonials-grid {
        gap: 1.25rem;
        margin: 0 0.75rem;
    }
    
    .testimonial-content {
        padding: 1.25rem;
    }
    
    .testimonial-content .quote {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .author-info h4 {
        font-size: 0.95rem;
    }
    
    .author-info p {
        font-size: 0.8rem;
    }
    
    .verified-badge {
        padding: 0.375rem 0.625rem;
        font-size: 0.7rem;
    }
    
    .rating {
        font-size: 1rem;
        margin-top: 0.875rem;
    }
    
    /* Trust Section - Smaller screens */
    .trust-section {
        padding: 2.5rem 0;
    }
    
    .trust-section h2 {
        padding: 0 0.5rem;
    }
    
    .trust-cards {
        gap: 1.25rem;
        margin: 0 0.75rem;
    }
    
    .trust-card {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .trust-card h3 {
        font-size: 1rem;
    }
    
    .trust-card p {
        font-size: 0.9rem;
    }
    
    /* Stats Section - Smaller screens */
    .stats {
        padding: 2.5rem 0;
    }
    
    .stats h2 {
        padding: 0 0.5rem;
    }
    
    .stats-grid {
        gap: 1.25rem;
        margin: 0 0.75rem;
    }
    
    .stat-item {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .stat-number {
        font-size: 2.25rem;
        margin-bottom: 0.625rem;
    }
    
    .stat-item p {
        font-size: 0.95rem;
    }
    
    /* How It Works - Smaller screens */
    .how-it-works {
        padding: 2.5rem 0;
    }
    
    .how-it-works h2 {
        padding: 0 0.5rem;
    }
    
    .steps {
        gap: 1.5rem;
        margin: 0 0.75rem;
    }
    
    .step {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .step h3 {
        font-size: 1rem;
    }
    
    .step p {
        font-size: 0.9rem;
    }
    
    .trust-boosters {
        margin: 1.5rem 0.75rem;
    }
    
    .trust-booster-text {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .trust-badges-mini {
        gap: 0.875rem;
    }
    
    .trust-badge-mini {
        padding: 0.625rem 0.875rem;
        font-size: 0.8rem;
    }
    
    .how-it-works .cta-button {
        margin: 1.5rem 0.75rem 0;
        width: calc(100% - 1.5rem);
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        min-height: 44px;
    }
    
    /* Pricing Section - Smaller screens */
    .pricing {
        padding: 2.5rem 0;
    }
    
    .pricing h2 {
        padding: 0 0.5rem;
    }
    
    .ad-tier-cards {
        gap: 1.25rem;
        margin: 0 0.75rem;
    }
    
    .card {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .card h3 {
        font-size: 1rem;
    }
    
    .budget {
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
    }
    
    .card small {
        font-size: 0.8rem;
    }
    
    /* Limited Offer - Smaller screens */
    .limited-offer {
        padding: 2.5rem 0;
    }
    
    .limited-offer .monogram-watermark {
        font-size: 10rem;
    }
    
    .limited-offer h2 {
        padding: 0 0.5rem;
    }
    
    .limited-offer .subtext {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    .content-wrapper {
        gap: 1.5rem;
        margin: 0 0.75rem;
    }
    
    .limited-offer .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        min-height: 44px;
        margin-bottom: 1.25rem;
    }
    
    .trust-list {
        gap: 0.875rem;
    }
    
    .trust-item {
        padding: 0.625rem 0.875rem;
        font-size: 0.8rem;
    }
    
    .scandinavian-guarantee {
        margin: 1.5rem 0.75rem;
        padding: 0.875rem;
        font-size: 0.8rem;
    }
    
    .success-metric {
        margin: 1.25rem 0.75rem 0;
        font-size: 0.8rem;
    }
    
    /* About + Contact - Smaller screens */
    .about-contact {
        padding: 2.5rem 0;
    }
    
    .about-contact .monogram-watermark {
        font-size: 10rem;
    }
    
    .about-wrapper {
        gap: 1.5rem;
        margin: 0 0.75rem;
    }
    
    .about-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .founder-quote {
        padding: 1.25rem;
        border-radius: 12px;
        margin: 1.5rem 0;
    }
    
    .founder-quote p {
        font-size: 0.95rem;
        margin-bottom: 0.875rem;
    }
    
    .founder-quote cite {
        font-size: 0.8rem;
    }
    
    .contact-box {
        padding: 1.25rem;
        border-radius: 12px;
        margin: 1.5rem 0;
    }
    
    .contact-box h3 {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }
    
    .contact-list li {
        padding: 0.625rem 0;
        font-size: 0.9rem;
    }
    
    .sweden-badge {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
        border-radius: 20px;
    }
    
    .about-image {
        height: 200px;
        border-radius: 12px;
    }
    
    .image-overlay {
        bottom: 0.75rem;
        left: 0.75rem;
        right: 0.75rem;
    }
    
    .image-overlay .trust-badge {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
        border-radius: 20px;
    }
    
    /* Footer - Smaller screens */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer::before {
        font-size: 150px;
    }
    
    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-column {
        gap: 0.875rem;
    }
    
    .footer-logo {
        height: 35px;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .footer-links {
        gap: 0.625rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        padding: 0.375rem 0;
    }
    
    .contact-info li {
        font-size: 0.85rem;
    }
    
    .social-links {
        gap: 0.875rem;
    }
    
    .social-link {
        padding: 0.625rem;
        border-radius: 6px;
    }
    
    .footer-bottom {
        padding-top: 1.25rem;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
    
    /* Sticky CTA - Smaller screens */
    .sticky-cta {
        bottom: 0.75rem;
        left: 0.75rem;
        right: 0.75rem;
    }
    
    .sticky-cta .cta-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        min-height: 44px;
        border-radius: 10px;
    }
}

/* Final Mobile Breakpoints for Very Small Screens */
@media (max-width: 480px) {
    /* Global section mobile optimization for very small screens */
    section {
        padding: 2rem 0;
    }
    
    section .container {
        padding: 0 0.5rem;
    }
    
    section h2 {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    section h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    section p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    /* Hero Section - Very small screens */
    .hero {
        padding: 4rem 0 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
        padding: 0;
    }
    
    .hero .subheadline {
        font-size: 1rem;
        padding: 0 0.25rem;
    }
    
    .hero .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        min-height: 42px;
        border-radius: 10px;
    }
    
    /* Why Trust Us - Very small screens */
    .why-trust {
        padding: 2rem 0;
    }
    
    .why-trust h2 {
        padding: 0;
    }
    
    .trust-grid {
        gap: 1rem;
        margin: 0 0.5rem;
    }
    
    .trust-item {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .trust-item .icon {
        font-size: 2rem;
        margin-bottom: 0.875rem;
    }
    
    .trust-item h3 {
        font-size: 0.95rem;
    }
    
    /* Testimonials - Very small screens */
    .testimonials {
        padding: 2rem 0;
    }
    
    .testimonials h2 {
        padding: 0;
    }
    
    .testimonials .monogram-watermark {
        font-size: 8rem;
    }
    
    .testimonials-grid {
        gap: 1rem;
        margin: 0 0.5rem;
    }
    
    .testimonial-content {
        padding: 1rem;
    }
    
    .testimonial-content .quote {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .author-info h4 {
        font-size: 0.9rem;
    }
    
    .author-info p {
        font-size: 0.75rem;
    }
    
    .verified-badge {
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
    }
    
    .rating {
        font-size: 0.95rem;
        margin-top: 0.75rem;
    }
    
    /* Trust Section - Very small screens */
    .trust-section {
        padding: 2rem 0;
    }
    
    .trust-section h2 {
        padding: 0;
    }
    
    .trust-cards {
        gap: 1rem;
        margin: 0 0.5rem;
    }
    
    .trust-card {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .trust-card h3 {
        font-size: 0.95rem;
    }
    
    .trust-card p {
        font-size: 0.85rem;
    }
    
    /* Stats Section - Very small screens */
    .stats {
        padding: 2rem 0;
    }
    
    .stats h2 {
        padding: 0;
    }
    
    .stats-grid {
        gap: 1rem;
        margin: 0 0.5rem;
    }
    
    .stat-item {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .stat-number {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
    
    /* How It Works - Very small screens */
    .how-it-works {
        padding: 2rem 0;
    }
    
    .how-it-works h2 {
        padding: 0;
    }
    
    .steps {
        gap: 1.25rem;
        margin: 0 0.5rem;
    }
    
    .step {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .step h3 {
        font-size: 0.95rem;
    }
    
    .step p {
        font-size: 0.85rem;
    }
    
    .trust-boosters {
        margin: 1.25rem 0.5rem;
    }
    
    .trust-booster-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .trust-badges-mini {
        gap: 0.75rem;
    }
    
    .trust-badge-mini {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .how-it-works .cta-button {
        margin: 1.25rem 0.5rem 0;
        width: calc(100% - 1rem);
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        min-height: 42px;
        border-radius: 10px;
    }
    
    /* Pricing Section - Very small screens */
    .pricing {
        padding: 2rem 0;
    }
    
    .pricing h2 {
        padding: 0;
    }
    
    .ad-tier-cards {
        gap: 1rem;
        margin: 0 0.5rem;
    }
    
    .card {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .card h3 {
        font-size: 0.95rem;
    }
    
    .budget {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .card small {
        font-size: 0.75rem;
    }
    
    /* Limited Offer - Very small screens */
    .limited-offer {
        padding: 2rem 0;
    }
    
    .limited-offer .monogram-watermark {
        font-size: 8rem;
    }
    
    .limited-offer h2 {
        padding: 0;
    }
    
    .limited-offer .subtext {
        font-size: 0.9rem;
        padding: 0;
    }
    
    .content-wrapper {
        gap: 1.25rem;
        margin: 0 0.5rem;
    }
    
    .limited-offer .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        min-height: 42px;
        border-radius: 10px;
        margin-bottom: 1rem;
    }
    
    .trust-list {
        gap: 0.75rem;
    }
    
    .trust-item {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .scandinavian-guarantee {
        margin: 1.25rem 0.5rem;
        padding: 0.75rem;
        font-size: 0.75rem;
    }
    
    .success-metric {
        margin: 1rem 0.5rem 0;
        font-size: 0.75rem;
    }
    
    /* About + Contact - Very small screens */
    .about-contact {
        padding: 2rem 0;
    }
    
    .about-contact .monogram-watermark {
        font-size: 8rem;
    }
    
    .about-wrapper {
        gap: 1.25rem;
        margin: 0 0.5rem;
    }
    
    .about-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .founder-quote {
        padding: 1rem;
        border-radius: 10px;
        margin: 1.25rem 0;
    }
    
    .founder-quote p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .founder-quote cite {
        font-size: 0.75rem;
    }
    
    .contact-box {
        padding: 1rem;
        border-radius: 10px;
        margin: 1.25rem 0;
    }
    
    .contact-box h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-list li {
        padding: 0.5rem 0;
        font-size: 0.85rem;
    }
    
    .sweden-badge {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
        border-radius: 18px;
    }
    
    .about-image {
        height: 180px;
        border-radius: 10px;
    }
    
    .image-overlay {
        bottom: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
    }
    
    .image-overlay .trust-badge {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
        border-radius: 18px;
    }
    
    /* Footer - Very small screens */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer::before {
        font-size: 120px;
    }
    
    .footer-content {
        gap: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-column {
        gap: 0.75rem;
    }
    
    .footer-logo {
        height: 30px;
    }
    
    .tagline {
        font-size: 0.85rem;
    }
    
    .footer-links {
        gap: 0.5rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
        padding: 0.25rem 0;
    }
    
    .contact-info li {
        font-size: 0.8rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        padding: 0.5rem;
        border-radius: 5px;
    }
    
    .footer-bottom {
        padding-top: 1rem;
    }
    
    .copyright {
        font-size: 0.75rem;
    }
    
    /* Sticky CTA - Very small screens */
    .sticky-cta {
        bottom: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
    }
    
    .sticky-cta .cta-button {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        min-height: 42px;
        border-radius: 8px;
    }
}

@media (max-width: 360px) {
    /* Global section mobile optimization for extremely small screens */
    section {
        padding: 1.5rem 0;
    }
    
    section .container {
        padding: 0 0.375rem;
    }
    
    section h2 {
        font-size: 1.375rem;
        line-height: 1.4;
        margin-bottom: 0.875rem;
    }
    
    section h3 {
        font-size: 0.95rem;
        margin-bottom: 0.625rem;
    }
    
    section p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.875rem;
    }
    
    /* Hero Section - Extremely small screens */
    .hero {
        padding: 3rem 0 1.5rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero .subheadline {
        font-size: 0.95rem;
    }
    
    .hero .cta-button {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
        min-height: 40px;
        border-radius: 8px;
    }
    
    /* Why Trust Us - Extremely small screens */
    .why-trust {
        padding: 1.5rem 0;
    }
    
    .trust-grid {
        gap: 0.875rem;
        margin: 0 0.375rem;
    }
    
    .trust-item {
        padding: 0.875rem;
        border-radius: 8px;
    }
    
    .trust-item .icon {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .trust-item h3 {
        font-size: 0.9rem;
    }
    
    /* Testimonials - Extremely small screens */
    .testimonials {
        padding: 1.5rem 0;
    }
    
    .testimonials .monogram-watermark {
        font-size: 6rem;
    }
    
    .testimonials-grid {
        gap: 0.875rem;
        margin: 0 0.375rem;
    }
    
    .testimonial-content {
        padding: 0.875rem;
    }
    
    .testimonial-content .quote {
        font-size: 0.85rem;
        margin-bottom: 0.875rem;
    }
    
    .author-info h4 {
        font-size: 0.85rem;
    }
    
    .author-info p {
        font-size: 0.7rem;
    }
    
    .verified-badge {
        padding: 0.25rem 0.375rem;
        font-size: 0.6rem;
    }
    
    .rating {
        font-size: 0.9rem;
        margin-top: 0.625rem;
    }
    
    /* Trust Section - Extremely small screens */
    .trust-section {
        padding: 1.5rem 0;
    }
    
    .trust-cards {
        gap: 0.875rem;
        margin: 0 0.375rem;
    }
    
    .trust-card {
        padding: 0.875rem;
        border-radius: 8px;
    }
    
    .trust-card h3 {
        font-size: 0.9rem;
    }
    
    .trust-card p {
        font-size: 0.8rem;
    }
    
    /* Stats Section - Extremely small screens */
    .stats {
        padding: 1.5rem 0;
    }
    
    .stats-grid {
        gap: 0.875rem;
        margin: 0 0.375rem;
    }
    
    .stat-item {
        padding: 0.875rem;
        border-radius: 8px;
    }
    
    .stat-number {
        font-size: 1.75rem;
        margin-bottom: 0.375rem;
    }
    
    .stat-item p {
        font-size: 0.85rem;
    }
    
    /* How It Works - Extremely small screens */
    .how-it-works {
        padding: 1.5rem 0;
    }
    
    .steps {
        gap: 1rem;
        margin: 0 0.375rem;
    }
    
    .step {
        padding: 0.875rem;
        border-radius: 8px;
    }
    
    .step h3 {
        font-size: 0.9rem;
    }
    
    .step p {
        font-size: 0.8rem;
    }
    
    .trust-boosters {
        margin: 1rem 0.375rem;
    }
    
    .trust-booster-text {
        font-size: 0.85rem;
        margin-bottom: 0.875rem;
    }
    
    .trust-badges-mini {
        gap: 0.625rem;
    }
    
    .trust-badge-mini {
        padding: 0.375rem 0.625rem;
        font-size: 0.7rem;
    }
    
    .how-it-works .cta-button {
        margin: 1rem 0.375rem 0;
        width: calc(100% - 0.75rem);
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
        min-height: 40px;
        border-radius: 8px;
    }
    
    /* Pricing Section - Extremely small screens */
    .pricing {
        padding: 1.5rem 0;
    }
    
    .ad-tier-cards {
        gap: 0.875rem;
        margin: 0 0.375rem;
    }
    
    .card {
        padding: 0.875rem;
        border-radius: 8px;
    }
    
    .card h3 {
        font-size: 0.9rem;
    }
    
    .budget {
        font-size: 0.95rem;
        margin-bottom: 0.375rem;
    }
    
    .card small {
        font-size: 0.7rem;
    }
    
    /* Limited Offer - Extremely small screens */
    .limited-offer {
        padding: 1.5rem 0;
    }
    
    .limited-offer .monogram-watermark {
        font-size: 6rem;
    }
    
    .content-wrapper {
        gap: 1rem;
        margin: 0 0.375rem;
    }
    
    .limited-offer .cta-button {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
        min-height: 40px;
        border-radius: 8px;
        margin-bottom: 0.875rem;
    }
    
    .trust-list {
        gap: 0.625rem;
    }
    
    .trust-item {
        padding: 0.375rem 0.625rem;
        font-size: 0.7rem;
    }
    
    .scandinavian-guarantee {
        margin: 1rem 0.375rem;
        padding: 0.625rem;
        font-size: 0.7rem;
    }
    
    .success-metric {
        margin: 0.875rem 0.375rem 0;
        font-size: 0.7rem;
    }
    
    /* About + Contact - Extremely small screens */
    .about-contact {
        padding: 1.5rem 0;
    }
    
    .about-contact .monogram-watermark {
        font-size: 6rem;
    }
    
    .about-wrapper {
        gap: 1rem;
        margin: 0 0.375rem;
    }
    
    .about-content h2 {
        font-size: 1.375rem;
        margin-bottom: 0.875rem;
    }
    
    .description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .founder-quote {
        padding: 0.875rem;
        border-radius: 8px;
        margin: 1rem 0;
    }
    
    .founder-quote p {
        font-size: 0.85rem;
        margin-bottom: 0.625rem;
    }
    
    .founder-quote cite {
        font-size: 0.7rem;
    }
    
    .contact-box {
        padding: 0.875rem;
        border-radius: 8px;
        margin: 1rem 0;
    }
    
    .contact-box h3 {
        font-size: 0.95rem;
        margin-bottom: 0.875rem;
    }
    
    .contact-list li {
        padding: 0.375rem 0;
        font-size: 0.8rem;
    }
    
    .sweden-badge {
        padding: 0.375rem 0.75rem;
        font-size: 0.7rem;
        border-radius: 16px;
    }
    
    .about-image {
        height: 150px;
        border-radius: 8px;
    }
    
    .image-overlay {
        bottom: 0.375rem;
        left: 0.375rem;
        right: 0.375rem;
    }
    
    .image-overlay .trust-badge {
        padding: 0.375rem 0.75rem;
        font-size: 0.7rem;
        border-radius: 16px;
    }
    
    /* Footer - Extremely small screens */
    .footer {
        padding: 1.5rem 0 0.875rem;
    }
    
    .footer::before {
        font-size: 100px;
    }
    
    .footer-content {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-column {
        gap: 0.625rem;
    }
    
    .footer-logo {
        height: 28px;
    }
    
    .tagline {
        font-size: 0.8rem;
    }
    
    .footer-links {
        gap: 0.375rem;
    }
    
    .footer-links a {
        font-size: 0.75rem;
        padding: 0.25rem 0;
    }
    
    .contact-info li {
        font-size: 0.75rem;
    }
    
    .social-links {
        gap: 0.625rem;
    }
    
    .social-link {
        padding: 0.375rem;
        border-radius: 4px;
    }
    
    .footer-bottom {
        padding-top: 0.875rem;
    }
    
    .copyright {
        font-size: 0.7rem;
    }
    
    /* Sticky CTA - Extremely small screens */
    .sticky-cta {
        bottom: 0.375rem;
        left: 0.375rem;
        right: 0.375rem;
    }
    
    .sticky-cta .cta-button {
        padding: 0.625rem 0.875rem;
        font-size: 0.85rem;
        min-height: 40px;
        border-radius: 6px;
    }
}