:root {
    --primary: #0a2540;
    --primary-dark: #051829;
    --accent: #c5a572;
    --accent-dark: #9d8456;
    --secondary: #1a3a52;
    --light: #f8fafb;
    --dark: #0f1419;
    --success: #2d7a4f;
    --danger: #c1392b;
    --gold: #d4af37;
    --premium-gradient: linear-gradient(135deg, #0a2540 0%, #1a3a52 50%, #2d4a5e 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* WordPress Compatibility Classes */
.wp-block-group { width: 100%; }
.alignfull { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }

/* Header - Premium Style */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 165, 114, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--primary);
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
}

.logo i {
    margin-right: 10px;
    color: var(--accent);
    font-size: 2rem;
}

.logo-subtitle {
    font-size: 0.65rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: -5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

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

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

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

.cta-button {
    background: var(--primary);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(10, 37, 64, 0.25);
    border: 2px solid var(--primary);
    display: inline-block;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 37, 64, 0.35);
    color: white;
}

.cta-button-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--accent);
}

.cta-button-secondary:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* Hero Section - Premium Positioning */
.hero {
    background: var(--premium-gradient);
    color: white;
    padding: 180px 0 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(197, 165, 114, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(197, 165, 114, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 950px;
    margin: 0 auto;
}

/* Premium Badge - "Luxury Home Inspections" Strategy */
.hero-badge {
    display: inline-block;
    background: rgba(197, 165, 114, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(197, 165, 114, 0.3);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--accent);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.8rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero h1 .highlight {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.7;
}

/* Trust Indicators - "Show Don't Tell" Strategy */
.trust-bar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.trust-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 0.3rem;
    display: block;
}

.trust-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 600;
}

/* Social Proof Section */
.social-proof {
    background: white;
    padding: 80px 0;
    border-bottom: 1px solid #e8e8e8;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.6;
    filter: grayscale(100%);
}

.client-logos img {
    height: 40px;
    object-fit: contain;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(197, 165, 114, 0.2);
    transition: all 0.3s;
}

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

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

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

.author-info h4 {
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--secondary);
}

/* Pain Points - Niche Specialization Strategy */
.pain-points {
    padding: 100px 0;
    background: var(--light);
}

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

.section-badge {
    display: inline-block;
    background: rgba(197, 165, 114, 0.1);
    color: var(--accent-dark);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 1.2rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.section-title p {
    color: var(--secondary);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pain-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
    border-left: 4px solid var(--danger);
}

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

.pain-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--danger), #e74c3c);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.pain-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 700;
}

.pain-card p {
    color: var(--secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.pain-stat {
    background: rgba(193, 57, 43, 0.1);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--danger);
    font-size: 0.9rem;
}

/* Solution Section - Premium Positioning */
.solution {
    padding: 100px 0;
    background: white;
}

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

.solution-visual {
    position: relative;
}

.before-after {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.comparison-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.comparison-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.before-label {
    color: var(--danger);
}

.after-label {
    color: var(--success);
}

.comparison-value {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
}

.comparison-desc {
    font-size: 0.9rem;
    color: var(--secondary);
}

.solution-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-weight: 800;
}

.solution-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.solution-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.solution-features li {
    padding: 1rem 0;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #e8e8e8;
}

.solution-features li:last-child {
    border-bottom: none;
}

.solution-features i {
    color: var(--success);
    margin-right: 1rem;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.solution-features strong {
    color: var(--dark);
}

/* Niche Specializations - "Most Dangerous Workplaces" Strategy */
.niches {
    padding: 100px 0;
    background: var(--premium-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.niches:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(197, 165, 114, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.niches .section-title h2,
.niches .section-title p {
    color: white;
}

.niches .section-badge {
    background: rgba(197, 165, 114, 0.2);
    color: var(--accent);
}

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

.niche-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.niche-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.niche-icon {
    width: 70px;
    height: 70px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.niche-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.niche-card p {
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.niche-card ul {
    list-style: none;
}

.niche-card li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    opacity: 0.85;
}

.niche-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: var(--light);
}

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

.process-step {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
    transition: all 0.3s;
}

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

.step-number {
    position: absolute;
    top: -20px;
    left: 2.5rem;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(197, 165, 114, 0.4);
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: var(--dark);
    font-weight: 700;
}

.process-step p {
    color: var(--secondary);
    line-height: 1.7;
}

/* Guarantee Section - Risk Reversal */
.guarantee {
    padding: 100px 0;
    background: white;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.guarantee-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--success), #2ecc71);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px rgba(45, 122, 79, 0.3);
}

.guarantee-badge i {
    font-size: 1.5rem;
}

.guarantee-content h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.guarantee-content p {
    font-size: 1.2rem;
    color: var(--secondary);
    line-height: 1.8;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    text-align: left;
}

.guarantee-column h3 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.guarantee-column ul {
    list-style: none;
}

.guarantee-column li {
    padding: 1rem 0;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.guarantee-column li:last-child {
    border-bottom: none;
}

/* Pricing Section - Premium Positioning */
.pricing {
    padding: 100px 0;
    background: var(--light);
}

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

.pricing-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}

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

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 8px 40px rgba(197, 165, 114, 0.2);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 2rem;
    background: var(--accent);
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 800;
}

.pricing-subtitle {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--success);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--premium-gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(197, 165, 114, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.95;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-button-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Assessment Gate - Friction Strategy */
.assessment-gate {
    padding: 100px 0;
    background: white;
}

.assessment-container {
    max-width: 800px;
    margin: 0 auto;
}

.assessment-header {
    text-align: center;
    margin-bottom: 3rem;
}

.assessment-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 900;
}

.assessment-header p {
    font-size: 1.1rem;
    color: var(--secondary);
    line-height: 1.7;
}

.assessment-form {
    background: var(--light);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

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

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--dark);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(197, 165, 114, 0.1);
}

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

.form-helper {
    font-size: 0.85rem;
    color: var(--secondary);
    margin-top: 0.5rem;
}

.submit-button {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.submit-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 37, 64, 0.3);
}

.qualification-score {
    display: none;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
    border: 2px solid var(--success);
}

.qualification-score.show {
    display: block;
}

.score-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--success);
    margin-bottom: 1rem;
}

.score-label {
    font-size: 1.2rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.score-message {
    font-size: 1rem;
    color: var(--secondary);
}

/* Calendar Section - Calendly Integration */
.calendar-section {
    padding: 100px 0;
    background: var(--light);
}

.calendar-container {
    max-width: 1000px;
    margin: 0 auto;
}

.calendar-header {
    text-align: center;
    margin-bottom: 3rem;
}

.calendar-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 900;
}

.calendar-header p {
    font-size: 1.2rem;
    color: var(--secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.calendar-embed {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    min-height: 700px;
}

.calendar-placeholder {
    text-align: center;
    padding: 4rem 2rem;
}

.calendar-placeholder i {
    font-size: 5rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.calendar-placeholder h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.calendar-placeholder p {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.calendar-note {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--secondary);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.calendar-note i {
    color: var(--success);
}

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

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-weight: 800;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: white;
    text-decoration: none;
    opacity: 0.8;
    margin-bottom: 0.8rem;
    transition: all 0.3s;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
    padding-left: 0;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .trust-items {
        grid-template-columns: 1fr;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}