/* =========================================================================
   Raiser Solution - Modern Design System & Styles
   ========================================================================= */

/* --- Variables --- */
:root {
    /* Colors - Corporate Enterprise Palette */
    --bg-dark: #0B1120;      /* Deep Slate/Navy */
    --bg-surface: #1E293B;    /* Clean Dark Slate */
    --bg-surface-hover: #334155; /* Lighter Slate */
    
    --primary: #2563EB;      /* Trustworthy Corporate Blue */
    --primary-light: #60A5FA; /* Light Blue */
    --accent-1: #38BDF8;     /* Sky Blue Accent */
    --accent-2: #F8FAFC;     /* White/Silver Accent */
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions & Shadows */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body.dark-theme {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* --- Typography utilities --- */
.gradient-text {
    background: linear-gradient(to right, var(--accent-1), var(--primary-light), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.alt-bg {
    background: linear-gradient(to bottom, rgba(11,17,32,0), rgba(37,99,235,0.05), rgba(11,17,32,0));
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* --- Abstract Background Animation --- */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    /* Clean geometric grid background instead of neon blobs */
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.6;
}

/* Hide the old neon blobs */
.blob {
    display: none !important;
}

@keyframes drift {
    /* Kept to prevent errors if referenced, but unused */
}

/* --- Components --- */

/* Solid Professional Cards */
.glass-card {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.glass-card:hover {
    transform: translateY(-5px);
    background: var(--bg-surface-hover);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-glow);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    font-size: 1rem;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.4);
    border-radius: 0.25rem;
}

.btn-primary:hover {
    background: #1D4ED8;
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.6);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

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

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.05);
    border: var(--glass-border);
    border-radius: 2rem;
    font-size: 0.875rem;
    color: var(--accent-1);
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-1);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-1);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Image Variant */
.logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-animated {
    animation: floatFlip 8s infinite linear;
    transform-style: preserve-3d;
}

@keyframes floatFlip {
    0% { transform: translateY(0) rotateY(0deg); filter: drop-shadow(0 0 8px rgba(79, 70, 229, 0.6)); }
    50% { transform: translateY(-6px) rotateY(180deg); filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.9)); }
    100% { transform: translateY(0) rotateY(360deg); filter: drop-shadow(0 0 8px rgba(79, 70, 229, 0.6)); }
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.logo-icon {
    color: var(--accent-1);
    fill: rgba(6, 182, 212, 0.2);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover {
    color: var(--text-main);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    position: relative;
    z-index: 2;
}

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

.hero-title {
    font-size: 4.5rem;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 2.5rem;
}

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

.trust-bar {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.trust-bar p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    color: var(--text-muted);
}

.t-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.t-logo:hover {
    opacity: 1;
    color: var(--text-main);
}

/* Hero Graphic Illustration */
.hero-graphic {
    position: relative;
    perspective: 1000px;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    border: var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.main-panel {
    width: 100%;
    height: 400px;
    transform: rotateY(-15deg) rotateX(10deg);
    padding: 1rem;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: rotateY(-15deg) rotateX(10deg) translateY(0); }
    50% { transform: rotateY(-15deg) rotateX(10deg) translateY(-20px); }
    100% { transform: rotateY(-15deg) rotateX(10deg) translateY(0); }
}

.panel-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.panel-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot.red { background: #ef4444; }
.dot.yellow { background: #eab308; }
.dot.green { background: #22c55e; }

.panel-body {
    height: calc(100% - 40px);
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    width: 100%;
    height: 80%;
}

.bar {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border-radius: 0.25rem 0.25rem 0 0;
}

.bar.gradient-bg {
    background: linear-gradient(to top, var(--primary), var(--accent-1));
    box-shadow: 0 0 20px var(--primary-light);
}

.float-panel-1, .float-panel-2 {
    position: absolute;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(20, 20, 40, 0.8);
}

.float-panel-1 {
    top: 20%;
    left: -10%;
    animation: float 5s ease-in-out infinite 1s;
}

.float-panel-2 {
    bottom: 20%;
    right: -5%;
    animation: float 7s ease-in-out infinite 2s;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    background: rgba(79, 70, 229, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-1);
}

.tp-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.tp-text strong {
    font-size: 1.125rem;
}

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

.service-card {
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-1);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
}

.mb-2 {
    margin-bottom: 1rem;
}

/* Service Lists */
.service-list {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.service-list i {
    color: var(--accent-1);
    flex-shrink: 0;
    margin-top: 2px;
    width: 16px;
    height: 16px;
}

.service-list strong {
    color: var(--text-main);
}

.service-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-light);
    font-weight: 500;
}

.service-link:hover {
    color: var(--accent-1);
    gap: 0.75rem;
}

/* --- Industries --- */
.industries-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list {
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.feature-list i {
    color: var(--accent-1);
}

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

.ind-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: default;
}

.ind-card.highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent-1));
    color: white;
    border: none;
    cursor: pointer;
}

/* --- Success Stories Carousel --- */
.carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 1rem;
}

.carousel-btn {
    background: rgba(79, 70, 229, 0.2);
    border: 1px solid rgba(79, 70, 229, 0.5);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.2);
}

.carousel-btn i {
    width: 24px;
    height: 24px;
}

.carousel-btn:hover {
    background: var(--primary);
    border-color: var(--primary-light);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.6);
}

.carousel-container {
    width: 100%;
    overflow-x: auto;
    padding: 0.5rem 0 2rem 0;
    scrollbar-width: none; /* Firefox */
}

.carousel-container::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.carousel-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    padding-bottom: 1rem;
}

.carousel-slide {
    width: 400px;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.story-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.story-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.story-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.story-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Stats --- */
.stats-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.stat-num {
    font-size: 3.5rem;
    background: linear-gradient(to right, white, var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

/* --- CTA Section & Form --- */
.cta-section {
    padding: 4rem 0 8rem 0;
}

.flex-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(6, 182, 212, 0.03) 100%);
}

.cta-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.cta-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    color: var(--accent-1);
    background: rgba(6, 182, 212, 0.1);
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.info-item span {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.info-item strong {
    font-size: 1.125rem;
    color: var(--text-main);
}

.contact-form {
    background: rgba(5, 5, 15, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.05);
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: var(--text-main);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.08);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2394a3b8%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem top 50%;
    background-size: 0.65rem auto;
}
.form-group select option {
    background: var(--bg-dark);
    color: var(--text-main);
}

/* --- 3D Interactive Cards --- */
.card-3d-wrapper {
    perspective: 1000px;
    width: 100%;
}

.card-3d {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 1rem;
    overflow: hidden;
    background: rgba(11, 17, 32, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-3d:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.5), -5px -5px 15px rgba(255, 255, 255, 0.02);
    border-color: rgba(6, 182, 212, 0.3);
}

.card-3d-img-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: rgba(0,0,0,0.2);
}

.card-3d-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    transform: translateZ(30px) scale(1);
}

.card-3d:hover .card-3d-img {
    transform: translateZ(50px) scale(1.08);
}

.card-3d-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    transform: translateZ(40px);
}

.card-3d-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.card-3d-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.5;
}

.card-3d-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-1);
    transition: var(--transition);
    transform: translateZ(60px);
}

.card-3d:hover .card-3d-action {
    color: var(--primary-light);
    gap: 0.75rem;
}

/* --- Footer --- */
.footer {
    background: var(--bg-dark);
    padding: 5rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

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

.footer-brand p {
    color: var(--text-muted);
    margin: 1.5rem 0;
    max-width: 300px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background: var(--primary);
}

.footer h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer ul a {
    color: var(--text-muted);
}

.footer ul a:hover {
    color: var(--accent-1);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--accent-1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.875rem;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

/* --- Animations (Scroll Reveal) --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnim 0.8s forwards;
}

@keyframes fadeUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .hero .container, .industries-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-graphic {
        display: none; /* Simplify on smaller screens or replace */
    }
    .hero-actions {
        justify-content: center;
    }
    .trust-logos {
        justify-content: center;
    }
    .feature-list li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
    .nav-links {
        display: none; /* Handled by JS */
    }
    .mobile-menu-btn {
        display: block;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
    .hero {
        padding-top: 8rem;
    }
    .hero .container {
        padding-top: 2rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.125rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .flex-cta {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .cta-text {
        text-align: center;
    }
    .cta-text h2 {
        font-size: 2rem;
    }
    .cta-contact-info {
        align-items: center;
    }
    .contact-form {
        padding: 1.5rem 1rem;
    }
    .glass-card {
        padding: 1.5rem;
    }
    .container {
        padding: 0 1rem;
    }
    .services-grid, .industries-grid {
        grid-template-columns: 1fr;
    }
    .carousel-slide {
        width: 300px;
    }
    .nav-links[style*="display: flex"] {
        background: var(--bg-dark) !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 1.5rem !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
    .nav-links[style*="display: flex"] .nav-link,
    .nav-links[style*="display: flex"] .btn {
        width: 100%;
        text-align: left;
        margin-bottom: 0.5rem;
        padding: 0.75rem 1rem;
    }
}
