/* Variables */
:root {
    --primary-blue: #409FFF;
    --primary-blue-dark: #2982e6;
    --primary-blue-light: #70b8ff;
    --primary-gradient: linear-gradient(135deg, #409FFF, #4e6fff);
    --primary-bg: #0D1117;
    --secondary-bg: #020510;
    --card-bg: #141B27;
    --card-border: rgba(64, 159, 255, 0.08);
    --purple-accent: #9164ff;
    --red-accent: #ff5757;
    --green-accent: #4caf50;
    --amber-accent: #ffb74d;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Background Elements */
.noise-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.02;
    z-index: -1;
    pointer-events: none;
}

.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    z-index: -2;
    pointer-events: none;
}

/* Typography */
.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

/* Navbar */
#navbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-color: rgba(13, 17, 23, 0.3);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.logo-container {
    position: relative;
}

.logo-path, .logo-circle {
    filter: drop-shadow(0 0 8px rgba(64, 159, 255, 0.5));
}

.nav-link {
    position: relative;
    font-weight: 500;
    padding: 0.5rem;
    transition: color 0.3s ease;
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
}

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

.login-button {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.login-button:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Mobile Menu */
.menu-button {
    width: 24px;
    height: 18px;
    position: relative;
    z-index: 200;
}

.menu-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-button span:first-child {
    top: 0;
}

.menu-button span:nth-child(2) {
    top: 8px;
}

.menu-button span:last-child {
    top: 16px;
}

.menu-button.active span:first-child {
    transform: translateY(8px) rotate(45deg);
}

.menu-button.active span:nth-child(2) {
    opacity: 0;
}

.menu-button.active span:last-child {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(10, 15, 25, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: all 0.3s ease;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    display: none;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-blue);
}

.mobile-login-button {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    background-color: var(--primary-blue);
    color: white;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-login-button:hover {
    background-color: var(--primary-blue-dark);
}

/* Hero Section */
.hero-section {
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(64, 159, 255, 0.15) 0%, rgba(64, 159, 255, 0) 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-blue);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(64, 159, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(64, 159, 255, 0.4);
    background-color: var(--primary-blue-dark);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border-radius: 0.375rem;
    border: 1px solid rgba(64, 159, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(64, 159, 255, 0.2);
    border-color: rgba(64, 159, 255, 0.5);
    background-color: rgba(64, 159, 255, 0.1);
}

/* Orbit Animation */
.orbit-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(64, 159, 255, 0.6));
}

.orbit-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(64, 159, 255, 0.1);
    animation: rotate 30s linear infinite;
}

.orbit-path:hover {
    animation-play-state: paused;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.platform-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: rgba(10, 15, 25, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(64, 159, 255, 0.4);
    border: 1px solid rgba(64, 159, 255, 0.2);
    transform-origin: center center;
    animation: counter-rotate 30s linear infinite;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
    transform: rotate(calc(var(--i) * 60deg)) translate(-130px) rotate(calc(-1 * var(--i) * 60deg));
}

.platform-icon:hover {
    z-index: 10;
    box-shadow: 0 0 20px rgba(64, 159, 255, 0.7);
    filter: brightness(1.2);
}

@keyframes counter-rotate {
    from { transform: rotate(calc(var(--i) * 60deg)) translate(-130px) rotate(calc(-1 * var(--i) * 60deg)); }
    to { transform: rotate(calc(var(--i) * 60deg + 360deg)) translate(-130px) rotate(calc(-1 * var(--i) * 60deg - 360deg)); }
}

/* Social Proof */
.social-proof {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rating-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.star {
    color: #FFD700;
    font-size: 1.25rem;
}

.rating-count {
    color: var(--text-secondary);
    margin-left: 0.75rem;
    font-size: 0.9rem;
}

.brand-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-top: 2rem;
}

.brand-logo {
    height: 28px;
    width: auto;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.brand-logo:hover {
    opacity: 0.6;
    filter: grayscale(0%);
    transform: translateY(-3px);
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(64, 159, 255, 0.1) 0%, rgba(64, 159, 255, 0) 70%);
    z-index: 0;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    padding: 1.75rem;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.3), 0 0 15px rgba(64, 159, 255, 0.2);
    border-color: rgba(64, 159, 255, 0.2);
}

.feature-icon {
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(64, 159, 255, 0.3));
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(64, 159, 255, 0.5));
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Calculator Section */
.calculator-section {
    padding: 6rem 0;
    background-color: rgba(14, 20, 33, 0.5);
    position: relative;
}

.calculator-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 30%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(64, 159, 255, 0.1) 0%, rgba(64, 159, 255, 0) 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.calculator-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.calculator-wrapper {
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid var(--card-border);
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calculator-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -5px rgba(0, 0, 0, 0.3), 0 0 15px rgba(64, 159, 255, 0.2);
}

.calc-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: block;
}

.calc-display {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.currency {
    font-size: 1.75rem;
    margin-right: 0.25rem;
    opacity: 0.8;
}

.slider-container {
    position: relative;
    margin-bottom: 2rem;
}

.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(to right, var(--primary-blue), #64a5ff);
    outline: none;
    margin: 1rem 0;
    z-index: 2;
    position: relative;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(64, 159, 255, 0.7);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(64, 159, 255, 0.9);
}

.slider-track {
    position: absolute;
    top: calc(1rem + 3px);
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.slider-track-active {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    border-radius: 3px;
    background: linear-gradient(to right, var(--primary-blue), #64a5ff);
    transition: width 0.2s ease;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    color: var(--text-tertiary);
    font-size: 0.75rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.result-card {
    background-color: rgba(10, 15, 25, 0.5);
    border-radius: 0.75rem;
    padding: 1.25rem;
    border: 1px solid rgba(64, 159, 255, 0.1);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-3px);
    border-color: rgba(64, 159, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 12px rgba(64, 159, 255, 0.2);
}

.result-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.result-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.calc-note {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-top: 1rem;
    text-align: center;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(64, 159, 255, 0.1) 0%, rgba(64, 159, 255, 0) 70%);
    transform: translateY(50%);
    z-index: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    border: 1px solid var(--card-border);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.3), 0 0 15px rgba(64, 159, 255, 0.2);
    border-color: rgba(64, 159, 255, 0.2);
}

.pricing-card.popular {
    border-color: rgba(64, 159, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 0 15px rgba(64, 159, 255, 0.2);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-accent));
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.4rem 1.2rem;
    transform: translateX(30%) translateY(-10%) rotate(45deg);
    transform-origin: center;
    width: 130px;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.pricing-header {
    padding: 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.pricing-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

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

.pricing-price {
    display: flex;
    align-items: baseline;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.period {
    color: var(--text-secondary);
    margin-left: 0.25rem;
    font-size: 0.9rem;
}

.pricing-features {
    padding: 1.75rem;
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.check-icon {
    width: 18px;
    height: 18px;
    margin-right: 0.75rem;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.pricing-action {
    padding: 0 1.75rem 1.75rem;
    position: relative;
    z-index: 1;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background-color: rgba(14, 20, 33, 0.5);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(64, 159, 255, 0.1) 0%, rgba(64, 159, 255, 0) 70%);
    transform: translate(-30%, -30%);
    z-index: 0;
}

.main-testimonial {
    max-width: 850px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    border: 1px solid var(--card-border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.testimonial-card.large {
    padding: 2rem;
}

.testimonial-card.small {
    padding: 1.25rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.3), 0 0 15px rgba(64, 159, 255, 0.2);
    border-color: rgba(64, 159, 255, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.avatar {
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.avatar.purple { background-color: var(--purple-accent); }
.avatar.red { background-color: var(--red-accent); }
.avatar.green { background-color: var(--green-accent); }
.avatar.amber { background-color: var(--amber-accent); }

.author {
    font-weight: 600;
    font-size: 1rem;
}

.position {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.rating {
    display: flex;
    margin-bottom: 1.25rem;
}

.star {
    color: #FFD700;
    width: 18px;
    height: 18px;
    margin-right: 0.25rem;
}

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

.testimonial-card.small .testimonial-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

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

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

.result-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.result-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon span {
    position: absolute;
    background-color: var(--primary-blue);
    transition: all 0.3s ease;
}

.faq-icon .vertical {
    width: 2px;
    height: 20px;
    top: 0;
    left: 9px;
}

.faq-icon .horizontal {
    width: 20px;
    height: 2px;
    top: 9px;
    left: 0;
}

.faq-item.active .faq-icon .vertical {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background-color: rgba(14, 20, 33, 0.5);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(64, 159, 255, 0.1) 0%, rgba(64, 159, 255, 0) 70%);
    transform: translate(30%, -30%);
    z-index: 0;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-card {
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid var(--card-border);
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -5px rgba(0, 0, 0, 0.3), 0 0 15px rgba(64, 159, 255, 0.2);
    border-color: rgba(64, 159, 255, 0.2);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: rgba(10, 15, 25, 0.5);
    border: 1px solid rgba(64, 159, 255, 0.2);
    border-radius: 0.375rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(64, 159, 255, 0.2);
    background-color: rgba(10, 15, 25, 0.7);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

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

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--primary-blue);
    color: white;
    font-weight: 600;
    border-radius: 0.375rem;
    border: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    cursor: pointer;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(64, 159, 255, 0.4);
    background-color: var(--primary-blue-dark);
}

.form-disclaimer {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* Footer */
.site-footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.company-info {
    color: var(--text-secondary);
    font-style: normal;
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-menu {
    list-style: none;
}

.footer-link {
    display: inline-block;
    color: var(--text-secondary);
    padding: 0.4rem 0;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(64, 159, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.social-icon:hover {
    background-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(64, 159, 255, 0.3);
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

.newsletter-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.25rem;
    text-align: center;
}

.copyright {
    color: var(--text-tertiary);
    font-size: 0.8rem;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 8rem 0 4rem;
    }
    
    .orbit-wrapper {
        width: 280px;
        height: 280px;
    }
    
    .platform-icon {
        transform: rotate(calc(var(--i) * 60deg)) translate(-110px) rotate(calc(-1 * var(--i) * 60deg));
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .price {
        font-size: 1.75rem;
    }
    
    .calculator-wrapper {
        padding: 1.5rem;
    }
    
    .calc-display {
        font-size: 1.75rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .testimonial-card.large {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 7rem 0 3rem;
    }
    
    .orbit-wrapper {
        width: 240px;
        height: 240px;
        margin: 2rem auto 0;
    }
    
    .platform-icon {
        width: 36px;
        height: 36px;
        margin-top: -18px;
        margin-left: -18px;
        transform: rotate(calc(var(--i) * 60deg)) translate(-90px) rotate(calc(-1 * var(--i) * 60deg));
    }
    
    .brand-logos {
        gap: 1.5rem;
    }
    
    .pricing-header, .pricing-features, .pricing-action {
        padding: 1.25rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .result-number {
        font-size: 1.5rem;
    }
}
