/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables */
:root {
    --uniops-green: #1e703d;
    --uniops-green-dark: #166534;
    --uniops-purple: #5b67ff;
    --uniops-dark: #1f2937;
    --uniops-light: #f8fafc;
    --background: #ffffff;
    --foreground: #1f2937;
    --muted-foreground: #6b7280;
    --border: #e5e7eb;
    --input: #f3f4f6;
    --card: #ffffff;
    --card-foreground: #1f2937;
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Poppins', serif;
    --radius: 0.75rem;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--uniops-dark);
    margin-bottom: 1rem;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.5rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

.text-gradient {
    background: linear-gradient(135deg, var(--uniops-green), var(--uniops-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-green {
    color: var(--uniops-green);
}

.text-bold {
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--uniops-green);
    color: white;
    box-shadow: 0 4px 12px rgba(30, 112, 61, 0.3);
}

.btn-primary:hover {
    background-color: var(--uniops-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 112, 61, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--uniops-dark);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--uniops-green);
    color: var(--uniops-green);
    transform: translateY(-2px);
}

.btn-ghost {
    background-color: transparent;
    color: var(--muted-foreground);
    text-decoration: none;
    padding: 0.5rem 1rem;
}

.btn-ghost:hover {
    color: var(--uniops-green);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(30, 112, 61, 0.3); }
    50% { box-shadow: 0 0 40px rgba(30, 112, 61, 0.6); }
}

@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-element {
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand .logo {
    height: 48px;
    width: auto;
    
    padding: 8px;
    border-radius: 8px;
   
    transition: transform 0.3s ease;
}

.nav-brand .logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--uniops-green);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--uniops-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(circle at 25% 25%, rgba(30, 112, 61, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(30, 112, 61, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(249, 250, 251, 0.8) 100%);
}

.floating-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(30, 112, 61, 0.1), rgba(91, 103, 255, 0.1));
    border: 1px solid rgba(30, 112, 61, 0.2);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--uniops-dark);
    margin-bottom: 1.5rem;
    animation: bounce-slow 2s ease-in-out infinite;
}

.premium-badge i {
    color: var(--uniops-green);
    margin-right: 0.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--uniops-dark);
    line-height: 1.1;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--muted-foreground);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.hero-actions .btn {
  white-space: nowrap;   /* Text ko ek line me rakhega */
  padding: 0.75rem 1.5rem; /* thoda spacing */
  min-width: max-content;  /* ensure karega ki button shrink na ho */
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.hero-actions .btn i {
    margin-right: 0.75rem;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.dashboard-container {
    position: relative;
    transition: all 0.5s ease;
}

.dashboard-container:hover {
    transform: scale(1.02);
}

.dashboard-img {
    width: 100%;
    height: 24rem;
    object-fit: contain;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.dashboard-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 1.5rem;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 4s ease-in-out infinite;
}

.analytics-card {
    top: -1.5rem;
    left: -1.5rem;
}

.activity-card {
    bottom: -1.5rem;
    right: -1.5rem;
}

.card-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.status-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.status-dot.green {
    background-color: #10b981;
}

.status-dot.purple {
    background-color: var(--uniops-purple);
}

.card-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--uniops-dark);
}

.card-value {
    font-size: 1.5rem;
    font-weight: 800;
}

.card-value.green {
    color: #10b981;
}

.card-value.purple {
    color: var(--uniops-purple);
}

.card-icon {
    font-size: 2rem;
}

.card-icon.green {
    color: #10b981;
}

.card-icon.purple {
    color: var(--uniops-purple);
}

.floating-logo {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    border: 2px solid rgba(30, 112, 61, 0.2);
}

.logo-img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: var(--uniops-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 112, 61, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 112, 61, 0.15);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-icon.emerald {
    background: linear-gradient(135deg, #10b981, #059669);
}

.feature-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.feature-icon.orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--uniops-dark);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-benefits {
    list-style: none;
}

.feature-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--muted-foreground);
}

.feature-benefits i {
    color: var(--uniops-green);
    margin-right: 0.75rem;
    font-size: 1.125rem;
}

/* Modules Section */
.modules {
    padding: 6rem 0;
    background-color: white;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .modules-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .modules-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.7s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(30, 112, 61, 0.1);
}

.module-card:hover {
    transform: translateY(-1rem) scale(1.1);
    box-shadow: 0 20px 40px rgba(30, 112, 61, 0.2);
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(30, 112, 61, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.module-card:hover::before {
    opacity: 1;
}

.module-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1.5rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.7s ease;
    position: relative;
    z-index: 10;
}

.module-card:hover .module-icon {
    transform: scale(1.25) rotate(12deg);
}

.module-icon.green {
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.module-icon.emerald {
    background: linear-gradient(135deg, #10b981, #059669);
}

.module-icon.teal {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.module-icon.dark-green {
    background: linear-gradient(135deg, #166534, #15803d);
}

.module-icon.emerald-dark {
    background: linear-gradient(135deg, #047857, #065f46);
}

.module-icon.lime {
    background: linear-gradient(135deg, #65a30d, #84cc16);
}

.module-icon.dark-green-2 {
    background: linear-gradient(135deg, #15803d, #166534);
}

.module-icon.teal-dark {
    background: linear-gradient(135deg, #0f766e, #115e59);
}

.module-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--uniops-dark);
    position: relative;
    z-index: 10;
    transition: color 0.5s ease;
}

.module-card:hover .module-name {
    color: var(--uniops-green);
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(30, 112, 61, 0.1), rgba(91, 103, 255, 0.1));
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .benefits-content {
        grid-template-columns: 1fr 1fr;
    }
}

.benefits-cards {
    margin-top: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--uniops-dark);
    margin-bottom: 1rem;
}

.benefit-points {
    margin-top: 1rem;
}

.benefit-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--uniops-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.check-icon i {
    color: white;
    font-size: 0.75rem;
}

.benefit-point p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.benefit-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Decision Making Section */
.decision-making {
    padding: 6rem 0;
    background-color: white;
}

.decision-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

@media (min-width: 1024px) {
    .decision-content {
        grid-template-columns: 1fr 1fr;
    }
}

.decision-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.decision-cards {
    margin-top: 2rem;
}

.decision-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
}

.decision-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--uniops-dark);
    margin-bottom: 1rem;
}

.decision-points {
    margin-top: 1rem;
}

.decision-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.decision-point p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background-color: var(--uniops-light);
    position: relative;
    overflow: hidden;
}

.floating-logo-bg {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    opacity: 0.05;
}

.logo-watermark {
    width: 14rem;
    height: 14rem;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

.logo-header {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.section-logo {
    height: 3rem;
    width: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stars {
    display: flex;
    margin-bottom: 1rem;
}

.stars i {
    color: var(--uniops-green);
    margin-right: 0.25rem;
}

.testimonial-content {
    color: var(--muted-foreground);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.author-name {
    font-weight: 600;
    color: var(--uniops-dark);
}

.author-role {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.pricing-bg {
    position: absolute;
    top: 5rem;
    right: 5rem;
    opacity: 0.05;
}

.logo-watermark-pricing {
    width: 12rem;
    height: 12rem;
    object-fit: contain;
    animation: float 8s ease-in-out infinite;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pricing-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--uniops-green);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--uniops-green);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(30, 112, 61, 0.15);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--uniops-green);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;

  white-space: nowrap;   /* Text ko ek line me rakhega */
  padding: 0.75rem 1.5rem; /* thoda spacing */
  min-width: max-content;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--uniops-dark);
}

.plan-description {
    color: var(--muted-foreground);
    margin: 0.5rem 0;
}

.plan-price {
    margin: 1.5rem 0;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--uniops-dark);
}

.period {
    color: var(--muted-foreground);
}

.plan-users {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.plan-trial {
    font-size: 0.875rem;
    color: var(--uniops-green);
    font-weight: 500;
    margin-top: 0.25rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--muted-foreground);
}

.plan-features i {
    margin-right: 0.75rem;
    font-size: 1.125rem;
}

.plan-features .fa-check-circle {
    color: var(--uniops-green);
}

.plan-features .fa-times {
    color: #ef4444;
}

.plan-features .disabled {
    color: #9ca3af;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--uniops-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.floating-logo-contacts {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.logo-contact-1 {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    width: 10rem;
    height: 10rem;
    object-fit: contain;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.logo-contact-2 {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    object-fit: contain;
    opacity: 0.05;
    animation: float 8s ease-in-out infinite;
    animation-delay: 3s;
}

.section-logo-white {
    height: 4rem;
    width: auto;
    filter: brightness(0) invert(1);
}

.section-title-white {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .section-title-white {
        font-size: 3.5rem;
    }
}

.section-subtitle-white {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 48rem;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.contact-benefits {
    margin-top: 2rem;
}

.contact-benefit {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.benefit-text p {
    opacity: 0.9;
}

.contact-form-container {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--uniops-dark);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select {
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--input);
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--uniops-green);
    box-shadow: 0 0 0 3px rgba(30, 112, 61, 0.1);
}

.terms-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-align: center;
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background-color: var(--uniops-dark);
    color: white;
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }
}

.footer-logo .logo {
    height: 2.5rem;
    width: auto;
    margin-bottom: 1rem;
}

.footer-description {
    color: #d1d5db;
    max-width: 28rem;
    margin-bottom: 0.75rem;
}

.footer-company {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-company a {
    color: var(--uniops-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-company a:hover {
    color: #10b981;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: #d1d5db;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--uniops-green);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-column h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--uniops-green);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #d1d5db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-actions {
        display: none;
    }
    
    .hero {
        padding: 6rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .section-title-white {
        font-size: 2rem;
    }
}

@media (max-width: 1024px) {
    .hero-content,
    .benefits-content,
    .decision-content,
    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Animation Classes */
.revealed {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}