/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

/* Container System - Premium Spacing */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
}

/* SVG Logo Protection */
svg.logo, .logo svg {
    flex-shrink: 0 !important;
    width: 32px !important;
    height: 32px !important;
    display: block;
    object-fit: contain;
}

.popup-logo {
    flex-shrink: 0 !important;
    width: 48px !important;
    height: 48px !important;
    display: block;
    object-fit: contain;
}

.footer-logo svg {
    flex-shrink: 0 !important;
    width: 32px !important;
    height: 32px !important;
    display: block;
    object-fit: contain;
}

/* Typography - Premium Scale */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: #1a1a1a;
    letter-spacing: -0.025em;
}

h1 {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.1;
}

h2 {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.15;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    color: #666;
    line-height: 1.65;
    font-size: 1rem;
}

.text-large {
    font-size: 1.125rem;
    line-height: 1.6;
}

.text-small {
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background-color: #e49a00;
    color: white;
}

.btn-primary:hover {
    background-color: #cc8900;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 1px solid #e5e5e5;
}

.btn-secondary:hover {
    background-color: #f8f9fa;
    border-color: #d1d5db;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 40px;
    width: auto;
    flex-shrink: 0;
}

.brand-text {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #e49a00;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-actions-mobile {
    display: none;
}

.nav-actions .btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    min-height: 40px;
}



.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: #1a1a1a;
    transition: all 0.2s ease;
}

.nav.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

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

/* Hero Section - Premium Layout */
.hero {
    padding: 100px 0 64px;
    background: linear-gradient(135deg, #fafafa 0%, #f8f9fa 100%);
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    width: 100%;
}

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

.hero-pills-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 48px;
    max-width: 650px; /* Constrain width for readability */
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #f0f9ff;
    border: 1px solid #e0f2fe;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    color: #0369a1;
    text-align: center;
}

.showcase-badge {
    margin: 24px auto 0;
    margin-bottom: 0;
    justify-self: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.highlight {
    color: #e49a00;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
    margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.truck-dashboard {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 24px;
    border: 1px solid #e5e5e5;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e5e5;
}

.dashboard-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #666;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10b981;
}

.status-dot.active {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.load-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.load-card {
    padding: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background: #fafafa;
    transition: all 0.2s ease;
}

.load-card.featured {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #f59e0b;
}

.load-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.load-route {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.route-point {
    display: flex;
    align-items: center;
    gap: 12px;
}

.point-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.point-dot.origin {
    background-color: #10b981;
}

.point-dot.destination {
    background-color: #ef4444;
}

.point-info {
    min-width: 0;
}

.point-city {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.875rem;
}

.point-time {
    font-size: 0.75rem;
    color: #666;
}

.route-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, #10b981, #ef4444);
    margin: 0 8px;
}

.load-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.load-rate {
    font-size: 1.25rem;
    font-weight: 700;
    color: #059669;
}

.load-miles {
    font-size: 0.875rem;
    color: #666;
}

.load-type {
    font-size: 0.875rem;
    color: #666;
    background: rgba(255, 255, 255, 0.8);
    padding: 4px 8px;
    border-radius: 4px;
}

/* Trusted By Section - Refined */
.trusted-by {
    padding: 56px 0;
    background: white;
    border-bottom: 1px solid #e5e5e5;
}

.trusted-text {
    text-align: center;
    color: #666;
    margin-bottom: 32px;
    font-size: 1rem;
    font-weight: 500;
}

.trusted-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .trusted-logos {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
}

.trusted-stat {
    text-align: center;
    padding: 24px;
    border-radius: 12px;
    background: #fafafa;
    border: 1px solid #e5e5e5;
}

.trusted-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e49a00;
}

.trusted-stat .stat-label {
    font-size: 0.875rem;
    color: #666;
    margin-top: 8px;
}

/* Section Headers - Premium Spacing */
.section-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
}

/* How It Works Section - Optimized */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e49a00;
    background: #fef3c7;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.step-content p {
    margin-bottom: 24px;
    font-size: 1.125rem;
}

.step-visual {
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px;
}

.truck-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
}

.form-field:last-child {
    border-bottom: none;
}

.form-field label {
    font-weight: 500;
    color: #666;
    font-size: 0.875rem;
}

.form-value {
    font-weight: 600;
    color: #1a1a1a;
}

.rate-settings {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.rate-value {
    font-weight: 600;
    color: #059669;
}

.dispatch-notifications {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notification {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.notification-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
}

.notification-text strong {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.notification-text p {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

.notification-time {
    font-size: 0.75rem;
    color: #999;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #fafafa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    text-align: center;
    transition: all 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Document Management Section */
.document-management {
    padding: 80px 0;
    background: white;
}

.document-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.document-info h3 {
    margin-bottom: 24px;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.document-info > p {
    margin-bottom: 40px;
    font-size: 1.125rem;
    color: #666;
    line-height: 1.7;
}

.pain-points {
    margin-bottom: 48px;
}

.pain-points h4 {
    margin-bottom: 32px;
    font-size: 1.25rem;
    color: #1a1a1a;
}

.pain-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    transition: all 0.2s ease;
}

.pain-point:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pain-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.pain-point strong {
    display: block;
    margin-bottom: 4px;
    color: #1a1a1a;
    font-weight: 600;
}

.pain-point p {
    color: #666;
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
}

.time-savings {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #f59e0b;
}

.time-savings h4 {
    margin-bottom: 16px;
    color: #1a1a1a;
    font-size: 1.25rem;
}

.time-savings > p {
    margin-bottom: 24px;
    color: #666;
    line-height: 1.6;
}

.savings-stats {
    display: flex;
    gap: 24px;
    justify-content: space-around;
}

.savings-stat {
    text-align: center;
}

.savings-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #e49a00;
    display: block;
    margin-bottom: 4px;
}

.savings-stat .stat-label {
    font-size: 0.875rem;
    color: #666;
}

.document-visual {
    position: relative;
}

.paperwork-dashboard {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 24px;
    border: 1px solid #e5e5e5;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e5e5;
}

.dashboard-header h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #666;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
}

.status-dot.active {
    background: #059669;
}

.admin-tasks {
    margin-bottom: 24px;
}

.task-category {
    margin-bottom: 24px;
}

.task-category h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.task-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.task-item:last-child {
    border-bottom: none;
}

.task-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.task-details strong {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
    font-size: 0.875rem;
}

.task-details p {
    color: #666;
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.4;
}

.task-item.completed .task-details strong {
    color: #059669;
}

.task-item.in-progress .task-details strong {
    color: #e49a00;
}

.dashboard-summary {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.summary-item {
    text-align: center;
}

.summary-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.summary-label {
    font-size: 0.75rem;
    color: #666;
}

.document-cta {
    text-align: center;
    background: #fafafa;
    padding: 60px 40px;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
}

.document-cta h3 {
    margin-bottom: 16px;
    font-size: 2rem;
    color: #1a1a1a;
}

.document-cta p {
    margin-bottom: 32px;
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #e49a00;
    box-shadow: 0 8px 24px rgba(228, 154, 0, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #e49a00;
    color: white;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.pricing-header p {
    color: #666;
}

.pricing-rates {
    margin-bottom: 32px;
}

.rate-tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e5;
}

.rate-tier:last-child {
    border-bottom: none;
}

.rate-percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e49a00;
}

.rate-description {
    color: #666;
    font-size: 0.875rem;
}

.pricing-features {
    margin-bottom: 32px;
    flex-grow: 1;
}

.feature {
    padding: 8px 0;
    color: #666;
    font-size: 0.875rem;
}

.feature:before {
    content: "✓";
    color: #10b981;
    font-weight: 600;
    margin-right: 8px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::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="0.5" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials-wrapper {
    position: relative;
    margin-top: 60px;
}

.testimonials-grid {
    display: flex;
    gap: 32px;
    transition: transform 0.5s ease;
    overflow: hidden;
}

/* Desktop: Single line with navigation */
@media (min-width: 1201px) {
    .testimonials-grid {
        flex-wrap: nowrap;
    }
    
    .testimonial-card {
        flex: 0 0 calc(25% - 24px);
        min-width: 280px;
    }
    
    .testimonials-nav {
        display: flex;
        justify-content: center;
        gap: 16px;
        margin-top: 40px;
    }
    
    .nav-btn {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: white;
        border: 2px solid #e49a00;
        color: #e49a00;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .nav-btn:hover {
        background: #e49a00;
        color: white;
        transform: scale(1.1);
    }
    
    .nav-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }
}

/* Tablet responsive */
@media (max-width: 1200px) and (min-width: 769px) {
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .testimonials-nav {
        display: none;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .testimonials-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonials-wrapper {
        margin-top: 40px;
    }
    
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-nav {
        display: none;
    }
}

.testimonial-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 4rem;
    color: #e49a00;
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #e49a00;
}

.testimonial-content {
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.testimonial-content p {
    font-style: italic;
    color: #1e293b;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
    position: relative;
}

.testimonial-content p::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #e49a00, #f59e0b);
    border-radius: 2px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e49a00 0%, #f59e0b 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(228, 154, 0, 0.3);
    border: 3px solid white;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.author-title {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Star rating visual enhancement */
.testimonial-card::after {
    content: '★★★★★';
    position: absolute;
    top: 20px;
    right: 24px;
    color: #fbbf24;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Staggered animation for cards */
.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
}

.testimonial-card:nth-child(4) {
    animation-delay: 0.4s;
}

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

.testimonial-card {
    animation: fadeInUp 0.6s ease-out both;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 1.5rem;
    color: #e49a00;
    transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #fafafa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 16px;
    font-size: 2.5rem;
}

.contact-info > p {
    margin-bottom: 40px;
    font-size: 1.125rem;
    color: #666;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e5;
}

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

.method-icon {
    font-size: 1.5rem;
    width: 48px;
    text-align: center;
}

.method-label {
    font-weight: 500;
    color: #666;
    font-size: 0.875rem;
}

.method-value {
    font-weight: 600;
    color: #1a1a1a;
}

.trust-indicators {
    display: flex;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #666;
}

.trust-icon {
    font-size: 1.125rem;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h3 {
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.form-header p {
    color: #666;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1a1a1a;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e49a00;
    box-shadow: 0 0 0 3px rgba(228, 154, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #e49a00;
    border-color: #e49a00;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.form-footer {
    text-align: center;
    margin-top: 16px;
}

.form-footer p {
    font-size: 0.75rem;
    color: #999;
}

.form-footer a {
    color: #e49a00;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #999;
    padding: 64px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #333;
}

.footer-brand {
    grid-column: 1 / -1; /* Span full width on mobile */
}

@media (min-width: 768px) {
    .footer-brand {
        grid-column: span 2; /* Take more space on tablets */
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    }
    .footer-brand {
        grid-column: auto;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo svg {
    width: 48px;
    height: auto;
    flex-shrink: 0;
    display: block;
}

.footer-logo svg path {
    fill: white;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 700;
}

.footer-brand p {
    color: #999;
    line-height: 1.6;
}

.footer-links {
    display: contents; /* Allow columns to be direct grid items */
}

.footer-column h4 {
    margin-bottom: 16px;
    color: white;
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: #999;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #e49a00;
}

.footer-contact h4 {
    margin-bottom: 16px;
    color: #ffffff;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #ffffff;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
}

.contact-item a:hover {
    color: #e49a00;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
}

.footer-bottom p {
    margin-bottom: 8px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.modal-close:hover {
    color: #1a1a1a;
}

.modal-body {
    padding: 24px;
}

.modal-body ul {
    margin-top: 16px;
    padding-left: 20px;
}

.modal-body li {
    margin-bottom: 8px;
    color: #666;
}

.modal-footer {
    padding: 0 24px 24px;
    text-align: center;
}

/* Premium Popup Styles */
.premium-popup {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    max-width: 480px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.welcome-popup {
    border: 1px solid #e5e5e5;
}

.popup-header {
    padding: 32px 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.popup-logo {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: block;
}

.popup-body {
    padding: 24px 32px 32px;
    text-align: center;
}

.popup-body h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 600;
}

.welcome-subtitle {
    color: #666;
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.welcome-benefits {
    margin-bottom: 28px;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #666;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.welcome-form {
    margin-bottom: 20px;
}

.welcome-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-bottom: 12px;
    transition: all 0.2s ease;
    background: white;
}

.welcome-input:focus {
    outline: none;
    border-color: #e49a00;
    box-shadow: 0 0 0 3px rgba(228, 154, 0, 0.1);
}

.welcome-btn {
    font-size: 0.95rem;
    padding: 14px 24px;
    font-weight: 600;
}

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

.skip-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.skip-btn:hover {
    color: #666;
}

/* Enhanced Modal Close Button */
.premium-popup .modal-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #999;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.premium-popup .modal-close:hover {
    color: #1a1a1a;
    background: #f5f5f5;
}

/* Privacy Policy Page Styles */
.privacy-policy {
    padding: 120px 0 80px;
    background: white;
}

.policy-header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e5e5e5;
}

.policy-header h1 {
    margin-bottom: 16px;
    font-size: 2.25rem;
}

.policy-updated {
    color: #666;
    font-size: 0.875rem;
    font-weight: 500;
}

.policy-content {
    max-width: none;
}

.policy-section {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid #f0f0f0;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h2 {
    margin-bottom: 24px;
    font-size: 1.75rem;
    color: #1a1a1a;
}

.policy-section h3 {
    margin: 32px 0 16px 0;
    font-size: 1.25rem;
    color: #1a1a1a;
}

.policy-section h3:first-of-type {
    margin-top: 0;
}

.policy-section p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.policy-section ul {
    margin: 16px 0 24px 0;
    padding-left: 24px;
}

.policy-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #666;
}

.policy-section li strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Responsive Design - Premium Mobile */
@media (max-width: 768px) {
    .container, .container-wide, .container-narrow {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
        height: 64px;
        position: relative;
    }
    
    .nav-brand {
        z-index: 1001;
    }
    
    .logo {
        height: 40px;
        width: auto;
    }
    
    .nav-actions {
        display: none;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        height: calc(100vh - 64px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px 24px;
        gap: 24px;
        z-index: 999;
        border-top: 1px solid #e5e5e5;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-menu.active {
        display: flex;
        transform: translateX(0);
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
        padding: 8px;
        border-radius: 4px;
        transition: background-color 0.2s ease;
    }
    
    .nav-toggle:hover {
        background-color: #f5f5f5;
    }
    
    .nav-toggle span {
        width: 24px;
        height: 3px;
        background-color: #1a1a1a;
        border-radius: 2px;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 16px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.2s ease;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-link:hover {
        background-color: #f8f9fa;
        color: #e49a00;
    }
    
    .nav-actions-mobile {
        margin-top: 24px;
        width: 100%;
        max-width: 280px;
    }
    
    .nav-actions-mobile .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
        min-height: 48px;
        border-radius: 8px;
    }
    
    .hero {
        padding: 120px 0 48px;
        min-height: auto;
        text-align: center;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
        padding: 0 20px;
    }

    .hero-pills-container {
        margin: 32px auto 0;
        padding: 0 16px;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 28px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 320px;
        margin: 32px auto 0;
    }
    
    .stat-item {
        padding: 20px;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .services, .how-it-works, .document-management, .pricing, .testimonials, .faq, .contact {
        padding: 48px 0;
    }
    
    .trusted-by {
        padding: 32px 0;
    }
    
    .section-header {
        margin-bottom: 32px;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .step {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
        margin-bottom: 32px;
    }
    
    .step-number {
        margin: 0 auto 16px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .document-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .savings-stats {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .dashboard-summary {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: span 1;
        text-align: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card {
        margin: 0 auto;
        max-width: 320px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        margin: 0 auto;
        max-width: 320px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card {
        text-align: center;
    }
    
    /* Mobile popup adjustments */
    .premium-popup {
        max-width: 90%;
        margin: 0 20px;
    }
    
    .popup-header, .popup-body {
        padding: 20px;
    }
    
    .welcome-input {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .privacy-policy {
        padding: 80px 0 60px;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
    
    /* FAQ Mobile Improvements */
    .faq-item {
        margin-bottom: 16px;
    }
    
    .faq-question {
        padding: 16px;
        font-size: 16px;
        text-align: left;
    }
    
    .faq-answer {
        padding: 16px;
        font-size: 15px;
    }
    
    /* Contact Form Mobile */
    .contact-form-container {
        padding: 24px;
    }
    
    .contact-form h3 {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    
    /* Trusted Logos Mobile */
    .trusted-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .trusted-logo {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .container, .container-wide, .container-narrow {
        padding: 0 16px;
    }
    
    .nav {
        padding: 10px 0;
    }
    
    .nav-container {
        padding: 0 16px;
        height: 60px;
    }
    
    .logo {
        height: 36px;
    }
    
    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
        padding: 24px 16px;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 14px 0;
        min-height: 44px;
    }
    
    .nav-actions {
        margin-top: 20px;
        max-width: 100%;
    }
    
    .nav-actions .btn {
        padding: 12px 20px;
        font-size: 15px;
        min-height: 44px;
    }
    
    .nav-toggle {
        padding: 6px;
    }
    
    .nav-toggle span {
        width: 22px;
        height: 2px;
    }
    
    .brand-text {
        font-size: 18px;
    }
    
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero-container {
        padding: 0 16px;
        gap: 24px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .hero-pills-container {
        margin: 24px auto 0;
        padding: 0 8px;
    }
    
    .hero-badge {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .btn {
        max-width: 100%;
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .contact-form-container {
        padding: 16px;
    }
    
    .contact-form h3 {
        font-size: 1.3rem;
    }
    
    .trusted-logos {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .trusted-logo {
        height: 35px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 280px;
    }
    
    .stat-item {
        padding: 16px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .services, .how-it-works, .document-management, .pricing, .testimonials, .faq, .contact {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 15px;
    }
    
    .service-card, .testimonial-card, .pricing-card {
        max-width: 100%;
        margin: 0;
    }
    
    .step {
        margin-bottom: 24px;
    }
    
    .step h3 {
        font-size: 1.2rem;
    }
    
    .step p {
        font-size: 14px;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .pricing-header h3 {
        font-size: 1.3rem;
    }
    
    .pricing-price {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .faq-question {
        padding: 12px 16px;
        font-size: 15px;
    }
    
    .faq-answer {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .footer-content {
        gap: 24px;
    }
    
    .footer-logo span {
        font-size: 18px;
    }
    
    .footer-column h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .footer-column a {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .contact-item {
        font-size: 14px;
    }
    
    .privacy-policy {
        padding: 60px 0 40px;
    }
    
    .policy-header h1 {
        font-size: 1.75rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .policy-section h3 {
        font-size: 1.1rem;
    }
    
    .policy-section p, .policy-section li {
        font-size: 14px;
    }
    
    .popup-header, .popup-body {
        padding: 16px;
    }
    
    .premium-popup {
        max-width: 95%;
        margin: 0 10px;
    }
    
    .welcome-input {
        padding: 12px;
        font-size: 16px;
    }
    
    .whatsapp-float {
        bottom: 12px;
        right: 12px;
    }
    
    .whatsapp-float a {
        width: 44px;
        height: 44px;
    }
    
    .whatsapp-tooltip {
        font-size: 12px;
        padding: 6px 8px;
        right: -15px;
    }
}