/* CSS Variables */
:root {
    --btn-dark-grey: #23232a;
    --btn-dark-grey-hover: #18181d;
    --primary: rgba(247, 31, 7, 0.792); /* glassy red-orange */
    --primary-foreground: hsl(0, 0%, 0%);
    --secondary: rgba(255, 153, 51, 0.35); /* glassy orange */
    --secondary-foreground: hsl(210, 40%, 98%);
    --glass-blur: blur(12px);
    --glass-border: rgba(255,255,255,0.18);
    --glass-shadow: 0 4px 32px 0 rgba(31, 38, 135, 0.15);
    --accent: hsl(15, 92%, 60%);
    --accent-foreground: hsl(210, 40%, 98%);
    --background: hsl(210, 20%, 98%);
    --foreground: hsl(222, 84%, 4.9%);
    --muted: hsl(210, 40%, 96%);
    --muted-foreground: hsl(215, 16%, 47%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(222, 84%, 4.9%);
    --border: hsl(214, 32%, 91%);
    --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system;
    --radius: 0.5rem;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1;
    color: var(--foreground);
    background-color: var(--background);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--muted-foreground);
}

.text-primary {
    color: var(--primary);
}

/* Buttons */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    box-shadow: var(--glass-shadow);
    border: 1.5px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.btn:hover,
.btn:focus {
    text-decoration: none !important;
}

.btn-primary,
.btn-secondary,
.btn-accent {
    background-color: var(--btn-dark-grey);
    color: var(--primary-foreground);
    opacity: 0.92;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-accent:hover { background-color: var(--btn-dark-grey-hover); opacity: 1; }

.btn-outline {
    background-color: rgba(255,255,255,0.18);
    color: var(--foreground);
    border: 1.5px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0.98;
}

.btn-outline:hover { background-color: var(--btn-dark-grey-hover); opacity: 1; }

.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-full { width: 100%; }

/* Fix hero section to appear below navbar */
.hero {
    padding-top: 8rem; /* ensures hero is below fixed navbar */
    padding-bottom: 4rem;
    background: linear-gradient(135deg, var(--background) 0%, var(--muted) 100%);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(248, 188, 188, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-menu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 0.75rem 2rem 1.25rem 2rem;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.nav-link {
    color: var(--muted-foreground);
    text-decoration: none !important;
    transition: color 0.2s;
}

.nav-link:hover {
    background-color: transparent !important;
    text-decoration: none !important;
    color: #e94e77 !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--foreground);
    margin: 2px 0;
    transition: 0.3s;
}

.navbar > .container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
/* nav-header/nav-menu consolidated above */

.nav-link {
    font-weight: 500;
    color: #000;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    transition: background 0.2s, color 0.2s;
}

.nav-link:hover {
    background: #e94e77;
    color: #fff;
}

.btn.btn-primary {
    /* specific combination used (e.g. nav CTA) */
    background: #e94e77;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 0.25rem;
    padding: 0.5rem 1.2rem;
    margin-left: 0.5rem;
    box-shadow: 0 2px 8px rgba(233,78,119,0.08);
}
.btn.btn-primary:hover { background: #e36242; color: #fff; }

/* Hero Section (single definition preserved) */
.hero {
    padding-top: 8rem; /* ensures hero is below fixed navbar */
    padding-bottom: 4rem;
    background: linear-gradient(135deg, var(--background) 0%, var(--muted) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.hero-dashboard {
    position: relative;
}

.dashboard-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.dashboard-header h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.dashboard-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--muted);
}

.dot.active {
    background-color: var(--accent);
}

.dashboard-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.metric-label {
    color: var(--muted-foreground);
}

.metric-value {
    font-weight: 600;
    color: var(--primary);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: var(--muted);
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.progress.accent {
    background-color: var(--accent);
}

.progress.secondary {
    background-color: var(--secondary);
}

/* Section Styles */
section {
    padding: 1rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    max-width: 48rem;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* Services Section */

.services {
    background-color: var(--background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255,255,255,0.22);
    border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: box-shadow 0.3s, transform 0.3s;
    opacity: 0.98;
    position: relative;
}
.service-card:hover {
    box-shadow: 0 16px 40px -3px rgba(31, 38, 135, 0.22);
    transform: translateY(-4px) scale(1.03);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon.primary {
    background-color: hsl(210, 92%, 95%);
    color: var(--primary);
}

.service-icon.accent {
    background-color: hsl(15, 92%, 95%);
    color: var(--accent);
}

.service-icon.secondary {
    background-color: hsl(222, 47%, 95%);
    color: var(--secondary);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--card-foreground);
}

.service-card p {
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--muted-foreground);
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Integration Section */
.integration {
    background-color: var(--muted);
}

.integration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.integration-content h3 {
    margin-bottom: 1.5rem;
}

.api-example {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.api-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.api-header h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.badge {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.code-block {
    background-color: var(--muted);
    border-radius: 0.5rem;
    padding: 1rem;
    overflow-x: auto;
}

.code-block code {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    white-space: pre;
}

.integration-sources h3 {
    margin-bottom: 1.5rem;
}

.source-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.source-item {
    display: flex;
    align-items: center;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    gap: 1rem;
}

.source-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius);
    flex-shrink: 0;
}

.source-icon.google {
    background-color: hsl(210, 92%, 95%);
}

.source-icon.meta {
    background-color: hsl(15, 92%, 95%);
}

.source-icon.custom {
    background-color: hsl(222, 47%, 95%);
}

.source-info {
    flex-grow: 1;
}

.source-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: var(--card-foreground);
}

.source-info p {
    font-size: 0.875rem;
    margin: 0;
    color: var(--muted-foreground);
}

.status {
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.status.active {
    background-color: hsl(210, 92%, 95%);
    color: var(--primary);
}

.status.available {
    background-color: hsl(210, 40%, 96%);
    color: var(--muted-foreground);
}

.integration-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Case Studies Section */
.case-studies {
    background-color: var(--background);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.case-study-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.case-study-card:hover {
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.case-study-card img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.case-study-content {
    padding: 1.5rem;
}

.industry-badge {
    background-color: var(--muted);
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.case-study-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--card-foreground);
}

.case-study-content p {
    margin-bottom: 1rem;
}

.metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background-color: var(--muted);
    color: var(--muted-foreground);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
}

/* Testimonials Section */

.testimonials {
    background-color: var(--muted);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

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

.avatar {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.author .name {
    font-weight: 600;
    color: var(--card-foreground);
    margin-bottom: 0.25rem;
}

.author .title {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.rating {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
}

.testimonial-card p::before {
    content: '"';
    font-size: 2rem;
    color: var(--primary);
    position: absolute;
    left: -0.5rem;
    top: -0.5rem;
}

.service {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
}

.service::before {
    content: '"';
    margin-right: 0.5rem;
    color: var(--primary);
}

/* Pricing Section */

.pricing {
    background-color: var(--background);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.pricing-card.popular {
    border: 2px solid var(--primary);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--card-foreground);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.period {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.pricing-card .feature-list {
    text-align: left;
    margin-bottom: 2rem;
}

/* Contact Section */

.contact {
    background-color: var(--muted);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-section h3 {
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    background-color: var(--background);
    color: var(--foreground);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(210, 92%, 45%, 0.1);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox input {
    margin: 0;
}

.contact-info-section h3 {
    margin-bottom: 1.5rem;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.benefit-content p {
    font-size: 0.875rem;
    margin: 0;
}

.contact-info {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.contact-info h4 {
    margin-bottom: 1rem;
    color: var(--card-foreground);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--muted-foreground);
}

.contact-icon {
    font-size: 1rem;
}

.response-time {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    color: var(--foreground);
    font-size: 0.875rem;
}

/* Footer */

.footer {
    color: var(--secondary-foreground);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: #18181d !important;
    margin-bottom: 1rem;
}

.footer-section p {
    max-width: 24rem;
    margin-bottom: 1.5rem;
    color: hsla(210, 40%, 98%, 0.8);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    padding: 0;
    background: none;
    color: inherit;
    text-decoration: none;
    border-radius: 0;
    font-size: 0.98rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}

.social-link:hover {
    color: #e94e77;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: hsla(210, 40%, 98%, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: var(--secondary-foreground);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid hsla(210, 40%, 98%, 0.2);
}

.copyright {
    color: hsla(0, 0%, 1%, 0.8);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: hsla(210, 40%, 98%, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: hsla(210, 40%, 98%, 0.8);
}

/* Popular Footer Styles */

.popular-footer {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 1.5rem 1.5rem 0 0;
    opacity: 0.98;
}

.popular-footer .footer-logo-row {
    margin-bottom: 1.5rem;
}

.popular-footer .footer-logo-row img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-right: 1.5rem;
}

.popular-footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: left;
    margin-bottom: 2rem;
}

.popular-footer .footer-section h3,
.popular-footer .footer-section h4 {
    color: #e94e77;
    margin-bottom: 0.75rem;
}

.popular-footer .footer-section ul {
    list-style: none;
    padding: 0;
}

.popular-footer .footer-section ul li {
    margin-bottom: 0.5rem;
}

.popular-footer .footer-section ul li a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s;
}

.popular-footer .footer-section ul li a:hover { color: #e94e77; }

.popular-footer .social-links {
    margin-top: 1rem;
}

.popular-footer .social-link {
    color: inherit;
    margin-right: 1rem;
    text-decoration: none;
    font-weight: 500;
    background: none;
    padding: 0;
    border-radius: 0;
    font-size: 0.98rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}

.popular-footer .social-link:hover {
    color: #e94e77;
}

.popular-footer .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e94e77;
    padding-top: 1.25rem;
    font-size: 0.98rem;
}

.popular-footer .footer-links a { color: #000; margin-right: 1.25rem; text-decoration: none; transition: color 0.2s; }

.popular-footer .footer-links a:hover { color: #e94e77; }

/* Ensure footer spans full width and uses box-sizing */

.footer.popular-footer {
    width: 100vw;
    left: 0;
    right: 0;
    box-sizing: border-box;
    position: relative;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: 0;
    padding-right: 0;
}
.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Responsive Design */

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--background);
        border-top: 1px solid var(--border);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .integration-buttons {
        flex-direction: column;
        align-items: center;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
    }

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

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

    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .hero {
        padding: 6rem 0 2rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .service-card,
    .testimonial-card,
    .pricing-card {
        padding: 1.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Responsive Navigation - Hamburger for mobile */

@media (max-width: 900px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid #e0e0e0;
        flex-direction: column;
        gap: 0;
        padding: 1rem 2rem;
        z-index: 999;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
        margin-left: auto;
        padding: 0.5rem;
        z-index: 1001;
        position: absolute;
        right: 2rem;
        top: 1rem;
    }
    .nav-toggle span {
        width: 28px;
        height: 3px;
        background: #000;
        margin: 4px 0;
        border-radius: 2px;
        transition: 0.3s;
    }
}

@media (max-width: 900px) {
  .navbar > .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
  }
  .nav-header {
    width: auto;
    padding: 0.5rem 0;
  }
  .logo img {
    height: 20px;
    margin-right: 0.25rem;
  }
}


/* contact.css - Styles specific to the contact page */

/* Contact Hero Section */
.hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    background: linear-gradient(135deg, var(--background) 0%, var(--muted) 100%);
}

.section-header h1, .section-header h2 {
    color: var(--foreground);
}
.section-header p {
    color: var(--muted-foreground);
}

/* Contact Info Grid */

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-info-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-info-card h3 {
    margin-bottom: 0.5rem;
    color: var(--card-foreground);
}

.contact-info-card p {
    margin: 0;
    color: var(--muted-foreground);
}

/* Contact Form Section */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-section h2 {
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--background);
    color: var(--foreground);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(210, 92%, 45%, 0.1);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0.5rem;
    border-radius: 0.25rem;
}

.checkbox:hover {
    background-color: var(--muted);
}

/* Responsive Design */

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    .contact-info-card {
        padding: 1.5rem;
    }
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ---------- Styles moved from index.html ---------- */
.featured-main {
    max-width: 1200px;
    margin: 2rem auto;
    display: block;
}

/* small adjustment for hero spacing that was inline in index.html */
.hero {
    margin-bottom: 3rem;
}

/* Hero slider extracted from index.html */
.hero-slider {
    min-height: 3.5rem;
    margin-bottom: 2rem;
    position: relative;
    font-size: 3rem;
    color: var(--foreground);
    height: 3.5rem;
    display: block;
    font-weight: 700;
    line-height: 1.2;
    overflow: hidden;
}
.hero-slider .slide {
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    transition: opacity 0.6s;
    font-weight: 700;
    white-space: nowrap;
}
.hero-slider .slide.active {
    opacity: 1;
    position: relative;
    transition: opacity 0.6s;
}

/* Partner logos used in the integration/data-sources lists */
.partner-logo {
    height: 32px;
    width: auto;
    margin-right: 16px;
    vertical-align: middle;
    display: inline-block;
}

/* Get-started CTA extracted inline styles */
.get-started-cta {
    padding: 3rem 0;
    text-align: center;
    background: #fff;
}
.get-started-cta .btn {
    margin-top: 1.5rem;
}

/* ---------- End moved styles ---------- */