:root {
    --primary-color: #0f172a; /* Deep slate - more sophisticated */
    --primary-light: #1e293b; /* Slate 800 */
    --secondary-color: #64748b; /* Slate 500 for subtle accents */
    --accent-color: #f97316; /* Vibrant orange - more distinctive than amber */
    --accent-hover: #ea580c; /* Darker orange */
    --text-color: #334155; /* Slate 700 */
    --heading-color: #020617; /* Even darker for headings */
    --bg-color: #f8fafc; /* Slate 50 */
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;
    --radius-xl: 1.75rem;
    --font-sans: 'Open Sans', system-ui, sans-serif;
    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-display: 'Space Grotesk', 'Montserrat Alternates', sans-serif;
}

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

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--heading-color);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.site-header .logo h1,
.section-title,
.cta-info-header h3,
.footer-logo h1 {
    font-family: var(--font-display);
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Add subtle decorative elements */
.container::before,
.container::after {
    content: '';
    position: fixed;
    pointer-events: none;
    z-index: -1;
}

.container::before {
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at center, var(--accent-color) 0%, transparent 70%);
    opacity: 0.05;
    transform: rotate(15deg);
}

.container::after {
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at center, var(--primary-light) 0%, transparent 70%);
    opacity: 0.03;
    transform: rotate(-10deg);
}

/* Typography Utility */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-family: var(--font-display);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--white);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.6);
    color: var(--white);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.btn-block {
    width: 100%;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background-color: transparent;
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

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

.logo-text {
    font-size: 1.8rem;
    color: var(--white);
    margin: 0;
    transition: var(--transition);
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.site-header.scrolled .logo-text {
    color: var(--primary-color);
    text-shadow: none;
}

.logo-accent {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.3rem;
}

.tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 300;
    transition: var(--transition);
}

.site-header.scrolled .tagline {
    color: var(--text-color);
}

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

.site-nav a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    display: inline-block;
    transition: var(--transition);
}

.site-header.scrolled .site-nav a {
    color: var(--heading-color);
}

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

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

.site-nav a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Add ripple effect on click */
.site-nav a {
    overflow: hidden;
}

.site-nav a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.site-nav a:active::before {
    width: 200px;
    height: 200px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, #020617 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(249, 115, 22, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle at 70% 70%, rgba(30, 64, 175, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeUp 0.8s ease forwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 500px;
    animation: fadeUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    animation: fadeUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

/* Hero Illustration (CSS Art) */
.hero-illustration {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

.doc-stamp-illustration {
    position: relative;
    width: 300px;
    height: 400px;
}

.document {
    width: 280px;
    height: 380px;
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1), var(--shadow-2xl), 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 2rem;
    transform: rotate(-3deg);
    transition: var(--transition);
}

.hero-illustration:hover .document {
    transform: rotate(0deg) scale(1.02);
}

.doc-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.doc-lines {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.doc-lines .line {
    height: 12px;
    background-color: var(--gray-200);
    border-radius: 6px;
}

.doc-lines .line:nth-child(1) { width: 100%; }
.doc-lines .line:nth-child(2) { width: 85%; }
.doc-lines .line:nth-child(3) { width: 60%; }

.stamp {
    position: absolute;
    bottom: 40px;
    right: -20px;
    width: 140px;
    height: 140px;
    transform: rotate(-15deg);
    animation: stampIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1s forwards;
    opacity: 0;
    scale: 2;
}

.stamp-circle {
    width: 100%;
    height: 100%;
    border: 6px solid #ef4444; /* Red stamp */
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 10px;
}

.stamp-circle::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px dashed #ef4444;
    border-radius: 50%;
}

.stamp-text {
    color: #ef4444;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
    font-family: 'Nunito', sans-serif;
}

.stamp-date {
    color: #ef4444;
    font-weight: 800;
    font-size: 1.4rem;
    margin-top: 5px;
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes stampIn {
    to { opacity: 0.9; scale: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes floatSlow {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Common Section Padding */
section {
    padding: 6rem 0;
}

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

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
    transform: translateY(-50%);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    padding: 2rem;
    background: var(--bg-color);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    z-index: 2;
    backdrop-filter: blur(5px);
}

.step:hover {
    transform: translateY(-12px) rotate(-1deg);
    box-shadow: var(--shadow-xl);
    background: var(--white);
    border-color: var(--primary-light);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    border: 3px solid var(--white);
    transition: var(--transition);
}

.step:hover .step-number {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.4);
}

.step {
    text-align: center;
    position: relative;
    padding: 2rem;
    background: var(--bg-color);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    background: var(--white);
    border-color: var(--primary-light);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 1.5rem auto;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(30deg);
    transition: transform 0.6s;
}

.step:hover .step-icon {
    background: rgba(59, 130, 246, 0.1);
}

.step:hover .step-icon::before {
    transform: rotate(0deg);
}

.upload-icon .arrow-down {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid var(--accent-color);
    margin: 5px auto 0;
    position: relative;
    animation: bounce 2s infinite;
}

.upload-icon:hover .arrow-down {
    animation: bounce 1.5s infinite;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.step-description {
    color: var(--text-color);
    font-size: 1rem;
}

/* Step Icons CSS Art */
.upload-icon .cloud {
    width: 40px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 20px;
    position: relative;
}
.upload-icon .cloud::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    top: -10px;
    left: 5px;
}
.upload-icon .cloud::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background: var(--primary-color);
    border-radius: 50%;
    top: -15px;
    right: 5px;
}
.upload-icon .arrow-down {
    width: 0; 
    height: 0; 
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid var(--accent-color);
    margin: 5px auto 0;
    position: relative;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.gears-icon {
    position: relative;
    width: 40px;
    height: 40px;
}
.gears-icon .gear {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    border: 4px dashed var(--bg-color);
    animation: spin 4s linear infinite;
}
.gears-icon .gear:nth-child(1) { top: 0; left: 0; }
.gears-icon .gear:nth-child(2) { bottom: 0; right: 0; animation-direction: reverse; width: 20px; height: 20px; }
@keyframes spin { 100% { transform: rotate(360deg); } }

.delivery-icon {
    position: relative;
}
.delivery-icon .box {
    width: 30px;
    height: 25px;
    background: var(--primary-color);
    position: relative;
    border-radius: 2px;
}
.delivery-icon .box-lid {
    position: absolute;
    top: -5px;
    left: -2px;
    width: 34px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 2px;
}
.delivery-icon .check-mark {
    position: absolute;
    bottom: -5px;
    right: -10px;
    width: 15px;
    height: 25px;
    border-right: 4px solid #10b981;
    border-bottom: 4px solid #10b981;
    transform: rotate(45deg);
}

/* Services Section */
.services {
    background-color: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
}

.services-grid::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at center, var(--accent-color) 0%, transparent 70%);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 0;
}

.service-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--primary-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
    border: 1px solid var(--gray-100);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
    border-top-color: var(--accent-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 3;
    border: 2px solid rgba(59, 130, 246, 0.2);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-light);
    transform: scale(1.1) rotate(5deg);
    border-color: var(--white);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.25);
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--primary-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.service-description {
    color: var(--text-color);
}

/* Simple CSS Art for Services */
.document-icon .doc {
    width: 30px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 6px;
}
.document-icon .text-line { height: 2px; background: var(--primary-color); border-radius: 1px; }
.document-icon .text-line:last-child { width: 60%; }

.building-icon {
    width: 30px;
    height: 40px;
    position: relative;
    border: 2px solid var(--primary-color);
    border-bottom: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 2px;
    padding: 4px;
}
.building-icon::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -4px;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 10px solid var(--primary-color);
}
.building-icon > div { background: var(--primary-light); opacity: 0.5; }

.legal-icon {
    width: 40px;
    height: 40px;
    position: relative;
}
.scale-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 30px;
    background: var(--primary-color);
}
.scale-base::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -10px;
    width: 30px;
    height: 4px;
    background: var(--primary-color);
}
.scale-base::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -15px;
    width: 40px;
    height: 4px;
    background: var(--primary-color);
}

/* Trust Section */
.trust {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5rem 0;
}

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

.trust .section-title::after {
    background: var(--accent-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
}

.trust-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    transform: translateY(-50%);
}

.trust-grid::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, rgba(249,115,22,0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    transform: translateY(-50%);
}

.trust-item {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
}

.trust-item:hover {
    transform: translateY(-8px) rotate(1deg);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
}

.trust-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    border: 2px solid rgba(255,255,255,0.2);
}

.trust-item:hover .trust-icon {
    background: var(--white);
    transform: scale(1.1) rotate(-5deg);
}

.trust-svg {
    stroke: var(--accent-color);
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(249, 115, 22, 0.3));
}

.trust-item:hover .trust-svg {
    stroke: var(--primary-color);
    transform: scale(1.15);
}

.trust-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.trust-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* FAQ Section */
.faq {
    background-color: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem;
    background: var(--bg-color);
    margin: 0;
    cursor: pointer;
    font-size: 1.125rem;
    position: relative;
    color: var(--heading-color);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.faq-item.active .faq-question {
    background: var(--primary-color);
    color: var(--white);
}

.faq-item.active .faq-question::after {
    color: var(--white);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-color);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px; /* arbitrary max-height for animation */
}

/* Call to Action Section */
.cta {
    background-color: var(--bg-color);
    position: relative;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.cta-info {
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.cta-info-header {
    margin-bottom: 2.5rem;
}

.cta-info-header h3 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-info-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    color: var(--white);
}

.contact-item:hover .contact-icon {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.1);
}

.contact-item h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 600;
}

.contact-link {
    color: inherit;
    text-decoration: none;
    position: relative;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--white);
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.contact-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.contact-form {
    padding: 3rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--heading-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--gray-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    background-color: var(--white);
}

/* File Upload Styles */
.file-upload-wrapper {
    position: relative;
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-md);
    background-color: var(--gray-50);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.file-upload-wrapper:hover,
.file-upload-wrapper.dragover {
    border-color: var(--primary-light);
    background-color: rgba(59, 130, 246, 0.05);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
}

.upload-icon-small {
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.upload-text {
    font-weight: 600;
    color: var(--heading-color);
}

.text-primary {
    color: var(--primary-color);
    text-decoration: underline;
}

.upload-hint {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.8;
}

.file-list {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
}

.file-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-remove {
    color: #ef4444;
    cursor: pointer;
    font-weight: bold;
    padding: 0 0.5rem;
    z-index: 20;
}

/* Custom Checkbox Styles */
.consents-group {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.checkbox-container {
    display: flex;
    position: relative;
    padding-left: 35px;
    margin-bottom: 1.25rem;
    cursor: pointer;
    font-size: 0.9rem;
    user-select: none;
    align-items: flex-start;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: var(--gray-100);
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    transition: var(--transition);
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--primary-light);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    color: var(--text-color);
    line-height: 1.5;
}

/* Footer */
.site-footer {
    background-color: #0f172a; /* Very dark slate */
    color: var(--gray-300);
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--gray-400);
}

.footer-links h4,
.footer-social h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--gray-300);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    color: var(--gray-300);
}

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

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

/* Company Brand Info */
.company-brand {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    gap: 1rem;
}

.company-brand .brand-logo {
    height: 60px;
    object-fit: contain;
    max-width: 100%;
}

.company-brand .qr-code-container {
    padding: 8px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-100);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.company-brand .qr-code-container:hover {
    transform: scale(1.05);
}

.company-brand .qr-code-container img {
    width: 90px;
    height: 90px;
    display: block;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.google-review-btn span {
    color: #1f2937;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Utility Classes for JS */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
    visibility: visible;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    padding: 12px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    overflow: hidden;
}

.floating-whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    transform: translateY(-5px);
    background-color: #20ba56;
    color: #fff;
}

.whatsapp-icon-floating {
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-text {
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    transition: all 0.4s ease-in-out;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    margin-left: 0;
}

.floating-whatsapp:hover .whatsapp-text {
    max-width: 200px;
    opacity: 1;
    margin-left: 10px;
    margin-right: 10px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    z-index: 9999;
    padding: 12px 0;
    border-top: 1px solid var(--gray-200);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

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

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

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

    .hero-illustration {
        height: 400px;
        margin-top: 2rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Header improvements for mobile */
    .site-header {
        padding: 0.75rem 0;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow-sm);
    }
    .site-header .logo-text {
        color: var(--primary-color);
    }
    .site-header .tagline {
        color: var(--text-color);
    }
    .site-header .site-nav a {
        color: var(--heading-color);
    }

    .site-header .container {
        flex-direction: column;
        gap: 0.5rem;
    }
    .logo-text {
        font-size: 1.4rem;
    }
    .tagline {
        font-size: 0.8rem;
    }
    .site-nav ul {
        gap: 0.25rem 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .site-nav a {
        font-size: 0.85rem;
        padding: 0.15rem 0;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    /* Footer improvements for mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    .footer-links ul {
        align-items: center;
    }
    .social-icons {
        align-items: center;
    }
    .google-review-btn {
        margin: 0.5rem auto 0;
    }
    .footer-links a:hover {
        padding-left: 0;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Hero */
    .hero {
        padding-top: 190px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    /* Company Brand */
    .company-brand {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .company-brand .brand-logo {
        height: 55px;
    }

    /* Contact List */
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1.25rem;
    }

    /* Floating elements */
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    /* Cookie Banner */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding-bottom: env(safe-area-inset-bottom, 12px);
    }
    .cookie-content button {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }

    .cta-info {
        padding: 1.5rem 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 16px; /* prevent iOS zoom */
    }
    
    .faq-question {
        padding: 1.25rem 1rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1.25rem;
    }
    
    .cookie-content {
        padding: 0 15px;
        padding-bottom: env(safe-area-inset-bottom, 15px);
    }
}
