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

:root {
    /* Color Palette */
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --primary-soft: rgba(37, 99, 235, 0.12);
    --secondary-color: #10b981;
    --secondary-dark: #0d9668;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
    --gray-color: #3b4240;
    --gray-light: #e5e7eb;
    --gray-dark: #374151;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --success-color: #10b981;

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Poppins', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--gray-color);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    margin-top: auto;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-sm) 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center; /* alinea verticalmente */
}

#logo, #logofooter {
  width: 60px;
  height: 45px;
  background: url(../images/asternic_logo.png) no-repeat 0 0;
  background-size: contain; /* opcional, mejora el ajuste */
  display: inline-block; /* por las dudas */
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-color);
}

.brand-subtitle {
    font-size: 0.88rem;
    color: var(--gray-color);
}

.logo-subtitle {
    font-family: 'Gochi Hand', cursive;
    font-size: 1.75rem;
    color: var(--gray-color);
    margin-left: 8px;
    margin-top: -2px;
}

.logo-subtitle-footer {
    font-family: 'Gochi Hand', cursive;
    font-size: 1rem;
    color: var(--gray-light);
    margin-top: -2px;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    list-style: none;
}

.nav-menu li a {
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-menu li a.active {
    color: var(--primary-color);
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.nav-cta {
    margin-left: var(--spacing-sm);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    margin-left: 0.35rem;
    font-size: 0.75em;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-xs) 0;
    list-style: none;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 400;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding-top: 100px;
    padding-bottom: var(--spacing-xxl);
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--dark-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    color: var(--gray-dark);
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background-color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    font-size: 0.875rem;
    font-weight: 500;
}

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

.hero-image {
    flex: 1;
}

.dashboard-preview {
    background-color: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.dashboard-preview img {
    width: 100%;
    height: auto;
    display: block;
}

/* Page Hero (inner pages) */
.page-hero {
    padding-top: 120px;
    padding-bottom: var(--spacing-xl);
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
}

.page-hero .hero-title {
    font-size: 2.75rem;
}

.page-hero .hero-subtitle {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Styles */
.section {
    padding: var(--spacing-xxl) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-color);
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.about-text {
    flex: 1;
}

.about-stats {
    display: flex;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-color);
    margin-top: var(--spacing-xs);
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.globe-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.globe-container i {
    font-size: 12rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.globe-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.dot-1 { top: 9%; left: 30%; }
.dot-2 { top: 40%; left: 50%; }
.dot-3 { top: 45%; left: 14%; }
.dot-4 { top: 38%; left: 37%; }
.dot-5 { top: 30%; left: 50%; }
.dot-6 { top: 50%; left: 34%; }
.dot-7 { top: 17%; left: 11%; }
.dot-8 { top: 30%; left: 23%; }

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

/* Features Section */
.features {
    background-color: var(--light-color);
}

.versions-grid {
    display: grid;
    gap: var(--spacing-lg);
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.feature-description {
    color: var(--gray-color);
    font-size: 1rem;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin-top: var(--spacing-sm);
}

.feature-card ul li {
    padding: 0.25rem 0;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.feature-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    color: var(--success-color);
    margin-right: 0.5rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

/* CTA Banner */
.cta-banner {
    padding: var(--spacing-xl);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: var(--spacing-lg);
    align-items: center;
}

.cta-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.cta-banner h3 {
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.cta-banner h4 {
    margin-bottom: 0;
    color: var(--gray-color);
    font-weight: 400;
    font-family: var(--font-primary);
}

/* Download Section */
.download-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.download-text {
    flex: 1;
}

.download-details {
    margin: var(--spacing-lg) 0;
}

.detail {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

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

.system-requirements {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-md);
    background-color: var(--light-color);
    border-radius: var(--radius-md);
}

.system-requirements h4 {
    margin-bottom: var(--spacing-sm);
}

.requirements {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.requirement {
    font-size: 0.875rem;
    color: var(--gray-color);
}

.download-image {
    flex: 1;
}

.code-window {
    background-color: var(--dark-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-bottom: var(--spacing-lg);
}

.window-header {
    background-color: #333;
    color: white;
    padding: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.window-controls {
    display: flex;
    gap: var(--spacing-xs);
}

.window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window-dot.red {
    background-color: var(--danger-color);
}

.window-dot.yellow {
    background-color: var(--warning-color);
}

.window-dot.green {
    background-color: var(--success-color);
}

.window-title {
    font-size: 0.875rem;
    font-weight: 500;
}

.window-content {
    padding: var(--spacing-lg);
    font-family: 'Courier New', monospace;
}

.code-line {
    display: block;
    color: #00ff00;
    margin-bottom: var(--spacing-sm);
    font-size: 0.875rem;
}

.code-line:last-child {
    margin-bottom: 0;
}

.blinking-cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Pricing Section */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--gray-light);
    padding-bottom: var(--spacing-lg);
}

.pricing-title {
    font-size: 1.5rem;
    color: var(--dark-color);
}

.pricing-price {
    margin: var(--spacing-sm) 0;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--gray-color);
}

.pricing-description {
    color: var(--gray-color);
    font-size: 0.875rem;
}

.pricing-features {
    flex: 1;
    margin-bottom: var(--spacing-lg);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

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

.feature.disabled i {
    color: var(--gray-light);
}

.feature.disabled span {
    color: var(--gray-light);
    text-decoration: line-through;
}

/* Feature comparison table */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-lg) 0;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.pricing-table th,
.pricing-table td {
    padding: 0.75rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-light);
}

.pricing-table thead th {
    background-color: var(--dark-color);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-table thead th:first-child {
    text-align: left;
}

.pricing-table tbody th {
    text-align: left;
    font-weight: 500;
    color: var(--dark-color);
}

.pricing-table tbody tr:nth-child(even) {
    background-color: var(--light-color);
}

.pricing-table tbody tr:hover {
    background-color: rgba(37, 99, 235, 0.05);
}

.pricing-table .price-cell {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-table .btn {
    margin: 0.5rem 0;
}

/* Contact form */
.contact-section {
    padding: var(--spacing-xxl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
}

.contact-form-card {
    background-color: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
    color: var(--dark-color);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.address-card {
    background-color: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    height: fit-content;
}

.address-card h4 {
    margin-bottom: var(--spacing-md);
}

.address-card p {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.address-card i {
    color: var(--primary-color);
    margin-top: 3px;
    width: 16px;
}

.map-container {
    margin-bottom: var(--spacing-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 250px;
    border: 0;
}

/* Testimonials */
.testimonial {
    margin: 0;
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    padding: 1.5rem 2.5rem;
    position: relative;
    border-radius: var(--radius-lg);
    font-style: italic;
    color: var(--gray-dark);
    margin-bottom: var(--spacing-lg);
}

.testimonial:before {
    content: "\201C";
    position: absolute;
    top: 0;
    left: 10px;
    font-size: 60px;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-author {
    font-family: 'Gochi Hand', cursive;
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: var(--spacing-lg);
}

.testimonial-author span {
    color: var(--gray-color);
}

/* Sidebar card */
.sidebar-card {
    background-color: white;
    padding: var(--spacing-xs);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-lg);
}

.sidebar-card h2 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

/* Changelog */
.changelog-toggle {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.changelog-content {
    background-color: var(--light-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin-top: var(--spacing-sm);
    font-size: 0.9rem;
}

.changelog-content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.changelog-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.changelog-content ul {
    margin-left: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.changelog-content li {
    font-size: 0.85rem;
    color: var(--gray-color);
    margin-bottom: 0.25rem;
}

/* Inline code */
pre {
    background-color: var(--dark-color);
    color: #00ff00;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Antispam */
.antispam {
    display: none;
}

/* Noty notification styles */
.noty_bar {
    border-radius: var(--radius-md) !important;
    font-family: var(--font-primary) !important;
}

/* Screenshot frame */
.screenshot-frame {
    border: 4px solid var(--gray-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin: var(--spacing-md) 0;
}

.screenshot-frame img {
    display: block;
    width: 100%;
    height: auto;
}

/* Services section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.service-card {
    _background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    background: var(--surface-color);
    border: 1px solid rgba(219, 227, 239, 0.95);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-card .price {
    display: block;
    margin: var(--spacing-sm) 0;
}

.service-card .savings {
    color: var(--danger-color);
    font-size: 0.8rem;
    display: block;
    margin-bottom: var(--spacing-sm);
}


.feature-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.feature-item .feature-icon-small {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item .feature-icon-small i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.feature-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Trial form */
.trial-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.trial-image {
    border: 3px solid var(--gray-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.trial-image img {
    width: 100%;
    display: block;
}

/* Requirements grid */
.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.requirements-card {
    background-color: var(--light-color);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
}

.requirements-card h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

/* Products showcase */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.product-card {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card-body {
    padding: var(--spacing-lg);
}

.product-card-body h4 {
    margin-bottom: var(--spacing-sm);
}

.product-card-body p {
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand .brand-name,
.footer-brand .brand-subtitle,
.footer-title {
    color: #fff;
}

.footer-brand .logo-container {
  margin-bottom:10px;
}

.footer-description {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
}

.footer-description-small {
    color: #9ca3af;
    font-size: 0.6rem;
    margin-bottom: var(--spacing-md);
    margin-top: 1rem;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}
.hero-panel,
.dashboard-preview,
.card,
.feature-card,
.info-card,
.callout-card,
.testimonial-card,
.pricing-card,
.comparison-wrap,
.archive-item,
.release-card,
.support-card,
.cta-banner,
.note-card,
.product-card,
.table-card {
    background: var(--surface-color);
    border: 1px solid rgba(219, 227, 239, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.social-link {
    width: 36px;
    height: 36px;
    background-color: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
}

.footer-title {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    color: white;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links li a {
    color: #9ca3af;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: var(--spacing-lg);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-legal a {
    color: #9ca3af;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

/* Callout card */
.callout-card {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-lg);
}

.callout-card p:last-child {
    margin-bottom: 0;
}

/* Alert / note */
.note {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin: var(--spacing-md) 0;
}

.note-info {
    background-color: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: var(--primary-dark);
}

.note-warning {
    background-color: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: #92400e;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container,
    .about-content,
    .download-content,
    .contact-grid,
    .trial-steps,
    .feature-list {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: white;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-md);
        transition: left 0.3s ease;
        gap: var(--spacing-md);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: var(--spacing-md);
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .about-stats {
        justify-content: center;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .section {
        padding: var(--spacing-xl) 0;
    }

    .features-grid,
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Animation Styles */
.animated {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pd5 { padding: 5px !important; }

.card-grid-3, .testimonial-grid, .download-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}


.card-grid-3, .testimonial-grid, .download-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.stats-grid, .testimonial-grid, .product-grid, .download-grid, .support-grid, .card-grid-2, .card-grid-3 {
    display: grid;
    gap: var(--spacing-lg);
}

.mt1 {
margin-top:1em;
}

.feature-card,
.info-card,
.support-card,
.release-card,
.archive-item,
.testimonial-card,
.product-card {
    padding: var(--spacing-lg);
}

.badge,
.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow-sm);
    font-size: 0.95rem;
    font-weight: 600;
}

.badge i,
.pill i {
    color: var(--secondary-color);
}

.badge,
.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow-sm);
    font-size: 0.95rem;
    font-weight: 600;
}

.badge i,
.pill i {
    color: var(--secondary-color);
}

.release-meta,
.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.release-card .release-actions,
.archive-item .release-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin: auto;
}

.support-grid,
.card-grid-2,
.about-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-list, .bullet-list, .stack-list, .plain-list {
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.feature-list li, .bullet-list li, .stack-list li {
    display: flex;
    gap: 0.65rem;
}
.feature-list i,
.bullet-list i,
.stack-list i,
.detail i {
    color: var(--secondary-color);
    margin-top: 0.18rem;
}

fieldset { border:none; }

.service-card form {
  margin-top: auto;
}

@media (max-width: 768px) {
  .cta-banner {
    grid-template-columns: 1fr; /* Stack elements vertically */
    text-align: center; /* Optional: center text for mobile */
  }

  .inline-actions {
    justify-content: center; /* Center buttons if they are flex items */
    margin-top: var(--spacing-md);
  }
}

.requirements-card {
    background: var(--surface-color);
    border: 1px solid rgba(219, 227, 239, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
