/* ============================
   Global Styles & Colors
   ============================ */
:root {
    --primary: #003d7a;
    --primary-dark: #002347;
    --primary-light: #e8f0f8;
    --secondary: #0066cc;
    --accent: #FFC107;
    --accent-dark: #FF9800;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    --text-dark: #0f172a;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --text-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-lighter: #f1f5f9;
    --border-color: #e2e8f0;
    --border-light: #cbd5e1;

    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);

    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--text-dark);
    background-color: #fff;
    line-height: 1.6;
}

/* ============================
   Container & Layout
   ============================ */
.container {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    margin: 0 auto;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
        padding: 0 20px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 960px;
        padding: 0 32px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1140px;
        padding: 0 48px;
    }
}

/* ============================
   Typography & Text
   ============================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    margin-bottom: 1.25rem;
    line-height: 1.25;
}

h1 {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

h5 {
    font-size: 1rem;
    font-weight: 600;
}

h6 {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-lighter);
    font-weight: 500;
    margin-bottom: 2rem;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color var(--transition-fast) ease;
    position: relative;
}

a:hover {
    color: var(--primary);
}

strong {
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================
   Buttons & Interactive Elements
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast) ease;
    border: 2px solid transparent;
    text-decoration: none;
    text-align: center;
    user-select: none;
    white-space: nowrap;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width var(--transition-fast) ease, height var(--transition-fast) ease;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #FFB300 100%);
    color: #003d7a;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.25);
    border-color: transparent;
    font-weight: 300;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.35);
    background: linear-gradient(135deg, #FFB300 0%, #FF9800 100%);
}

.btn-primary:focus {
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.1), 0 8px 25px rgba(255, 193, 7, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--primary-light);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary:focus {
    box-shadow: 0 0 0 4px rgba(0, 166, 81, 0.1);
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    transition: all var(--transition) ease;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.btn-lg {
    padding: 16px 48px;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Form Elements */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    color: var(--text-dark);
    transition: all var(--transition) ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 166, 81, 0.1);
    background: #fafafa;
}

/* ============================
   Animations & Keyframes
   ============================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in-slow {
    animation: fadeInUp 1s ease-out;
}

/* ============================
   Section Spacing
   ============================ */
.section {
    padding: 50px 0;
    position: relative;
}

.section-sm {
    padding: 40px 0;
}

.section-lg {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 2rem;
    text-align: center;
}

.section-header h2 {
    margin-bottom: 0.75rem;
}

.section-header>p {
    font-size: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.row {
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    gap: 2rem;
}

.col {
    min-width: 0;
}

/* ============================
   Hero Section
   ============================ */
/*.hero {
    background-image: url('/Banner/solar-banner1.png');
    background: linear-gradient(135deg, var(--primary) 0%, #009c45 50%, var(--primary-dark) 100%);
    color: white;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}*/

.hero {
    background-image: url('/Banner/solar-banner1.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: seagreen;
    padding: 140px 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
   
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out 1s infinite;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

    .hero h1 {
        color: white;
        margin-bottom: 1rem;
        font-size: 5rem;
        line-height: 1.2;
        animation: fadeInDown 0.8s ease-out;
        font-weight: 700;
        text-shadow: 0 4px 15px rgba(0,0,0,0.6);
    }

.hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-direction: column;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero .btn {
    font-size: 1rem;
    padding: 12px 32px;
}

.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: white;
    backdrop-filter: blur(10px);
}

.hero .btn-secondary:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

/* ============================
   Features/Value Props
   ============================ */
.features {
    background: white;
    padding: 100px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-card {
    text-align: center;
    padding: 3rem 2.5rem;
    border-radius: 12px;
    transition: all var(--transition) ease;
    background: white;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow) ease;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FFF9E6 0%, rgba(255, 193, 7, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: var(--accent);
    transition: all var(--transition) ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.3);
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* ============================
   Stats Section
   ============================ */
.stats {
    background: linear-gradient(135deg, var(--primary) 0%, #009c45 50%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    transition: transform var(--transition-slow) ease;
}

.stat-item:hover {
    transform: translateY(-8px);
}

.stat-item h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    font-weight: 500;
}

/* ============================
   Products Section
   ============================ */
.products {
    background: var(--bg-light);
    padding: 100px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow) ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-16px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #d0e8e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 166, 81, 0.05) 100%);
}

.product-card:hover .product-image {
    background: linear-gradient(135deg, var(--primary) 0%, #009c45 100%);
}

.product-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.5rem;
}

.product-card>p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 0.75rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition-fast) ease;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-card:hover .product-features li {
    color: var(--text-dark);
    padding-left: 0.5rem;
}

.product-features li:before {
    content: '✓ ';
    color: var(--primary);
    font-weight: bold;
    margin-right: 0.75rem;
}

/* ============================
   Process Section
   ============================ */
.process {
    background: white;
    padding: 100px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
}

@media (min-width: 768px) {
    .process-grid::before {
        content: '';
        position: absolute;
        top: 80px;
        left: 5%;
        right: 5%;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--primary), transparent);
        z-index: 1;
    }
}

.process-step {
    text-align: center;
    padding: 3rem 2.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all var(--transition) ease;
    position: relative;
    z-index: 2;
    border: 2px solid transparent;
}

.process-step:hover {
    background: white;
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
    transition: all var(--transition) ease;
}

.process-step:hover .step-number {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 166, 81, 0.4);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    transition: all var(--transition) ease;
}

.process-step:hover .step-icon {
    transform: scale(1.2) rotate(-10deg);
    opacity: 1;
}

.process-step h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 1rem;
}

/* ============================
   Testimonials
   ============================ */
.testimonials {
    background: linear-gradient(135deg, #f0f9ff 0%, #e8f4f0 100%);
    padding: 100px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow) ease;
    position: relative;
    border-left: 4px solid transparent;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.1;
    font-weight: 900;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    display: flex;
    gap: 0.25rem;
}

.stars span {
    display: inline-block;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.author-info h4 {
    margin: 0 0 0.25rem 0;
    color: var(--text-dark);
    font-size: 1.0625rem;
}

.author-info p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-lighter);
}

/* ============================
   CTA Sections
   ============================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #009c45 50%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-section .btn {
    position: relative;
    z-index: 2;
}

/* ============================
   Container & Layout
   ============================ */
.container {
    max-width: 100%;
    padding: 0 16px;
    margin: 0 auto;
    width: 100%;
}

header {
    background: linear-gradient(135deg, var(--primary) 0%, #002347 100%);
    box-shadow: 0 4px 12px rgba(0, 61, 122, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-fast) ease;
}

header.scrolled {
    box-shadow: 0 8px 20px rgba(0, 61, 122, 0.25);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 10px 5px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 8px;
    z-index: 1001;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-height: 44px;
    min-width: 44px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all var(--transition-fast) ease;
    display: block;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: white;
    font-weight: 500;
    font-size: 1rem;
    transition: color var(--transition-fast) ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-fast) ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 50%;
}

/* ============================
   Footer
   ============================ */
footer {
    background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
    color: white;
    padding: 80px 0 30px;
    margin-top: 120px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}

.footer-section {
    animation: fadeInUp 0.8s ease-out backwards;
}

.footer-section:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-section:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-section:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-section:nth-child(4) {
    animation-delay: 0.4s;
}

.footer-section:nth-child(5) {
    animation-delay: 0.5s;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.875rem;
    transition: all var(--transition-fast) ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-section a::before {
    content: '→';
    position: absolute;
    left: -1.5rem;
    opacity: 0;
    transition: all var(--transition-fast) ease;
}

.footer-section a:hover {
    color: var(--primary);
    padding-left: 1rem;
}

.footer-section a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 0.9375rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast) ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 166, 81, 0.3);
    padding-left: 0;
}

/* ============================
   Image & Media Handling
   ============================ */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-fluid {
    width: 100%;
    height: auto;
}

.img-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 166, 81, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition) ease;
}

.img-container:hover .img-overlay {
    opacity: 1;
}

/* ============================
   Image Gallery
   ============================ */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow) ease;
    background: var(--bg-light);
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition) ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform var(--transition) ease;
}

.gallery-item:hover .gallery-item-info {
    transform: translateY(0);
}

.gallery-item-info h4 {
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-item-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

/* ============================
   Before & After Comparison
   ============================ */
.comparison-slider {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-slider img {
    display: block;
    width: 100%;
}

.img-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.img-before img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-before-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.comparison-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    cursor: ew-resize;
    transform: translateX(-50%);
    transition: box-shadow var(--transition-fast) ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.comparison-handle:hover {
    box-shadow: 0 0 30px rgba(0, 166, 81, 0.6);
}

.comparison-handle::before {
    content: '‹';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.comparison-handle::after {
    content: '›';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.comparison-label {
    position: absolute;
    top: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
}

.comparison-label-before {
    left: 1.5rem;
}

.comparison-label-after {
    right: 1.5rem;
}

/* ============================
   Pricing Table
   ============================ */
.pricing-container {
    margin: 3rem 0;
}

.pricing-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: all var(--transition-slow) ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow) ease;
}

.pricing-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 1rem 0;
    color: var(--text-dark);
}

.pricing-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1rem 0 0.5rem;
}

.pricing-period {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.pricing-period::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary);
    margin: 1.5rem auto;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li:before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    margin-right: 0.75rem;
}

.pricing-cta {
    margin-top: 2rem;
}

/* ============================
   Icon Grid
   ============================ */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    text-align: center;
}

.icon-item {
    padding: 1rem;
    border-radius: 12px;
    transition: all var(--transition) ease;
    background: var(--bg-light);
}

.icon-item .icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.icon-item p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

/* ============================
   FAQ Section
   ============================ */
.faq-container {
    max-width: 800px;
    margin: 3rem auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition) ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    cursor: pointer;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all var(--transition-fast) ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: bold;
    transition: all var(--transition) ease;
}

.faq-question:hover .faq-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow) ease;
    padding: 0 1.5rem;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* ============================
   Responsive Design
   ============================ */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.35rem;
    }

    .hero {
        padding: 80px 0;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .section {
        padding: 60px 0;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .hero .btn {
        width: 100%;
        font-size: 1rem;
        padding: 14px 32px;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.95rem;
    }

    .feature-grid,
    .product-grid,
    .testimonial-grid {
        gap: 1.5rem;
    }

    .feature-card,
    .process-step {
        padding: 2rem 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-item h2 {
        font-size: 2.5rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    footer {
        padding: 60px 0 20px;
    }

    .footer-content {
        gap: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.35rem;
    }

    h3 {
        font-size: 1.15rem;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.9375rem;
    }

    .btn-lg {
        padding: 12px 32px;
        font-size: 1rem;
    }

    /* Mobile Navigation */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        gap: 0;
        background: white;
        border-top: 1px solid var(--border-color);
        padding: 1rem 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        list-style: none;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        position: relative;
        width: 100%;
    }

    .nav-links li a {
        display: block;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-links li:last-child a {
        border-bottom: none;
        padding: 0.75rem 1rem;
    }

    .nav-links li:last-child .btn {
        width: 100%;
        margin: 0.5rem 1rem;
        padding: 10px 1rem;
        border-radius: 6px;
    }

    .nav-links a {
        font-size: 0.95rem;
        color: var(--text-dark);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover {
        background: var(--primary-light);
        color: var(--primary);
    }

    nav {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero {
        padding: 60px 0;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .feature-grid,
    .product-grid,
    .testimonial-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-card,
    .product-card,
    .process-step,
    .testimonial-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 16px;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-bottom {
        padding-left: 16px;
        padding-right: 16px;
    }

    .product-image {
        height: 200px;
        font-size: 3.5rem;
    }

    /* Mobile-First New Components */
    .pricing-table {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-name {
        font-size: 1.1rem;
    }

    .pricing-price {
        font-size: 1.8rem;
    }

    .pricing-period::before {
        margin: 1rem auto;
    }

    .pricing-features {
        margin: 1rem 0;
    }

    .pricing-features li {
        padding: 0.4rem 0;
        font-size: 0.8rem;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.75rem;
    }

    .gallery-item {
        aspect-ratio: 1;
    }

    .icon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin: 1.5rem 0;
    }

    .icon-item {
        padding: 0.75rem;
    }

    .icon-item .icon {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .icon-item p {
        font-size: 0.75rem;
    }

    .comparison-slider {
        margin: 1.5rem 0;
    }

    .comparison-gallery {
        margin-top: 1.5rem;
    }

    .comparison-grid {
        gap: 1rem;
    }

    .faq-container {
        margin: 1.5rem 0;
    }

    .faq-item {
        margin-bottom: 0.5rem;
    }

    .faq-question {
        padding: 0.75rem;
        font-size: 0.9rem;
        gap: 0.75rem;
        min-height: 40px;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    .faq-answer {
        padding: 0 0.75rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 0.75rem 0.75rem;
    }

    .pricing-info-section {
        margin-top: 1.5rem;
        padding: 1.5rem;
    }

    .faq-cta-section {
        margin-top: 1.5rem;
        padding: 1.5rem;
    }

    .faq-cta-section h3,
    .faq-cta-section p {
        font-size: 0.95rem;
    }

    .team-cta-section {
        margin-top: 1.5rem;
        padding: 1.5rem;
    }

    .team-cta-section h3,
    .team-cta-section p {
        font-size: 0.95rem;
    }

    .gallery-filters {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .gallery-filter-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        min-height: 40px;
    }
}

@media (min-width: 768px) {

    /* Tablet typography scaling */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    p {
        font-size: 1rem;
    }

    .section {
        padding: 75px 0;
    }

    .section-sm {
        padding: 50px 0;
    }

    .section-lg {
        padding: 110px 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header>p {
        font-size: 1.125rem;
    }

    /* Hero tablet scaling */
    .hero h1 {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }

    .hero p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }

    .hero-cta {
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .hero .btn {
        font-size: 1.0625rem;
        padding: 14px 40px;
    }

    /* Tablet-up improvements */
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .icon-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .icon-item {
        padding: 1.25rem;
    }

    .icon-item .icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .icon-item p {
        font-size: 0.9rem;
    }

    .pricing-table {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .pricing-card.featured {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
        transform: scale(1.02);
    }

    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
        gap: 1.25rem;
    }

    .faq-icon {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }

    .gallery-filters {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .gallery-filter-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        min-height: 44px;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .pricing-info-section {
        margin-top: 3rem;
        padding: 2rem;
    }

    .team-cta-section,
    .faq-cta-section {
        margin-top: 3rem;
        padding: 2.5rem;
    }

    .faq-cta-section h3,
    .team-cta-section h3 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .faq-cta-section p,
    .team-cta-section p {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {

    /* Desktop typography scaling */
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    h4 {
        font-size: 1.5rem;
    }

    h5 {
        font-size: 1.25rem;
    }

    p {
        font-size: 1.0625rem;
    }

    .section {
        padding: 100px 0;
    }

    .section-sm {
        padding: 60px 0;
    }

    .section-lg {
        padding: 140px 0;
    }

    .section-header {
        margin-bottom: 4rem;
    }

    .section-header>p {
        font-size: 1.25rem;
    }

    /* Hero desktop scaling */
    .hero h1 {
        font-size: 4rem;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .hero p {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
        line-height: 1.7;
    }

    .hero-cta {
        gap: 1.5rem;
        margin-top: 2.5rem;
        flex-direction: row;
    }

    .hero .btn {
        font-size: 1.125rem;
        padding: 16px 48px;
    }

    /* Desktop improvements */
    .comparison-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .icon-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 2rem;
        margin: 3rem 0;
    }

    .icon-item {
        padding: 1.5rem;
    }

    .icon-item:hover {
        background: var(--primary-light);
        transform: translateY(-8px);
    }

    .icon-item .icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .icon-item p {
        font-size: 0.875rem;
    }

    .pricing-table {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1.05);
    }

    .pricing-card:hover {
        transform: translateY(-12px);
        box-shadow: var(--shadow-lg);
    }

    .faq-container {
        max-width: 800px;
        margin: 3rem auto;
    }

    .faq-question {
        padding: 1.5rem;
        font-size: 1.05rem;
        gap: 1.5rem;
        min-height: 50px;
    }

    .faq-icon {
        width: 32px;
        height: 32px;
    }

    .faq-question:hover {
        background: var(--bg-light);
    }

    .faq-question:hover .faq-icon {
        background: var(--primary);
        color: white;
        transform: scale(1.1);
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }

    .faq-item:hover {
        border-color: var(--primary);
        box-shadow: var(--shadow-md);
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin: 3rem 0;
    }

    .gallery-filters {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .gallery-filter-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        min-height: 44px;
    }

    .comparison-slider {
        max-width: 800px;
        margin: 3rem auto;
    }

    .pricing-info-section {
        margin-top: 4rem;
        padding: 2.5rem;
        background: white;
        border-radius: 12px;
    }

    .team-cta-section,
    .faq-cta-section {
        margin-top: 4rem;
        padding: 3rem;
    }

    .faq-cta-section h3,
    .team-cta-section h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .faq-cta-section p,
    .team-cta-section p {
        font-size: 1.05rem;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    h4 {
        font-size: 1.35rem;
    }

    h5 {
        font-size: 1.15rem;
    }

    p {
        font-size: 1.0625rem;
    }

    .section {
        padding: 100px 0;
    }

    .section-sm {
        padding: 60px 0;
    }

    .section-lg {
        padding: 140px 0;
    }

    .section-header {
        margin-bottom: 4rem;
    }

    .section-header h2 {
        margin-bottom: 1rem;
    }

    .section-header>p {
        font-size: 1.25rem;
    }

    .hero {
        padding: 120px 0;
        min-height: auto;
    }

    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
}

*,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
}
}
}