/* Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* CSS Custom Properties - Design System */
:root {
    /* Colors */
    --background: 0 0% 100%;
    --foreground: 215 25% 27%;

    --card: 0 0% 100%;
    --card-foreground: 215 25% 27%;

    --popover: 0 0% 100%;
    --popover-foreground: 215 25% 27%;

    --primary: 151 91% 31%;
    --primary-foreground: 0 0% 98%;
    --primary-soft: 151 91% 41%;

    --secondary: 215 20% 95%;
    --secondary-foreground: 215 25% 27%;

    --muted: 215 20% 95%;
    --muted-foreground: 215 16% 47%;

    --accent: 42 100% 47%;
    --accent-foreground: 0 0% 98%;
    --accent-soft: 42 100% 57%;

    --trust: 151 91% 31%;
    --trust-foreground: 0 0% 98%;

    --destructive: 0 84% 60%;
    --destructive-foreground: 0 0% 98%;

    --border: 215 20% 91%;
    --input: 215 20% 91%;
    --ring: 215 100% 34%;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-soft)));
    --gradient-accent: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--accent-soft)));
    --gradient-trust: linear-gradient(135deg, hsl(var(--trust)), hsl(var(--primary)));
    --gradient-hero: linear-gradient(135deg, hsl(151 91% 31% / 0.92), hsl(151 91% 31% / 0.92));

    /* Shadows */
    --shadow-soft: 0 4px 20px -2px hsl(var(--primary) / 0.1);
    --shadow-medium: 0 8px 30px -4px hsl(var(--primary) / 0.15);
    --shadow-strong: 0 20px 40px -8px hsl(var(--primary) / 0.2);

    --radius: 1.5rem;

    /* Layout */
    --container-max-width: 1200px;
    --container-padding: 1rem;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: "League Spartan", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: hsl(var(--primary));
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: hsl(var(--primary-soft));
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Cards */
.card {
    background-color: hsl(var(--card));
    color: hsl(var(--card-foreground));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.card-content {
    padding: 1.5rem;
}

.card-header {
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    padding: 1rem 1.5rem;
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    min-height: 4.5rem;
}

.card-text {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

.card-icon {
    background: var(--gradient-trust);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    transition: transform 0.3s ease;
}

.card-icon svg {
    display: block;
}

.card-hover:hover .card-icon {
    transform: scale(1.1);
}

/* Hide icons in services section */
#services .card-icon {
    display: none;
}

/* Remove min-height from h3 in why-katka, services and process sections */
#why-katka .card-title,
#services .card-title,
#process .card-title {
    min-height: auto;
}

/* Service Cards - Horizontal Layout */
.service-card {
    background-color: hsl(var(--card));
    color: hsl(var(--card-foreground));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card .card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.5rem;
}

.service-card .btn {
    margin-top: auto;
}

.service-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
}

.service-card-text {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

.service-card-detail {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

/* Two Column Block (Reusable) */
.two-col-block {
    background-color: hsl(var(--background));
    width: 100vw !important;
    position: relative;
    left: 50% !important;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 500px;
    max-width: 100%;
    margin: 0 auto;
}

/* Yellow variant of two-col-block */
.two-col-yellow {
    background: linear-gradient(135deg, #fbb91f, #f5b000) !important;
}

.two-col-yellow .two-col-text {
    color: black;
}

/* Yellow background with black text variant */
.two-col-highlight {
    background: #fbb91f !important;
}

.two-col-highlight .two-col-text {
    color: #000000 !important;
}

/* Reverse column order - image left, content right */
.two-col-reverse {
    direction: rtl;
}

.two-col-reverse>* {
    direction: ltr;
}

.two-col-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 4rem;
    align-items: flex-start;
    justify-content: center;
}

.two-col-text {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
    color: hsl(var(--foreground));
}

.personal-intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.two-col-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.two-col-image picture,
.two-col-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.two-col-image picture {
    display: flex;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
    color: hsl(var(--primary-foreground));
    transform: scale(1.02);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: var(--gradient-accent);
    color: #000000;
}

.btn-secondary:hover {
    color: #000000;
    transform: scale(1.02);
    box-shadow: var(--shadow-medium);
}

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

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

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.btn .icon {
    width: 1rem;
    height: 1rem;
}

/* Icons */
.icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

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

.section-alt {
    background-color: hsl(var(--secondary) / 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.section-subtitle {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.6;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-100%);
}

.header.scrolled {
    background-color: hsl(var(--background) / 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
    border-bottom: 1px solid hsl(var(--border));
    opacity: 1;
    transform: translateY(0);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

.brand-subtitle {
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: hsl(var(--foreground));
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: hsl(var(--primary));
}

.header-cta {
    display: flex;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: hsl(var(--foreground));
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 1rem 0;
    background-color: hsl(var(--background));
    border-top: 1px solid hsl(var(--border));
}

.nav-mobile-link {
    padding: 0.75rem 0;
    color: hsl(var(--foreground));
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('../assets/IMG_4709_1759299596903.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: hsl(151 91% 31% / 0.8);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    text-align: center;
    width: 100%;
}

.trust-indicators {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0.9;
    z-index: 20;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: white;
}

.icon-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    min-width: 20px;
    text-align: center;
}

.hero-title {
    font-size: 66px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    color: white;
    text-align: center;
}

.hero-title .accent {
    color: #fbb91f;
}

.hero-subtitle {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-subtitle .accent {
    color: #fbb91f;
}

.hero-cta {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.hero-cta .btn {
    width: 250px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    animation: bounce 2s infinite;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid white;
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background-color: white;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

/* Personal Intro Section */
.personal-intro {
    position: relative;
    height: 37.5rem;
    overflow: hidden;
}

.personal-intro-background {
    position: absolute;
    inset: 0;
    background-image: url('../assets/IMG_4041_1752736219606.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.personal-intro-overlay {
    position: absolute;
    inset: 0;
    background-color: hsl(0 0% 0% / 0.4);
}

.personal-intro-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.personal-intro-text {
    margin-left: auto;
    text-align: right;
    color: white;
}

.personal-intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.personal-intro-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Service Cards */
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-features {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.service-features li {
    padding: 0.25rem 0;
    color: hsl(var(--muted-foreground));
    font-size: 1rem;
}

.service-features li:before {
    content: "✓";
    color: hsl(var(--primary));
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Benefits Section */
.benefit-icon {
    background: var(--gradient-trust);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

.benefit-icon picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.benefit-icon img {
    display: block;
}

.benefit-content {
    flex: 1;
    text-align: center;
}

.card-hover:hover .benefit-icon {
    transform: scale(1.1);
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-step {
    position: relative;
}

.process-connection {
    display: none;
    position: absolute;
    top: 4rem;
    left: 100%;
    width: 2rem;
    height: 2px;
    background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--primary) / 0.3));
    z-index: 0;
}

.process-card {
    position: relative;
    z-index: 10;
    text-align: center;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: scale(1.05);
}

.process-number {
    display: none;
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    background: var(--gradient-accent);
    color: hsl(var(--accent-foreground));
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid white;
}

.process-icon {
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.process-steps-mobile {
    display: none;
}

.process-timeline {
    position: relative;
    padding-left: 2rem;
}

.process-timeline::before {
    display: none;
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-marker {
    display: none;
    position: absolute;
    left: -2rem;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--gradient-accent);
    color: hsl(var(--accent-foreground));
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid white;
}

.timeline-content {
    background: hsl(var(--card));
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.timeline-icon {
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: hsl(var(--muted-foreground));
    margin: 0;
    font-size: 1rem;
}

/* Pricing */
.pricing-table {
    max-width: 64rem;
    margin: 0 auto;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-title {
    font-size: 1.25rem;
    margin: 0;
}

.pricing-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: hsl(var(--primary-foreground));
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: background-color 0.2s ease;
}

.pricing-toggle:hover {
    background-color: hsl(255 255 255 / 0.2);
}

.pricing-toggle .chevron-up {
    display: none;
}

.pricing-toggle.expanded .chevron-down {
    display: none;
}

.pricing-toggle.expanded .chevron-up {
    display: block;
}

.pricing-content {
    overflow: hidden;
    transition: all 0.3s ease;
    max-height: 0;
}

.pricing-content.expanded {
    max-height: 1000px;
}

.pricing-table-content {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.pricing-table-content th {
    background-color: hsl(var(--secondary));
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid hsl(var(--border));
}

.pricing-table-content td {
    padding: 1rem;
    border-bottom: 1px solid hsl(var(--border));
}

.property-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.express-price {
    color: hsl(var(--accent));
    font-weight: 600;
}

.pricing-notes {
    background-color: hsl(var(--secondary) / 0.5);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-top: 1.5rem;
}

.pricing-notes h4 {
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.pricing-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-notes li {
    padding: 0.25rem 0;
    color: hsl(var(--muted-foreground));
    font-size: 1rem;
}

.pricing-notes li:before {
    content: "•";
    color: hsl(var(--primary));
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Testimonials */
.testimonials-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonials-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonials-carousel .testimonial-card {
    flex: 0 0 350px;
    min-width: 350px;
    max-width: 350px;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.testimonials-carousel .testimonial-card .card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.carousel-nav {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid hsl(var(--primary));
    background-color: hsl(var(--background));
    color: hsl(var(--primary));
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    transform: scale(1.1);
}

.carousel-nav:active {
    transform: scale(0.95);
}

.testimonial-card .card-content {
    position: relative;
}

.quote-icon {
    color: hsl(var(--primary) / 0.2);
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars svg {
    color: hsl(var(--accent));
    width: 1rem;
    height: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    position: relative;
}

.testimonial-text:hover {
    opacity: 0.8;
}

.testimonial-text.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.testimonial-author {
    border-top: 1px solid hsl(var(--border));
    padding-top: 1rem;
    margin-top: auto;
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-type {
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
}

/* Trust Stats */
.trust-stats {
    margin-top: 4rem;
}

.trust-stats-section {
    background: var(--gradient-primary);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 3rem 0;
}

.trust-stats-card {
    color: hsl(var(--primary-foreground));
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 2rem;
}

#price-guarantees .trust-stats-card {
    color: #000000;
}

#price-guarantees .stat-number,
#price-guarantees .stat-label,
#price-guarantees .stat-icon {
    color: #000000;
}

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

.stat-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.stat-label {
    color: hsl(var(--primary-foreground) / 0.8);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 4rem 0;
}

.cta-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.btn-cta {
    background-color: #fbb91f;
    color: hsl(var(--primary));
    font-weight: 600;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    border: none;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #f5b000;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(251, 185, 31, 0.3);
}

.reference-note {
    text-align: center;
    margin-top: 2rem;
}

.reference-note p {
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
    font-style: italic;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    max-width: 100%;
    margin: 0 auto;
}

.about-photo {
    text-align: center;
}

.photo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.about-image {
    width: 20rem;
    height: 24rem;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
}

.photo-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--gradient-accent);
    color: hsl(var(--accent-foreground));
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-medium);
}

.personal-info .name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.personal-info .title {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

.personal-info .phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: hsl(var(--primary));
}

.about-story {
    flex: 1;
}

.achievements {
    margin-bottom: 2rem;
}

.achievement {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.achievement-icon {
    background: var(--gradient-trust);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.achievement-content h4 {
    margin-bottom: 0.5rem;
}

.achievement-content p {
    color: hsl(var(--muted-foreground));
    font-size: 1rem;
    margin: 0;
}

.story-text h3 {
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.story-text p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-cta {
    margin-top: 2rem;
}

/* FAQ */
.faq-list {
    max-width: 64rem;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-card {
    box-shadow: var(--shadow-soft);
    border: 0;
    transition: all 0.3s ease;
}

.faq-card:hover {
    box-shadow: var(--shadow-medium);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: hsl(var(--muted) / 0.3);
}

.faq-question h3 {
    font-weight: 600;
    color: hsl(var(--foreground));
    margin: 0;
    padding-right: 1rem;
}

.faq-icon {
    color: hsl(var(--primary));
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    overflow: hidden;
}

.faq-answer.open {
    display: block;
}

.faq-content {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid hsl(var(--border));
    padding-top: 1rem;
}

.faq-content p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    margin: 0;
}

.faq-help {
    margin-top: 4rem;
}

.faq-help-card {
    background-color: hsl(var(--muted) / 0.5);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.faq-help-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.faq-help-card p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
}

.faq-help-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 80rem;
    margin: 0 auto;
}

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

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: hsl(var(--card));
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.contact-icon {
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-value {
    font-weight: 600;
    color: hsl(var(--primary));
    display: block;
    margin-bottom: 0.25rem;
}

.contact-subtitle {
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
    margin: 0;
}

.contact-form-container {
    display: flex;
    flex-direction: column;
}

.contact-form-card {
    background-color: hsl(var(--card));
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.contact-form-card h3 {
    margin-bottom: 0.5rem;
}

.contact-form-card>p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
}

/* Forms */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.75rem;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    transition: border-color 0.2s ease;
    font-size: 1rem;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: hsl(var(--destructive));
}

.form-error {
    color: hsl(var(--destructive));
    font-size: 1rem;
    margin-top: 0.25rem;
    min-height: 1.25rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox {
    width: 1rem;
    height: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.checkbox-label {
    font-size: 1rem;
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-label .link {
    color: hsl(var(--primary));
    text-decoration: underline;
}

.form-submit {
    margin-top: 1rem;
    position: relative;
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: var(--radius);
    margin-top: 1rem;
    font-size: 1rem;
}

.form-success {
    background-color: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    border: 1px solid hsl(var(--primary) / 0.2);
}

.form-error-message {
    background-color: hsl(var(--destructive) / 0.1);
    color: hsl(var(--destructive));
    border: 1px solid hsl(var(--destructive) / 0.2);
}

/* Footer */
.footer {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-subtitle {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-description {
    color: hsl(var(--primary-foreground) / 0.8);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.footer-contact-item a {
    color: hsl(var(--primary-foreground));
    transition: color 0.2s ease;
}

.footer-contact-item a:hover {
    color: hsl(var(--accent));
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: hsl(var(--primary-foreground));
    transition: color 0.2s ease;
    font-size: 1rem;
}

.footer-link:hover {
    color: hsl(var(--accent));
}

.footer-text {
    color: hsl(var(--primary-foreground) / 0.8);
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid hsl(var(--primary-foreground) / 0.2);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: hsl(var(--primary-foreground) / 0.8);
    font-size: 1rem;
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-link-small {
    color: hsl(var(--primary-foreground) / 0.8);
    font-size: 1rem;
    transition: color 0.2s ease;
}

.footer-link-small:hover {
    color: hsl(var(--primary-foreground));
}

.footer-separator {
    color: hsl(var(--primary-foreground) / 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .process-connection {
        display: none;
    }

    .hero-title {
        font-size: 4rem;
        max-width: none;
    }

    .personal-intro-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: none;
    }

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

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

@media (max-width: 768px) {
    .trust-indicators {
        flex-direction: row;
        gap: 0.5rem;
        width: 95%;
        max-width: 100%;
    }

    .trust-item {
        font-size: 1rem;
        gap: 0.25rem;
        flex: 1;
        justify-content: center;
    }

    .icon-number {
        font-size: 1rem;
        min-width: 16px;
    }

    .nav-desktop {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

    .mobile-menu-btn .close-icon {
        display: none;
    }

    .mobile-menu-btn.open .menu-icon {
        display: none;
    }

    .mobile-menu-btn.open .close-icon {
        display: block;
    }

    .brand-subtitle {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .personal-intro {
        height: 25rem;
    }

    .personal-intro-title {
        font-size: 2rem;
    }

    .personal-intro-subtitle {
        font-size: 1rem;
    }

    .personal-intro-text {
        text-align: center;
        margin: 0 auto;
    }

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

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

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

    .grid-4 {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    /* Testimonials carousel mobile */
    .testimonials-carousel-wrapper {
        gap: 0.5rem;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-nav svg {
        width: 20px;
        height: 20px;
    }

    .testimonials-carousel .testimonial-card {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
        height: 420px;
    }

    .testimonial-modal {
        padding: 1rem;
    }

    .testimonial-modal-content {
        padding: 1.5rem;
    }

    .testimonial-modal-text {
        font-size: 1rem;
    }

    .two-col-grid {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: 500px;
        position: relative;
    }

    .two-col-content {
        padding: 2rem 1.5rem !important;
        position: absolute;
        top: 0 !important;
        left: 0;
        right: 0;
        bottom: 0 !important;
        z-index: 10;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end;
        background-color: rgba(251, 185, 31, 0.7);
    }

    .two-col-text {
        font-size: 1.5rem !important;
        color: #000000 !important;
        text-align: left;
    }

    .two-col-image {
        min-height: 500px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

    .process-steps {
        display: none;
    }

    .process-steps-mobile {
        display: block;
    }

    .pricing-table-content {
        font-size: 1rem;
    }

    .pricing-table-content th,
    .pricing-table-content td {
        padding: 0.5rem;
    }

    .about-image {
        width: 16rem;
        height: 20rem;
    }

    .faq-help-buttons {
        flex-direction: column;
    }

    .stat-number {
        font-size: 2rem;
    }

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

@media (max-width: 480px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .trust-indicators {
        display: none;
    }

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

    .personal-intro {
        height: 20rem;
    }

    .personal-intro-title {
        font-size: 1.75rem;
    }

    .personal-intro-subtitle {
        font-size: 1rem;
    }

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

    .trust-stats-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pricing-table-content {
        font-size: 1rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-content {
        padding: 0 1rem 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Focus styles */
*:focus {
    outline: 2px solid hsl(var(--primary));
    outline-offset: 2px;
}

/* Testimonial Modal */
.testimonial-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

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

.testimonial-modal-content {
    background-color: hsl(var(--card));
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.testimonial-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: hsl(var(--muted-foreground));
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.testimonial-modal-close:hover {
    background-color: hsl(var(--muted));
    color: hsl(var(--foreground));
}

.testimonial-modal-text {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-modal-author {
    border-top: 1px solid hsl(var(--border));
    padding-top: 1rem;
    font-weight: 600;
}

/* Privacy Policy Modal */
.privacy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

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

.privacy-modal-content {
    background-color: hsl(var(--card));
    border-radius: 1.5rem;
    padding: 0;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.privacy-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: hsl(var(--card));
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: hsl(var(--muted-foreground));
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    z-index: 10;
}

.privacy-modal-close:hover {
    background-color: hsl(var(--muted));
    color: hsl(var(--foreground));
}

.privacy-modal-body {
    padding: 3rem;
    overflow-y: auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .privacy-modal {
        padding: 0;
    }

    .privacy-modal-content {
        max-width: 100%;
        max-height: 100%;
        border-radius: 0;
    }

    .privacy-modal-close {
        top: 1rem;
        right: 1rem;
    }

    .privacy-modal-body {
        padding: 2rem 1.5rem;
    }
}

/* Print styles */
@media print {

    .header,
    .footer,
    .hero,
    .personal-intro {
        display: none;
    }

    .section {
        padding: 1rem 0;
    }

    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
}