/* 
=============================================
VARIABLES & RESET
============================================= 
*/
:root {
    /* Cloud White Tech Palette */
    --primary-color: #3182CE;
    /* Soft Tech Blue */
    --primary-dark: #2C5282;
    --primary-light: #63B3ED;

    --secondary-color: #718096;
    /* Cool Grey */
    --accent-color: #38B2AC;
    /* Teal Accent */

    --bg-white: #FFFFFF;
    --bg-cloud: #F7FAFC;
    /* Very light grey/blue tint */
    --bg-surface: #EDF2F7;

    --text-main: #2D3748;
    --text-muted: #4A5568;
    --text-light: #A0AEC0;

    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

    --header-height: 80px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* 
=============================================
UTILITY CLASSES
============================================= 
*/
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(49, 130, 206, 0.39);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(49, 130, 206, 0.23);
}

.btn-secondary {
    background-color: var(--bg-surface);
    color: var(--text-main);
}

.btn-secondary:hover {
    background-color: #E2E8F0;
    transform: translateY(-2px);
}

.btn-white {
    background-color: white;
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.icon-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.icon-btn:hover i {
    transform: translateX(4px);
}

/* 
=============================================
HEADER & NAVIGATION
============================================= 
*/
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-wrapper .logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 40px;
    width: auto;
    filter: invert(1);
}

.logo-text {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.desktop-nav .nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Menu State */
.mobile-menu-toggle.active .top-bar {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-toggle.active .mid-bar {
    opacity: 0;
}

.mobile-menu-toggle.active .bot-bar {
    transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
}

.mobile-cta {
    color: var(--primary-color) !important;
}

/* 
=============================================
HERO SECTION
============================================= 
*/
.hero-section {
    position: relative;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 100px;
    overflow: hidden;
    background: linear-gradient(180deg, #FFFFFF 0%, #F7FAFC 100%);
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.5;
}

.blob-1 {
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: rgba(49, 130, 206, 0.15);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: blobFloat 20s infinite alternate;
}

.blob-2 {
    bottom: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(56, 178, 172, 0.1);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blobFloat 25s infinite alternate-reverse;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(203, 213, 224, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(203, 213, 224, 0.3) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
    align-items: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 30px;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: #CBD5E0;
}

/* 3D Composition */
.composition-3d {
    position: relative;
    height: 400px;
    width: 100%;
    perspective: 1000px;
}

.card-3d {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.main-card {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(-10deg) rotateX(5deg);
    width: 80%;
    height: 280px;
    padding: 20px;
    z-index: 2;
    transition: transform 0.5s ease;
}

.main-card:hover {
    transform: translate(-50%, -50%) rotateY(0deg) rotateX(0deg);
}

.card-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #FC8181;
}

.yellow {
    background: #F6E05E;
}

.green {
    background: #68D391;
}

.chart-area {
    height: 100px;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}

.line-chart-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.pulse-point {
    animation: glow 2s infinite;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 60px;
    padding: 0 10px;
}

.stat-bar {
    width: 12%;
    background: #EDF2F7;
    border-radius: 4px;
    transition: height 1s ease;
}

.stat-bar.active {
    background: var(--primary-color);
}

.float-card-1 {
    top: 10%;
    right: 0;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-main);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.float-card-1 i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.float-card-2 {
    bottom: 10%;
    left: 0;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-main);
    z-index: 3;
    animation: float 6s ease-in-out infinite 2s;
}

.float-card-2 i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* 
=============================================
LOGOS SECTION
============================================= 
*/
.logos-section {
    padding: 40px 0;
    border-bottom: 1px solid #EDF2F7;
}

.logos-label {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.logo-item {
    font-size: 2.5rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.logo-item:hover {
    color: var(--primary-color);
}

/* 
=============================================
SERVICES SECTION
============================================= 
*/
.services-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.section-header {
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-main);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-md);
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.service-icon-wrapper.blue {
    background: #EBF8FF;
    color: #3182CE;
}

.service-icon-wrapper.purple {
    background: #FAF5FF;
    color: #805AD5;
}

.service-icon-wrapper.green {
    background: #F0FFF4;
    color: #38A169;
}

.service-icon-wrapper.orange {
    background: #FFFAF0;
    color: #DD6B20;
}

.service-icon-wrapper.teal {
    background: #E6FFFA;
    color: #319795;
}

.service-icon-wrapper.red {
    background: #FFF5F5;
    color: #E53E3E;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.service-list {
    margin-bottom: 24px;
}

.service-list li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.service-list i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 0.8rem;
}

.text-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.text-link i {
    margin-left: 5px;
    font-size: 0.8rem;
}

/* 
=============================================
CALCULATOR SECTION
============================================= 
*/
.calculator-section {
    padding: 100px 0;
    background: var(--bg-cloud);
}

.calc-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.calc-features {
    margin-top: 40px;
}

.feature-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.calc-interface {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: border 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.calc-results {
    margin-top: 30px;
    background: #F7FAFC;
    padding: 20px;
    border-radius: var(--radius-md);
}

.result-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #E2E8F0;
    font-size: 0.95rem;
}

.result-row strong {
    font-size: 1.1rem;
}

.result-row.highlight {
    color: var(--primary-color);
    border-bottom: none;
    padding-top: 20px;
}

.result-row.highlight strong {
    font-size: 1.4rem;
}

.roi-box {
    background: var(--primary-color);
    color: white;
    margin-top: 15px;
    padding: 15px;
    border-radius: var(--radius-sm);
    justify-content: space-between;
    display: flex;
}

/* 
=============================================
TESTIMONIALS
============================================= 
*/
.testimonials-section {
    padding: 100px 0;
}

.testimonial-slider-container {
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    /* Basic static layout for grid, JS can make it slider */
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background: white;
    border: 1px solid #EDF2F7;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    flex: 0 1 350px;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: #E2E8F0;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.05rem;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 30px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.reviewer-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.reviewer-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* 
=============================================
FAQ & CTA
============================================= 
*/
.faq-section {
    padding: 100px 0;
    background: var(--bg-cloud);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
    max-height: 200px;
    /* Approximate max height */
}

.cta-section {
    padding: 100px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), #4299E1);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-visual {
    position: relative;
    z-index: 2;
}

.rocket-icon {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
}

/* 
=============================================
FOOTER
============================================= 
*/
.main-footer {
    background: #1A202C;
    color: #CBD5E0;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid #2D3748;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-logo img {
    height: 32px;
}

.brand-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.contact-col li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-col i {
    color: var(--primary-color);
    margin-top: 4px;
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* 
=============================================
LEGAL PAGE SPECIFICS
============================================= 
*/
.legal-page {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 80px;
    background: var(--bg-cloud);
}

.legal-content-box {
    background: white;
    padding: 60px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content-box h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.legal-content-box h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.legal-content-box p,
.legal-content-box ul {
    margin-bottom: 16px;
    color: var(--text-muted);
}

/* 
=============================================
CONTACT PAGE SPECIFICS
============================================= 
*/
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-top: 40px;
}

.contact-info-panel {
    background: var(--primary-dark);
    padding: 60px 40px;
    color: white;
}

.contact-info-panel h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.contact-info-panel p {
    opacity: 0.8;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.info-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.contact-form-wrapper {
    padding: 60px 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 14px;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-sm);
    font-family: inherit;
    background: #F7FAFC;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

textarea.form-control {
    resize: vertical;
}

/* 
=============================================
ANIMATIONS
============================================= 
*/
@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes glow {

    0%,
    100% {
        opacity: 1;
        r: 4;
    }

    50% {
        opacity: 0.5;
        r: 6;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.fade-in-delay {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal Classes (Triggered by JS) */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

/* 
=============================================
RESPONSIVE
============================================= 
*/
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-metrics {
        justify-content: center;
    }

    .composition-3d {
        height: 350px;
    }

    .main-card {
        width: 90%;
    }
}

@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-actions .btn {
        display: none;
    }

    /* Hide Get Quote on small screens in header, used in menu */

    .calc-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .rocket-icon {
        font-size: 5rem;
        margin-top: 30px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .legal-content-box {
        padding: 30px;
    }

    .info-item {
        flex-direction: column;
        gap: 10px;
    }
}