/* --- Critical CSS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #FFFFFF;
    color: #000000;
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.5;
}

html.dark {
    background-color: #0B1120;
    color: #FFFFFF;
}

#app,
#root,
main {
    display: block;
    width: 100%;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

section h1 {
    font-size: inherit;
}

/* --- START global-enhancements --- */
:root {
    --bg-color: #FFFFFF;
    --scrollbar-bg: #f1f5f9;
    --scrollbar-thumb: #94a3b8;
    --scrollbar-thumb-hover: #64748b;
    --selection-bg: #5EEAD4;
    --selection-text: #0B1120;
}

html.dark {
    --bg-color: #0B1120;
    --scrollbar-bg: #0B1120;
    --scrollbar-thumb: #134E4A;
    --scrollbar-thumb-hover: #0D9488;
    --selection-bg: #0D9488;
    --selection-text: #FFFFFF;
}

html.dark .text-gray-900 {
    color: #ffffff !important;
}

html.dark .text-gray-600 {
    color: #9ca3af !important;
}

html.dark .text-gray-700 {
    color: #d1d5db !important;
}

html.dark .bg-gray-50 {
    background-color: #0B1120 !important;
}

html.dark .bg-white {
    background-color: #0B1120 !important;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: var(--scrollbar-bg);
}

::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb);
    border-radius: 10px;
    border: 2px solid var(--scrollbar-bg);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--scrollbar-thumb-hover);
}

::selection {
    background-color: var(--selection-bg);
    color: var(--selection-text);
}

.learn-more-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    text-align: left;
}

.page-container.hidden {
    display: none;
}

/* --- START explicit-color-utilities --- */
.text-primary {
    color: #0D9488 !important;
}

.text-primary-50 {
    color: #F0FDFA !important;
}

.text-primary-100 {
    color: #CCFBF1 !important;
}

.text-primary-200 {
    color: #99F6E4 !important;
}

.text-primary-300 {
    color: #5EEAD4 !important;
}

.text-primary-400 {
    color: #2DD4BF !important;
}

.text-primary-500 {
    color: #14B8A6 !important;
}

.text-primary-600 {
    color: #0D9488 !important;
}

.text-primary-700 {
    color: #0F766E !important;
}

.text-primary-800 {
    color: #115E59 !important;
}

.text-primary-900 {
    color: #134E4A !important;
}

.text-primary-950 {
    color: #042f2e !important;
}

.bg-primary {
    background-color: #0D9488 !important;
}

.bg-primary-50 {
    background-color: #F0FDFA !important;
}

.bg-primary-100 {
    background-color: #CCFBF1 !important;
}

.bg-primary-200 {
    background-color: #99F6E4 !important;
}

.bg-primary-300 {
    background-color: #5EEAD4 !important;
}

.bg-primary-400 {
    background-color: #2DD4BF !important;
}

.bg-primary-500 {
    background-color: #14B8A6 !important;
}

.bg-primary-600 {
    background-color: #0D9488 !important;
}

.bg-primary-700 {
    background-color: #0F766E !important;
}

.bg-primary-800 {
    background-color: #115E59 !important;
}

.bg-primary-900 {
    background-color: #134E4A !important;
}

.bg-primary-950 {
    background-color: #042f2e !important;
}

.border-primary {
    border-color: #0D9488 !important;
}

.border-primary-400 {
    border-color: #2DD4BF !important;
}

.border-primary-500 {
    border-color: #14B8A6 !important;
}

.text-gray-900 {
    color: #111827 !important;
}

.text-gray-600 {
    color: #4b5563 !important;
}

.text-gray-300 {
    color: #d1d5db !important;
}

.text-white {
    color: #ffffff !important;
}

.text-secondary {
    color: #E5E7EB !important;
}

.dark .text-white {
    color: #ffffff !important;
}

.dark .text-gray-300 {
    color: #d1d5db !important;
}

.dark .text-secondary {
    color: #E5E7EB !important;
}

.dark .text-primary-400 {
    color: #2DD4BF !important;
}

.dark .text-primary-500 {
    color: #14B8A6 !important;
}

/* --- END explicit-color-utilities --- */
/* --- END global-enhancements --- */

/* --- START animations --- */
@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.animated-gradient {
    background: linear-gradient(-45deg, #042f2e, #0F766E, #14B8A6, #0B1120);
    background-size: 400% 400%;
    animation: gradient-animation 15s ease infinite;
}

.animated-gradient-fast {
    background: linear-gradient(-45deg, #042f2e, #0F766E, #14B8A6, #0B1120);
    background-size: 400% 400%;
    animation: gradient-animation 8s ease infinite;
}

@keyframes morph {
    0% {
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
    }

    100% {
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    }
}

@keyframes modal-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modal-fade-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes modal-content-in {
    from {
        opacity: 0;
        transform: scale(0.7) rotate(-8deg);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: blur(0);
    }
}

@keyframes modal-content-out {
    from {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: blur(0);
    }

    to {
        opacity: 0;
        transform: scale(0.7) rotate(8deg);
        filter: blur(10px);
    }
}

@keyframes hero-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtle-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
}

/* --- END animations --- */

/* --- START hero-interactive-styles --- */
#header-title,
#header-subtitle {
    display: inline-block;
}

#header-title span,
#header-subtitle span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) rotate(10deg);
    animation: char-reveal 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: var(--delay);
}

@keyframes char-reveal {
    to {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }
}

@keyframes text-gradient-shine {
    to {
        background-position: 200% center;
    }
}

.hero-cta-primary {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.hero-cta-primary span {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    display: inline;
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: left 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-cta-primary:hover::before {
    left: 125%;
}

.hero-cta-secondary {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.hero-cta-secondary span {
    position: relative;
    z-index: 1;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    display: inline;
}

.hero-cta-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #14B8A6;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 0;
    border-radius: 9999px;
}

.hero-cta-secondary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-cta-secondary:hover {
    border-color: #14B8A6;
}

html.light .hero-cta-secondary:hover {
    color: #fff;
}

/* --- END hero-interactive-styles --- */

/* --- START header-and-hero-styles --- */
:root {
    --header-bg: rgba(255, 255, 255, 0.8);
    --header-border: rgba(0, 0, 0, 0.1);
    --hero-text-block-bg: rgba(255, 255, 255, 0.8);
    --hero-text-block-border: rgba(0, 0, 0, 0.1);
}

html.dark {
    --header-bg: rgba(11, 17, 32, 0.8);
    --header-border: rgba(255, 255, 255, 0.1);
    --hero-text-block-bg: rgba(11, 17, 32, 0.8);
    --hero-text-block-border: rgba(255, 255, 255, 0.2);
}



#hero-section {
    background-color: transparent;
    min-height: 82.5vh;
    padding-top: 10rem;
    padding-bottom: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    width: 100%;
}

@media (max-width: 768px) {
    #hero-section {
        min-height: 70vh;
        padding-top: 7rem;
        padding-bottom: 3rem;
    }
}

@media (max-width: 640px) {
    #hero-section {
        min-height: 60vh;
        padding-top: 5rem;
        padding-bottom: 2rem;
    }
}

#hero-text-block {
    background-color: var(--hero-text-block-bg);
    border: 2px solid var(--hero-text-block-border);
    border-image-slice: 1;
    border-image-source: conic-gradient(from var(--angle), #0D9488, #5EEAD4, #14B8A6, #5EEAD4, #0D9488);
    animation: rotate 4s linear infinite;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: normal;
}

#header-title {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: normal;
    white-space: normal;
}

#header-subtitle {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: normal;
    white-space: normal;
}

/* --- END header-and-hero-styles --- */

/* --- START honeycomb-nav-styles --- */
:root {
    --honeycomb-bg: #F3F4F6;
    --honeycomb-text-color: #1f2937;
    --honeycomb-hover-bg: #E5E7EB;
    --honeycomb-active-bg: #D1D5DB;
}

html.dark {
    --honeycomb-bg: #1f2937;
    --honeycomb-text-color: #fff;
    --honeycomb-hover-bg: #374151;
    --honeycomb-active-bg: #4B5563;
}

#persistent-nav {
    position: relative;
    z-index: 1000;
    width: 100%;
    display: flex;
    justify-content: center;
}

.honeycomb-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* This centers the rows horizontally */
    --hex-width: 120px;
    --hex-height: calc(var(--hex-width) * 0.866025);
    --hex-gap-horiz: 8px;
    --hex-gap-vert: 4px;
}

.honeycomb-row {
    display: flex;
    justify-content: center;
}

/* This rule pulls the second row up to nest it with the first */
.honeycomb-row+.honeycomb-row {
    margin-top: calc(-1 * var(--hex-height) / 4 + var(--hex-gap-vert));
}

.honeycomb-cell {
    width: var(--hex-width);
    height: var(--hex-height);
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background-color: var(--honeycomb-bg);
    margin: 0 calc(var(--hex-gap-horiz) / 2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--honeycomb-text-color);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: background-color 0.3s ease;
}

.honeycomb-cell:hover {
    background-color: var(--honeycomb-hover-bg);
}

.honeycomb-cell.active {
    background-color: var(--honeycomb-active-bg);
}

.honeycomb-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 4px;
}

/* --- END honeycomb-nav-styles --- */

/* --- START hero-hexagon-styles --- */
:root {
    --hero-hex-bg: rgba(229, 231, 235, 0.6);
    --hero-hex-before-bg: #F3F4F6;
}

html.dark {
    --hero-hex-bg: rgba(15, 38, 72, 0.6);
    --hero-hex-before-bg: #1A2E4A;
}

#hero-parallax-container {
    position: absolute;
    inset: 0;
    overflow: visible;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#hero-parallax-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(20, 184, 166, 0.1), transparent 60%);
}

#hero-hexa-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: transform;
    -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 0%, transparent 100%);
    mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 0%, transparent 100%);
}

.hero-hexagon {
    position: absolute;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background-color: var(--hero-hex-bg);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s ease-out, box-shadow 0.3s ease-in-out;
    opacity: 0;
    transform: scale(0.5);
}

.hero-hexagon::before {
    content: '';
    position: absolute;
    inset: 2px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background-color: var(--hero-hex-before-bg);
    z-index: -1;
    transition: background-color 0.3s ease-in-out;
}

.hero-hexagon.active::before {
    background-color: var(--active-color);
}

.hero-hexagon.active {
    box-shadow: 0 0 25px 3px var(--active-color);
    transform: scale(1.05);
    transition-duration: 0.2s;
    z-index: 2;
}

@keyframes hex-fade-in {
    to {
        opacity: 0.8;
        transform: scale(1);
    }
}

/* --- END hero-hexagon-styles --- */

/* --- START hero-decorative-hex-styles --- */
#hero-honeycomb-visuals {
    transform: scale(1.5);
}

#hero-honeycomb-menu .honeycomb-cell {
    background-color: rgba(20, 184, 166, 0.15);
    animation: hero-hex-float 8s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.3s);
}

html.dark #hero-honeycomb-menu .honeycomb-cell {
    background-color: rgba(20, 184, 166, 0.25);
}

#hero-honeycomb-menu .honeycomb-cell::before {
    background-color: transparent;
}

#hero-honeycomb-menu .honeycomb-cell:hover {
    transform: scale(1);
    background-color: rgba(20, 184, 166, 0.15);
}

html.dark #hero-honeycomb-menu .honeycomb-cell:hover {
    background-color: rgba(20, 184, 166, 0.25);
}

@keyframes hero-hex-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* --- END hero-decorative-hex-styles --- */

/* --- START seo-section-styles --- */
.seo-score-circle-bg {
    stroke: #e5e7eb;
}

html.dark .seo-score-circle-bg {
    stroke: rgba(255, 255, 255, 0.1);
}

.seo-score-circle-progress {
    stroke: #14B8A6;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 1s ease-out;
    stroke-dasharray: 282.7;
    /* 2 * pi * 45 */
}

@keyframes seo-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.seo-feature-card {
    animation: seo-fade-in-up 0.6s ease-out forwards;
    animation-delay: var(--delay);
    opacity: 0;
}

/* --- END seo-section-styles --- */

/* --- START portfolio-showcase-styles --- */
.portfolio-container {
    position: relative;
    padding: 0 2rem;
}

.portfolio-grid {
    position: relative;
    width: 100%;
    height: 550px;
    perspective: 2500px;
    transform-style: preserve-3d;
}

.portfolio-card {
    position: absolute;
    width: 60%;
    max-width: 500px;
    top: 50%;
    left: 50%;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, filter 0.6s ease;
}

.portfolio-card-inner {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    overflow: hidden;
    background-color: #F9FAFB;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
}

html.dark .portfolio-card-inner {
    background-color: #0B1120;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
}

.portfolio-card.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    z-index: 10;
}

.portfolio-card.prev {
    transform: translate(-100%, -50%) scale(0.8) rotateY(45deg);
    opacity: 0.6;
    filter: brightness(0.8);
}

html.dark .portfolio-card.prev {
    filter: brightness(0.6);
}

.portfolio-card.next {
    transform: translate(0%, -50%) scale(0.8) rotateY(-45deg);
    opacity: 0.6;
    filter: brightness(0.8);
}

html.dark .portfolio-card.next {
    filter: brightness(0.6);
}

.portfolio-card.hidden-prev {
    transform: translate(-150%, -50%) scale(0.6) rotateY(45deg);
    opacity: 0;
    z-index: 8;
}

.portfolio-card.hidden-next {
    transform: translate(50%, -50%) scale(0.6) rotateY(-45deg);
    opacity: 0;
    z-index: 8;
}

@media (max-width: 768px) {
    .portfolio-card {
        width: 80%;
    }

    .portfolio-card.prev {
        transform: translate(-85%, -50%) scale(0.7);
    }

    .portfolio-card.next {
        transform: translate(-15%, -50%) scale(0.7);
    }
}

@media (max-width: 640px) {
    .portfolio-grid {
        height: 400px;
    }

    .portfolio-card {
        width: 95%;
    }

    .portfolio-card.prev {
        transform: translate(-60%, -50%) scale(0.6);
        opacity: 0;
    }

    .portfolio-card.next {
        transform: translate(-40%, -50%) scale(0.6);
        opacity: 0;
    }
}

.portfolio-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 1rem;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card-image {
    transform: scale(1.1);
}

.portfolio-card-content {
    position: absolute;
    inset: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    background: linear-gradient(to top, rgba(11, 17, 32, 0.95) 20%, transparent 80%);
}

.portfolio-card-title {
    font-family: 'Inconsolata', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.05em;
    min-height: 3rem;
}

.portfolio-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    color: #111827;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 9999px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

html.dark .portfolio-nav-btn {
    background-color: rgba(11, 17, 32, 0.7);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.portfolio-nav-btn:hover {
    background-color: #14B8A6;
    border-color: #14B8A6;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.portfolio-nav-btn.left-0 {
    left: -1rem;
}

.portfolio-nav-btn.right-0 {
    right: -1rem;
}

@media (max-width: 1024px) {
    .portfolio-nav-btn.left-0 {
        left: 0;
    }

    .portfolio-nav-btn.right-0 {
        right: 0;
    }
}

/* --- END portfolio-showcase-styles --- */

/* --- START testimonial-slider-styles --- */
#testimonial-slider-container {
    position: relative;
}

.testimonial-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #4b5563;
    border-radius: 9999px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    z-index: 10;
}

html.dark .testimonial-nav-btn {
    background-color: rgba(11, 17, 32, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #9CA3AF;
}

.testimonial-nav-btn:hover {
    background-color: #14B8A6;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav-btn.left-0 {
    left: -60px;
}

.testimonial-nav-btn.right-0 {
    right: -60px;
}

@media (max-width: 900px) {
    .testimonial-nav-btn.left-0 {
        left: -10px;
    }

    .testimonial-nav-btn.right-0 {
        right: -10px;
    }
}

.testimonial-card {
    min-width: 100%;
    flex: 0 0 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.03);
}

html.light .testimonial-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 30px rgba(20, 184, 166, 0.1);
}

html.dark .testimonial-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(20, 184, 166, 0.2);
}

/* --- END testimonial-slider-styles --- */

/* --- START impressive-contact-styles --- */
@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotate {
    to {
        --angle: 360deg;
    }
}

#contact-card-grid {
    position: relative;
}

#contact-card-grid::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(20, 184, 166, 0.1), transparent 40%);
    border-radius: 1rem;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s;
}

html.dark #contact-card-grid::before {
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(20, 184, 166, 0.15), transparent 40%);
}

#contact-card-grid:hover::before {
    opacity: 1;
}

.input-container {
    position: relative;
    isolation: isolate;
}

.input-container>input,
.input-container>select,
.input-container>textarea {
    background-color: #f3f4f6;
    border: 1px solid #d1d5db;
    position: relative;
    z-index: 2;
    color: #111827;
}

html.dark .input-container>input,
html.dark .input-container>select,
html.dark .input-container>textarea {
    background-color: #1a2336;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e5e7eb;
}

.input-container::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 0.4rem;
    background: conic-gradient(from var(--angle), #0D9488, #5EEAD4, #0D9488);
    animation: rotate 4s linear infinite;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.input-container:focus-within::before {
    opacity: 1;
}

#contact-submit-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(-45deg, #0d9488, #0f766e, #14b8a6, #042f2e);
    background-size: 400% 400%;
    transition: background-position 0.5s ease;
}

#contact-submit-button:hover {
    background-position: 100% 50%;
}

#contact-submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-30deg);
    transition: left 0.7s ease-in-out;
}

#contact-submit-button:hover::before {
    left: 150%;
}

.shop-card,
.seo-package-card,
.web-package-card {
    position: relative;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.shop-card:hover,
.seo-package-card:hover,
.web-package-card:hover {
    transform: scale(1.05);
}

.shop-card::before,
.seo-package-card::before,
.web-package-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 1rem;
    background: radial-gradient(300px, rgba(20, 184, 166, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
}

html.dark .shop-card::before,
html.dark .seo-package-card::before,
html.dark .web-package-card::before {
    background: radial-gradient(300px, rgba(20, 184, 166, 0.5), transparent 70%);
}

.shop-card:hover::before,
.seo-package-card:hover::before,
.web-package-card:hover::before {
    opacity: 1;
}

/* --- START hexagon-button-styles --- */
.hexagon-button {
    position: relative;
    width: 240px;
    height: 240px;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hexagon-shape {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0D9488 0%, #14B8A6 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.3);
}

html.dark .hexagon-shape {
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.5);
}

.hexagon-button:hover .hexagon-shape {
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 20px 50px rgba(13, 148, 136, 0.5);
}

html.dark .hexagon-button:hover .hexagon-shape {
    box-shadow: 0 20px 50px rgba(13, 148, 136, 0.7);
}

.hexagon-content {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 90%;
}

.hexagon-icon {
    font-size: 3rem;
    margin-bottom: 8px;
}

.hexagon-text {
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.3;
}

.hexagon-subtext {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 4px;
}

/* --- END hexagon-button-styles --- */
/* --- END impressive-contact-styles --- */

/* --- START content-page-styles --- */
.content-page {
    width: 80%;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    line-height: 1.8;
}

.content-page h1 {
    color: #111827;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

html.dark .content-page h1 {
    color: #fff;
}

.content-page .subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0D9488;
    margin-bottom: 2rem;
}

html.dark .content-page .subtitle {
    color: #5eead4;
}

.content-page h2 {
    color: #111827;
    border-bottom: 2px solid #14B8A6;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.8rem;
    margin-top: 40px;
}

html.dark .content-page h2 {
    color: #fff;
}

.content-page p,
.content-page li {
    color: #4b5563;
    margin-bottom: 1rem;
}

html.dark .content-page p,
html.dark .content-page li {
    color: #9ca3af;
}

.content-page ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.content-page ol {
    list-style-position: inside;
    padding-left: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.content-page a {
    color: #0D9488;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    font-weight: 600;
}

html.dark .content-page a {
    color: #2DD4BF;
}

.content-page a:hover {
    text-decoration: underline;
    color: #0F766E;
}

html.dark .content-page a:hover {
    color: #5EEAD4;
}

.feature-card {
    background-color: #F9FAFB;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

html.dark .feature-card {
    background-color: #0B1120;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08), 0 0 15px rgba(20, 184, 166, 0.1);
}

html.dark .feature-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(20, 184, 166, 0.2);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

html.dark .feature-card h3 {
    color: #fff;
}

.process-step {
    position: relative;
    border-left: 3px solid #14B8A6;
    padding: 1.5rem 0 1.5rem 2.5rem;
}

.process-step::before {
    content: attr(data-step);
    position: absolute;
    left: -20px;
    top: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #14B8A6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* --- END content-page-styles --- */

/* --- START missing-animations --- */
@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
/* --- END missing-animations --- */