:root {
    --primary: #1ba89e;
    --primary-dark: #138a85;
    --primary-soft: #d4f1f0;
    --nav-accent: #0db8b8;
    --secondary: #7ac74f;
    --secondary-dark: #5fa840;
    --secondary-soft: #e8f4d9;
    --accent-warm: #f97316;
    --accent-warm-light: #fed7aa;
    --accent-blue: #3b82f6;
    --accent-blue-light: #dbeafe;
    --accent-purple: #a855f7;
    --accent-purple-light: #f3e8ff;
    --nav-panel: #071120;
    --text-dark: #122033;
    --text-muted: #5c6577;
    --surface: #ffffff;
    --surface-soft: #f8faff;
    --surface-alt: #f5f7fb;
    --border: #e7ecf7;
    --shadow-sm: 0 10px 24px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 18px 40px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 24px 56px rgba(27, 168, 158, 0.16);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--surface-alt);
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    max-width: 100%;
}

iframe {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(100% - 1.5rem, 1200px);
    margin: 0 auto;
}

.small-text {
    margin: 0 0 10px;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.section-title {
    max-width: 42rem;
    margin: 0 auto 32px;
    text-align: center;
}

.section-title h2 {
    margin: 0;
    font-size: clamp(1.8rem, 7vw, 2.6rem);
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

/* Animated Heading Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.01em;
}

h1 {
    font-weight: 700;
    line-height: 1.1;
}

h2 {
    font-weight: 600;
    line-height: 1.2;
}

h3 {
    font-weight: 600;
    line-height: 1.3;
}

/* Animated Paragraph */
p {
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

p.lead {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Highlight Text with Color Animation */
.highlight {
    color: var(--primary);
    font-weight: 600;
    position: relative;
}

.highlight-secondary {
    color: var(--secondary);
    font-weight: 600;
}

.highlight-warm {
    color: var(--accent-warm);
    font-weight: 600;
}

.highlight-blue {
    color: var(--accent-blue);
    font-weight: 600;
}

.section-title h2 {
    margin: 0;
    font-size: clamp(1.8rem, 7vw, 2.6rem);
    line-height: 1.2;
}

.section-cta {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.section-cta .btn-primary,
.section-cta .btn-secondary {
    max-width: 280px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    border: 0;
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(27, 168, 158, 0.18);
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-1px);
}

/* Secondary Button Color Variants */
.btn-secondary-accent {
    border: 2px solid var(--secondary);
    background: transparent;
    color: var(--secondary);
    cursor: pointer;
}

.btn-secondary-accent:hover {
    background: var(--secondary);
    color: #ffffff;
    transform: translateY(-1px);
}

/* Accent Color Variants */
.btn-accent-warm {
    border: 0;
    background: var(--accent-warm);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.18);
    cursor: pointer;
}

.btn-accent-warm:hover {
    background: #ea580c;
    transform: translateY(-1px);
}

.btn-secondary-green {
    border: 2px solid var(--secondary);
    background: transparent;
    color: var(--secondary);
    cursor: pointer;
}

.btn-secondary-green:hover {
    background: var(--secondary);
    color: #ffffff;
    transform: translateY(-1px);
}

/* Text Color Utilities */
.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

.text-accent-warm {
    color: var(--accent-warm);
}

.text-accent-blue {
    color: var(--accent-blue);
}

.text-accent-purple {
    color: var(--accent-purple);
}

/* Background Color Utilities */
.bg-secondary-soft {
    background: var(--secondary-soft);
}

.bg-warm-light {
    background: var(--accent-warm-light);
}

.bg-blue-light {
    background: var(--accent-blue-light);
}

.bg-purple-light {
    background: var(--accent-purple-light);
}

/* Border Color Utilities */
.border-secondary {
    border-color: var(--secondary);
}

.border-warm {
    border-color: var(--accent-warm);
}

.border-blue {
    border-color: var(--accent-blue);
}

.border-purple {
    border-color: var(--accent-purple);
}

/* TEXT ANIMATIONS & EFFECTS */

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(27, 168, 158, 0);
    }

    50% {
        opacity: 0.9;
        text-shadow: 0 0 20px rgba(27, 168, 158, 0.4);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes underline-expand {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes bounce-text {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes color-shift {
    0% {
        color: var(--primary);
    }

    50% {
        color: var(--secondary);
    }

    100% {
        color: var(--primary);
    }
}

/* Animation Utility Classes */

/* Fade In Animations */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-down {
    animation: fadeInDown 0.8s ease-out forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

/* Slide In Animations */
.animate-slide-in-up {
    animation: slideInUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.animate-slide-in-down {
    animation: slideInDown 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Pulse & Glow Effects */
.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

.animate-color-shift {
    animation: color-shift 3s ease-in-out infinite;
}

/* Bounce Animation */
.animate-bounce-text {
    animation: bounce-text 1.5s ease-in-out infinite;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

.gradient-text-warm {
    background: linear-gradient(135deg, var(--accent-warm), var(--primary), var(--accent-warm));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Text Hover Effects */
.text-hover-lift:hover {
    transform: translateY(-3px);
    transition: transform 0.3s ease;
}

.text-hover-glow:hover {
    text-shadow: 0 0 20px rgba(27, 168, 158, 0.6);
    transition: text-shadow 0.3s ease;
}

.text-hover-scale:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.text-hover-letter-space:hover {
    letter-spacing: 0.15em;
    transition: letter-spacing 0.3s ease;
}

/* Underline Animation */
.underline-animate {
    position: relative;
    display: inline-block;
}

.underline-animate::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 2px;
    background: var(--primary);
    animation: underline-expand 0.6s ease-out forwards;
}

/* Text Stagger Animation */
.text-stagger {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2em;
}

.text-stagger span {
    animation: fadeInUp 0.6s ease-out forwards;
}

.text-stagger span:nth-child(1) {
    animation-delay: 0.1s;
}

.text-stagger span:nth-child(2) {
    animation-delay: 0.2s;
}

.text-stagger span:nth-child(3) {
    animation-delay: 0.3s;
}

.text-stagger span:nth-child(4) {
    animation-delay: 0.4s;
}

.text-stagger span:nth-child(5) {
    animation-delay: 0.5s;
}

.text-stagger span:nth-child(6) {
    animation-delay: 0.6s;
}

.text-stagger span:nth-child(7) {
    animation-delay: 0.7s;
}

.text-stagger span:nth-child(8) {
    animation-delay: 0.8s;
}

/* Text Shadow Effects */
.text-shadow-sm {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.text-shadow-md {
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.15);
}

.text-shadow-lg {
    text-shadow: 6px 6px 12px rgba(0, 0, 0, 0.2);
}

.text-shadow-glow {
    text-shadow: 0 0 10px rgba(27, 168, 158, 0.4), 0 0 20px rgba(27, 168, 158, 0.2);
}

/* Bold Text Animation */
.bold-animate {
    position: relative;
    font-weight: 600;
}

.bold-animate::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Letter Animation */
.letter-animate {
    display: inline-block;
    animation: fadeInUp 0.6s ease-out;
}

/* Animation Delay Utilities */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

.delay-600 {
    animation-delay: 0.6s;
}

.delay-700 {
    animation-delay: 0.7s;
}

.delay-800 {
    animation-delay: 0.8s;
}

.delay-1000 {
    animation-delay: 1s;
}

/* Staggered Element Animation */
.stagger>* {
    animation: fadeInUp 0.6s ease-out forwards;
}

.stagger>*:nth-child(1) {
    animation-delay: 0.1s;
}

.stagger>*:nth-child(2) {
    animation-delay: 0.2s;
}

.stagger>*:nth-child(3) {
    animation-delay: 0.3s;
}

.stagger>*:nth-child(4) {
    animation-delay: 0.4s;
}

.stagger>*:nth-child(5) {
    animation-delay: 0.5s;
}

.stagger>*:nth-child(6) {
    animation-delay: 0.6s;
}

.stagger>*:nth-child(7) {
    animation-delay: 0.7s;
}

.stagger>*:nth-child(8) {
    animation-delay: 0.8s;
}

/* Enhanced Button Animations */
.btn-primary.animated,
.btn-secondary.animated {
    animation: slideInUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.btn-primary:active,
.btn-secondary:active {
    transform: scale(0.98);
}

/* Button with Icon Animation */
.btn-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-with-icon svg {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn-with-icon:hover svg {
    transform: translateX(4px);
    opacity: 0.9;
}

/* Link Animation */
a {
    position: relative;
    transition: color 0.3s ease;
}

a.animated-link {
    text-decoration: none;
    position: relative;
}

a.animated-link::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

a.animated-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Text Reveal Animation */
.text-reveal {
    position: relative;
    overflow: hidden;
}

.text-reveal::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: translateX(0);
    animation: slideInDown 0.6s ease-out forwards;
    animation-delay: 0.2s;
    z-index: -1;
}

/* Blob Animation */
@keyframes blob {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

.blob-animate {
    animation: blob 7s infinite;
}

.top-purple {
    background: var(--primary);
    color: #ffffff;
    font-size: 0.95rem;
    padding: 10px 0;
}

.top-purple-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.brand-title {
    font-weight: 600;
}

.top-purple .divider {
    margin: 0 8px;
    opacity: 0.55;
}

.top-purple .subtitle {
    opacity: 0.88;
    font-weight: 400;
}

.social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social .icon {
    width: 18px;
    height: 18px;
    filter: invert(1);
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.social .icon:hover {
    opacity: 1;
}

.info-bar {
    background: var(--surface);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.info-flex {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.logo-area {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    text-align: left;
    flex-shrink: 0;
    margin-left: -6px;
}

.logo-img {
    width: clamp(150px, 16vw, 210px);
    height: auto;
    border-radius: 0;
    padding: 0;
    background: transparent;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 10px 20px rgba(18, 32, 51, 0.14));
}

.info-items {
    display: grid;
    gap: 10px;
    text-align: center;
    font-size: 0.92rem;
    align-items: start;
    justify-items: stretch;
}

.info-items>div {
    width: 100%;
    text-align: center;
}


.info-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 160px;
    text-align: center;
    font-size: 0.92rem;
    flex: 1;
    color: #070707;
}

.mobile-menu-icon,
.hamburger {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    padding: 0;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    cursor: pointer;
}

.mobile-menu-icon:focus-visible,
.hamburger:focus-visible {
    outline: 3px solid rgba(27, 168, 158, 0.24);
    outline-offset: 3px;
}

.mobile-menu-icon span,
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 3px 0;
    border-radius: 999px;
    background: var(--primary);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-icon.open span:nth-child(1),
.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-icon.open span:nth-child(2),
.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-icon.open span:nth-child(3),
.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.menu-bar {
    position: relative;
    background: #111827;
    padding: 10px 0;
    z-index: 120;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.menu-flex {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

#mainNav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    border-radius: 0 0 18px 18px;
    background: #111827;
    z-index: 200;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.18);
}

#mainNav.open {
    display: flex;
}

#mainNav>a,
.nav-parent-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 12px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

#mainNav>a.active,
.nav-parent-link.active {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 61, 130, 0.18);
}

#mainNav>a:hover,
.nav-parent-link:hover,
.nav-dropdown.open .nav-parent-link {
    background: #ffffff;
    color: var(--primary);
}

#mainNav>a.active:hover,
.nav-parent-link.active:hover,
.nav-dropdown.open .nav-parent-link.active {
    background: var(--primary);
    color: #ffffff;
}

.nav-dropdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-dropdown-trigger {
    display: flex;
    width: 100%;
}

.nav-parent-link {
    gap: 10px;
    position: relative;
    padding-left: 18px;
    padding-right: 48px;
}

.nav-parent-text {
    display: inline-flex;
    align-items: center;
}

.nav-parent-link.has-submenu .nav-caret {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    line-height: 1;
}

.nav-caret {
    pointer-events: none;
}

.nav-caret::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-caret::before {
    transform: rotate(-135deg) translate(-1px, 2px);
}

.nav-submenu {
    display: none;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
    border-top: 2px solid var(--nav-accent);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(7, 17, 32, 0.98) 0%, rgba(3, 10, 22, 0.98) 100%), var(--nav-panel);
    box-shadow: 0 20px 40px rgba(2, 8, 23, 0.32);
}

.nav-dropdown.open .nav-submenu {
    display: grid;
}

.nav-submenu-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    color: #ffffff;
    text-align: left;
    text-decoration: none;
    background: linear-gradient(180deg, rgba(17, 31, 52, 0.92) 0%, rgba(9, 19, 35, 0.96) 100%);
    border: 1px solid rgba(34, 211, 238, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-submenu-item:hover {
    color: #ffffff;
    transform: translateX(4px);
    background: linear-gradient(180deg, rgba(21, 38, 63, 0.96) 0%, rgba(11, 25, 46, 0.98) 100%);
    border-color: rgba(34, 211, 238, 0.28);
    box-shadow: 0 18px 34px rgba(2, 8, 23, 0.28);
}

.nav-submenu-item:focus-visible {
    outline: 2px solid var(--nav-accent);
    outline-offset: 3px;
}

.nav-submenu-icon {
    position: relative;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: radial-gradient(circle at 30% 30%, rgba(34, 211, 238, 0.2), transparent 65%), rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(34, 211, 238, 0.2);
}

.nav-submenu-icon::before,
.nav-submenu-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: var(--nav-accent);
}

.nav-submenu-icon::before {
    width: 16px;
    height: 2px;
    box-shadow: 0 -6px 0 rgba(34, 211, 238, 0.9), 0 6px 0 rgba(34, 211, 238, 0.55);
}

.nav-submenu-icon::after {
    width: 2px;
    height: 16px;
    box-shadow: -6px 0 0 rgba(34, 211, 238, 0.55), 6px 0 0 rgba(34, 211, 238, 0.9);
}

.nav-submenu-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.nav-submenu-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
}

.nav-submenu-meta {
    color: rgba(226, 232, 240, 0.76);
    font-size: 0.84rem;
    line-height: 1.45;
}

.hero {
    padding: 56px 0;
    background: linear-gradient(135deg, #d4f1f0 0%, #f5f7fb 52%, #ffffff 100%);
}

.hero-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.hero-text,
.hero-image {
    width: 100%;
}

.hero-text {
    max-width: 36rem;
    text-align: center;
}

.hero-text h1 {
    margin: 0;
    font-size: clamp(2rem, 9vw, 3.4rem);
    line-height: 1.15;
}

.hero-text span {
    color: var(--primary);
}

.hero-desc {
    max-width: 34rem;
    margin: 18px auto 0;
    color: var(--text-muted);
    line-height: 1.75;
}

.hero-text .btn-primary,
.hero-text .btn-secondary {
    margin-top: 22px;
}

.hero-image {
    max-width: 520px;
}

.hero-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.about,
.services,
.testimonials,
.contact,
.map {
    padding: 56px 0;
}

.about,
.contact {
    background: var(--surface);
}

.services,
.testimonials,
.map {
    background: var(--surface-alt);
}

.about-flex,
.contact-flex {
    display: flex;
    flex-direction: column;
    gap: 34px;
    align-items: center;
}

.about-images,
.about-content,
.contact-info,
.contact-form {
    width: 100%;
}

.about-images {
    position: relative;
    max-width: 500px;
    padding-bottom: 86px;
}

.main-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.overlay-img {
    position: absolute;
    right: 8px;
    bottom: 0;
    width: 66%;
    max-width: 240px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid #ffffff;
    box-shadow: var(--shadow-sm);
}

.about-content {
    text-align: center;
}

.about-content h2,
.contact-info h2,
.map h2 {
    margin: 0 0 16px;
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    line-height: 1.2;
}

.about-desc,
.contact-info p {
    color: var(--text-muted);
}

.about-points {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.about-points p {
    margin: 0;
    padding: 14px 16px;
    border-radius: 18px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    font-weight: 500;
}

.stats {
    padding: 56px 0;
    background: #0a2540;
}

.stats-grid,
.services-grid,
.gallery-grid,
.testimonial-grid,
.footer-grid {
    display: grid;
    gap: 20px;
}

.stats-grid {
    grid-template-columns: 1fr;
}

.stat-card,
.service-card,
.testimonial-card,
.contact-form,
.footer-col {
    border-radius: 22px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.stat-card {
    padding: 24px 20px;
    text-align: center;
}

.stat-card h2 {
    margin: 0;
    color: var(--primary);
    font-size: 2rem;
}

.stat-card p {
    margin: 10px 0 0;
    color: var(--text-muted);
}

/* Stat Card Color Variants */
.stat-card.accent-secondary h2 {
    color: var(--secondary);
}

.stat-card.accent-warm h2 {
    color: var(--accent-warm);
}

.stat-card.accent-blue h2 {
    color: var(--accent-blue);
}

.stat-card.accent-purple h2 {
    color: var(--accent-purple);
}

.services-grid,
.gallery-grid,
.testimonial-grid {
    grid-template-columns: 1fr;
}

.service-card {
    padding: 26px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border: 1px solid rgba(27, 168, 158, 0.1);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: 0 8px 24px rgba(27, 168, 158, 0.08);
    animation: fadeInUp 0.7s ease-out forwards;
}

.service-card:hover,
.testimonial-card:hover,
.gallery-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(27, 168, 158, 0.16);
    border-color: rgba(27, 168, 158, 0.2);
}

.service-card .icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(27, 168, 158, 0.15), rgba(13, 184, 184, 0.1));
    border: 1px solid rgba(27, 168, 158, 0.2);
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(27, 168, 158, 0.1);
}

.service-card:hover .icon {
    transform: translateY(-6px) scale(1.08);
    background: linear-gradient(135deg, rgba(27, 168, 158, 0.25), rgba(13, 184, 184, 0.15));
    box-shadow: 0 8px 24px rgba(27, 168, 158, 0.24);
}

.service-card:hover .icon.accent-secondary {
    background: linear-gradient(135deg, rgba(122, 199, 79, 0.25), rgba(122, 199, 79, 0.15));
    color: var(--secondary);
    box-shadow: 0 8px 24px rgba(122, 199, 79, 0.24);
}

.service-card:hover .icon.accent-warm {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(249, 115, 22, 0.15));
    color: var(--accent-warm);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.24);
}

.service-card:hover .icon.accent-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(59, 130, 246, 0.15));
    color: var(--accent-blue);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.24);
}

.service-card:hover .icon.accent-purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(168, 85, 247, 0.15));
    color: var(--accent-purple);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.24);
}

.service-card h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    transform: translateY(-2px);
}

.service-card h3.accent-secondary {
    color: var(--secondary);
}

.service-card h3.accent-secondary:hover {
    text-shadow: 0 0 15px rgba(122, 199, 79, 0.3);
}

.service-card h3.accent-warm {
    color: var(--accent-warm);
}

.service-card h3.accent-warm:hover {
    text-shadow: 0 0 15px rgba(249, 115, 22, 0.3);
}

.service-card h3.accent-blue {
    color: var(--accent-blue);
}

.service-card h3.accent-blue:hover {
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.service-card h3.accent-purple {
    color: var(--accent-purple);
}

/* Service Card Entrance Animation */
.service-card {
    animation: fadeInUp 0.7s ease-out forwards;
}

.gallery-item {
    position: relative;
    min-height: 240px;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85), transparent);
    color: #ffffff;
    font-weight: 500;
}

.testimonial-card {
    padding: 24px 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review {
    margin: 0 0 20px;
    color: var(--text-muted);
    font-style: italic;
}

.client {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.client h4 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.client span {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.stars {
    margin-top: 16px;
    color: #f59e0b;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
}

.contact-info {
    text-align: center;
}

.contact-form {
    padding: 24px 20px;
}

.contact-form form {
    display: grid;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d8e1f2;
    border-radius: 16px;
    background: var(--surface-soft);
    color: var(--text-dark);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 14px 16px;
    border: 0;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
}

.map {
    text-align: center;
}

.map-box {
    margin-top: 20px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.map-box iframe {
    width: 100%;
    height: 320px;
    border: 0;
}

.map-details {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.map-address {
    margin: 0;
    max-width: 760px;
    color: var(--text-muted);
    line-height: 1.7;
}

.map-details .btn-primary {
    width: auto;
    min-width: 220px;
}

.whatsapp-btn {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    font-size: 1.5rem;
    z-index: 500;
}

.footer {
    background: #0a2540;
    color: #ffffff;
    padding: 56px 0 20px;
}

.footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
}

.footer-col {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.footer-col .logo {
    margin: 0 0 12px;
    font-size: 1.5rem;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.footer-logo-img {
    width: clamp(150px, 16vw, 210px);
    height: auto;
    border-radius: 0;
    padding: 0;
    background: transparent;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 10px 20px rgba(18, 32, 51, 0.14));
}

.footer-col h3 {
    margin: 0 0 12px;
}

.footer-col p {
    margin: 0;
    color: #c7d2e0;
    line-height: 1.8;
}

.footer-col p+p {
    margin-top: 8px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li+li {
    margin-top: 10px;
}

.footer-col ul li {
    color: #c7d2e0;
}

.footer-col ul li a {
    color: #c7d2e0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    color: #9aa8bb;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom p+p {
    margin-top: 8px;
}

.footer-bottom a {
    color: #dbe6f5;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.top-purple-flex>*,
.info-flex>*,
.menu-flex>*,
.hero-flex>*,
.about-flex>*,
.contact-flex>*,
.stats-grid>*,
.services-grid>*,
.gallery-grid>*,
.testimonial-grid>*,
.footer-grid>*,
.hero-copy,
.hero-media,
.hero-panel,
.support-panel,
.industry-panel,
.stats-copy,
.contact-form-panel,
.contact-info-panel,
.cta-box {
    min-width: 0;
}

.info-items a,
.info-items .info-value,
.contact-info p,
.map-address,
.footer-col p,
.channel-card a,
.info-list span,
.hero-card span {
    overflow-wrap: anywhere;
}

.info-items a,
.info-items .info-value {
    color: var(--primary);
    text-decoration: none;
}

@media (max-width: 47.998rem) {
    .container {
        width: min(100% - 1rem, 1200px);
    }

    .top-purple {
        padding: 8px 0;
    }

    .top-purple .divider {
        display: none;
    }

    .brand-title {
        line-height: 1.4;
    }

    .info-flex {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .logo-area {
        justify-content: flex-start;
        text-align: left;
        margin-left: -4px;
    }

    .info-bar .info-items,
    .info-bar .btn-primary {
        display: none;
    }

    .mobile-menu-icon,
    .hamburger {
        align-self: center;
        flex-shrink: 0;
    }

    .hero {
        padding: 48px 0;
    }

    .about-images {
        padding-bottom: 72px;
    }

    .overlay-img {
        right: 4px;
        width: min(62%, 220px);
        border-width: 4px;
    }

    .section-cta .btn-primary,
    .section-cta .btn-secondary,
    .map-details .btn-primary {
        width: 100%;
        max-width: none;
        min-width: 0;
    }

    .stat-card,
    .service-card,
    .testimonial-card,
    .contact-form {
        padding: 22px 18px;
    }

    .gallery-item {
        min-height: 220px;
    }

    .whatsapp-btn {
        right: 14px;
        bottom: 14px;
        width: 52px;
        height: 52px;
    }
}

@media (min-width: 40rem) {

    .btn-primary,
    .btn-secondary {
        width: auto;
    }

    .top-purple-flex {
        flex-direction: row;
        justify-content: space-between;
    }

    .info-items {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: clamp(18px, 3vw, 42px);
    }

    .stats-grid,
    .services-grid,
    .gallery-grid,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 48rem) {
    .info-flex {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .logo-area {
        justify-content: flex-start;
        text-align: left;
        margin-left: -10px;
    }

    .info-items {
        flex: 1;
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        gap: 16px;
    }

    .mobile-menu-icon,
    .hamburger {
        display: none;
    }

    .menu-bar {
        padding: 0;
    }

    .menu-flex {
        justify-content: center;
    }

    #mainNav {
        position: static;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        padding: 12px 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    #mainNav>a,
    .nav-parent-link {
        width: auto;
        padding: 8px 14px;
    }

    .nav-dropdown {
        position: relative;
        align-items: center;
        gap: 0;
    }

    .nav-dropdown::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 18px;
    }

    .nav-dropdown-trigger {
        width: auto;
        gap: 0;
    }

    .nav-parent-link {
        width: auto;
        flex: 0 1 auto;
        padding-left: 16px;
        padding-right: 42px;
        border-radius: 999px;
    }

    .nav-parent-link.has-submenu .nav-caret {
        width: 34px;
    }

    .nav-submenu {
        position: absolute;
        top: calc(100% + 14px);
        left: 50%;
        right: auto;
        bottom: auto;
        min-width: 360px;
        width: min(90vw, 440px);
        max-height: none;
        padding: 16px;
        border-radius: 20px;
        z-index: 220;
        margin-top: 0;
        display: none;
        transform: translateX(-50%);
        overflow: visible;
    }

    .nav-submenu-item {
        min-height: 78px;
    }

    .contact-form form {
        gap: 16px;
    }

    .map-box iframe {
        height: 400px;
    }
}

@media (min-width: 64rem) {
    .hero {
        padding: 96px 0 72px;
    }

    .hero-flex,
    .about-flex,
    .contact-flex {
        flex-direction: row;
        align-items: center;
        gap: 56px;
    }

    .hero-text,
    .about-content,
    .contact-info,
    .contact-form {
        flex: 1;
    }

    .hero-text,
    .about-content,
    .contact-info {
        text-align: left;
    }

    .contact-info .section-cta {
        justify-content: flex-start;
    }

    .hero-desc,
    .about-desc {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-image {
        flex: 1;
        max-width: 560px;
    }

    .about {
        padding: 96px 0;
    }

    .about-images {
        flex: 1;
        max-width: none;
        padding-bottom: 0;
    }

    .main-img {
        height: 430px;
        aspect-ratio: auto;
    }

    .overlay-img {
        right: -24px;
        bottom: -24px;
        width: 52%;
        max-width: 260px;
        border-width: 6px;
    }

    .stats-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .testimonial-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 64rem) {
    .nav-submenu {
        width: min(78vw, 640px);
        min-width: 560px;
        padding: 18px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        border-radius: 22px;
    }

    .nav-submenu-item {
        min-height: 84px;
    }
}

@media (min-width: 160rem) {
    .container {
        width: min(100% - 6rem, 1680px);
    }

    .section-title {
        max-width: 50rem;
        margin-bottom: 44px;
    }

    .hero {
        padding: 120px 0 88px;
    }

    .hero-flex,
    .about-flex,
    .contact-flex {
        gap: 88px;
    }

    .hero-text {
        max-width: 42rem;
    }

    .hero-text h1 {
        font-size: clamp(3.6rem, 3vw, 4.8rem);
    }

    .hero-image {
        max-width: 760px;
    }

    .hero-image img {
        border-radius: 32px;
    }

    .about,
    .stats,
    .services,
    .testimonials,
    .contact,
    .map {
        padding: 88px 0;
    }

    .about-images {
        max-width: 760px;
    }

    .main-img {
        height: 520px;
    }

    .overlay-img {
        max-width: 320px;
    }

    .stats-grid,
    .services-grid,
    .gallery-grid,
    .testimonial-grid,
    .footer-grid {
        gap: 32px;
    }

    .stat-card,
    .service-card,
    .testimonial-card,
    .contact-form,
    .footer-col {
        padding: 30px 28px;
    }

    .gallery-item {
        min-height: 300px;
    }

    .map-box iframe {
        height: 460px;
    }

    .footer {
        padding-top: 72px;
    }
}