/* ============================================================
   Aiseco s.r.o — Modernized CSS
   Blue color scheme preserved. Added: glassmorphism, gradient
   text, 3D card effects, shimmer buttons, animated nav underline,
   glow shadows, smooth scroll reveals.
   ============================================================ */

:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --secondary: #e0f2fe;
    --accent-light: #bae6fd;

    --text-main: #0f172a;
    --text-muted: #64748b;

    --bg-main: #ffffff;
    --bg-light: #f8fafc;

    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 4px 20px rgba(14, 165, 233, 0.10);
    --shadow-lg: 0 16px 48px rgba(14, 165, 233, 0.16);
    --glow: 0 0 32px rgba(14, 165, 233, 0.28);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.68;
    background: var(--bg-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    line-height: 1.18;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg,
            var(--text-main) 0%,
            var(--primary-dark) 25%,
            var(--primary-light) 50%,
            var(--primary-dark) 75%,
            var(--text-main) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 8s linear infinite;
}

@keyframes shimmerText {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

h2 {
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.22rem;
    font-weight: 600;
}

/* --- Layout --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 7rem 0;
}

.bg-light {
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 4.5rem;
}

.section-title h2 {
    background: linear-gradient(135deg, var(--text-main) 30%, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.85rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 580px;
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.1rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Shimmer sweep on hover */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: skewX(-18deg);
    transition: left 0.55s ease;
    z-index: 1;
}

.btn:hover::before {
    left: 160%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 18px rgba(14, 165, 233, 0.38);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--glow);
}

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

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

.w-100 {
    width: 100%;
}

/* ============================================================
   HEADER — Glassmorphism
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    z-index: -1;
}

.header.scrolled::before {
    background: rgba(255, 255, 255, 0.90);
    border-bottom-color: rgba(14, 165, 233, 0.15);
    box-shadow: 0 2px 24px rgba(14, 165, 233, 0.07);
}

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

.logo {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.03em;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.03);
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.94rem;
    position: relative;
    padding-bottom: 3px;
}

/* Animated underline */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-dark));
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 2.5px;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, #dbeafe 0%, #e0f2fe 45%, #f8fafc 100%);
}

/* Soft animated orbs */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -12%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.18) 0%, transparent 68%);
    border-radius: 50%;
    animation: orbFloat 9s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.14) 0%, transparent 68%);
    border-radius: 50%;
    animation: orbFloat 12s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

@keyframes orbFloat {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(25px, -20px) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ============================================================
   FEATURES — Glassmorphism-tinted cards
   ============================================================ */
.features {
    background: var(--bg-light);
}

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

.feature-card {
    background: white;
    padding: 2.6rem 2.4rem;
    border-radius: 1.25rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(14, 165, 233, 0.1);
    position: relative;
    overflow: hidden;
    cursor: default;
}

/* Gradient top-border glow on hover */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1.25rem 1.25rem 0 0;
}

.feature-card:hover {
    transform: translateY(-9px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 165, 233, 0.25);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card .icon {
    font-size: 3.2rem;
    margin-bottom: 1.4rem;
    display: inline-block;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover .icon {
    transform: scale(1.22) rotate(-6deg);
}

.feature-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-main) 30%, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Minimalist variant */
.features-minimal .feature-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 1.5rem;
    text-align: left;
}

.features-minimal .feature-card:hover {
    transform: translateY(-5px);
}

.features-minimal .feature-card::after {
    display: none;
}

.features-minimal .feature-card .icon {
    margin-bottom: 1.2rem;
}

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

.service-card {
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 165, 233, 0.27);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover img {
    transform: scale(1.07);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    margin-bottom: 0.55rem;
}

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

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.process {
    background: linear-gradient(150deg, #f0f9ff 0%, var(--bg-light) 100%);
}

.timeline {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 3.5rem 1rem 2.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
    -webkit-overflow-scrolling: touch;
}

.timeline::-webkit-scrollbar {
    height: 6px;
}

.timeline::-webkit-scrollbar-track {
    background: transparent;
}

.timeline::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 10px;
}

.timeline-item {
    flex: 0 0 280px;
    scroll-snap-align: center;
    position: relative;
    padding: 3rem 1rem 0;
    text-align: center;
    margin-bottom: 0;
    transition: var(--transition);
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 11px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-light), var(--primary-dark));
    z-index: 0;
}

.timeline-item:first-child::before {
    left: 50%;
    width: 50%;
}

.timeline-item:last-child::before {
    width: 50%;
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    border: 4px solid white;
    box-shadow: 0 0 0 3px var(--secondary);
    z-index: 1;
    transition: var(--transition);
}

.timeline-date {
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: var(--secondary);
    padding: 0.3rem 0.8rem;
    border-radius: 99px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(14, 165, 233, 0.1);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 1.6rem 2rem;
    border-radius: 1.1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.timeline-content h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 165, 233, 0.2);
    border-bottom: 3px solid var(--primary-dark);
}

.timeline-item:hover .timeline-date {
    transform: translateX(-50%) translateY(-5px);
    background: white;
    box-shadow: var(--shadow-md);
    color: var(--primary-dark);
}

.timeline-item:hover .timeline-dot {
    transform: translateX(-50%) scale(1.35);
    box-shadow: 0 0 0 4px var(--secondary), var(--glow);
}

/* ============================================================
   TEAM & TABS
   ============================================================ */
.team {
    background: var(--bg-light);
}

.tabs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
    padding-bottom: 1rem;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--primary);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

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

.team-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(14, 165, 233, 0.08);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 165, 233, 0.2);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}

.team-card h3 {
    margin-bottom: 0.3rem;
    font-size: 1.3rem;
}

.team-card .role {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-contact {
    text-align: left;
    display: inline-block;
}

.team-contact li {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: 1.75rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(14, 165, 233, 0.12);
}

.contact-info {
    background: linear-gradient(145deg, #0369a1 0%, var(--primary) 55%, var(--primary-light) 100%);
    color: white;
    padding: 4rem 3.5rem;
    position: relative;
    overflow: hidden;
}

/* Decorative circles inside contact info */
.contact-info::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    bottom: -140px;
    right: -90px;
}

.contact-info::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    top: -60px;
    left: -50px;
}

.contact-info h2 {
    color: white;
    -webkit-text-fill-color: white;
    position: relative;
    z-index: 1;
}

.contact-info>p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.contact-details {
    position: relative;
    z-index: 1;
}

.contact-details li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.15rem;
    font-weight: 500;
}

.contact-form {
    padding: 4rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.88rem;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.95rem 1.1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 0.75rem;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--bg-light);
    color: var(--text-main);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #07111f;
    color: white;
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

/* Glowing top edge */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 40%, var(--primary-light) 60%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-brand .logo:hover {
    transform: none;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer h3 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.15rem;
    font-weight: 700;
    position: relative;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer ul li {
    margin-bottom: 1rem;
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer a {
    color: #94a3b8;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer a:hover {
    color: white;
    transform: translateX(5px);
    display: inline-block;
}

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

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #94a3b8;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-8px) scale(1.15) !important;
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s ease;
}

.social-icon:hover svg {
    transform: rotate(8deg);
}

.footer-bottom {
    text-align: center;
    padding: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #64748b;
    font-size: 0.88rem;
    position: relative;
    z-index: 1;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.72s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.72s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.delay-1 {
    transition-delay: 0.10s;
}

.delay-2 {
    transition-delay: 0.20s;
}

.delay-3 {
    transition-delay: 0.30s;
}

.delay-4 {
    transition-delay: 0.40s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: white;
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        gap: 2rem;
    }

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

    .nav-links a {
        font-size: 1.25rem;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }

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

    .hero::before,
    .hero::after {
        display: none;
    }

    .section-padding {
        padding: 5rem 0;
    }

    .section-title {
        margin-bottom: 3.5rem;
    }
}