@layer base, utilities, layout;
@layer base {
  :root {
    --primary: #0B1D35;
    --primary-mid: #132D52;
    --primary-light: #1A3F6F;
    --accent: #4EBEF7;
    --accent-hover: #74CFF9;
    --accent-dark: #2A9FD8;
    --accent-text: #1A8AC4;
    --accent-glow: rgba(78, 190, 247, 0.25);
    --accent-rgb: 78, 190, 247;
    --blue: #2563EB;
    --blue-light: #3B82F6;
    --white: #FFFFFF;
    --off-white: #F7F8FA;
    --gray-50: #F9FAFB;
    --gray-100: #EBEDF0;
    --gray-200: #D5D8DC;
    --gray-300: #ADB2B9;
    --gray-500: #6B7280;
    --gray-700: #374151;
    --gray-900: #111827;
    --text: #374151;
    --text-muted: #6B7280;
    --success: #059669;
    --container: 1240px;
    --container-wide: 1400px;
    --radius: 6px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.18);
  }
  *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
    font-size: 16px;
    scroll-behavior: smooth;
  }
  body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition);
  }
  ul, ol {
    list-style: none;
  }
  button {
    font: inherit;
    color: inherit;
  }
  .container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
  }
  .container--wide {
    max-width: var(--container-wide);
  }
}
@layer layout {
  h1, h2, h3, h4 {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    line-height: 1.1;
    color: var(--gray-900);
  }
  h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    letter-spacing: -0.02em;
  }
  h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    letter-spacing: -0.015em;
  }
  h3 {
    font-size: 1.375rem;
  }
  h4 {
    font-size: 1.125rem;
  }
  p {
    margin-bottom: 1rem;
  }
  p:last-child {
    margin-bottom: 0;
  }
  .display-title {
    font-family: "Bebas Neue", "Outfit", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 0.95;
    letter-spacing: 0.02em;
  }
  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 1rem;
  }
  .section-label::before {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent);
  }
  .section-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.8;
  }
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  .section-header .section-label {
    justify-content: center;
  }
  .section-header .section-label::before {
    display: none;
  }
  .section-header .section-desc {
    margin: 1rem auto 0;
  }
  .text-highlight {
    color: var(--accent-text);
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9375rem 2.25rem;
    border-radius: var(--radius);
    font-family: "Inter", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-transform: uppercase;
  }
  .btn svg {
    width: 18px;
    height: 18px;
  }
  .btn--primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
  }
  .btn--primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px var(--accent-glow);
  }
  .btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
  }
  .btn--outline-white:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
  }
  .btn--outline-dark {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
  }
  .btn--outline-dark:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
  }
  .btn--whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
  }
  .btn--whatsapp:hover {
    background: #1EBE5A;
    border-color: #1EBE5A;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.3);
  }
  .btn--lg {
    padding: 1.0625rem 2.75rem;
    font-size: 0.9375rem;
  }
  .btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
  }
  .form__group {
    margin-bottom: 1rem;
  }
  .form__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .form__input, .form__select, .form__textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
  }
  .form__input:focus, .form__select:focus, .form__textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
  }
  .form__textarea {
    min-height: 100px;
    resize: vertical;
  }
  .form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .form__file {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    border: 2px dashed var(--gray-200);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
  }
  .form__file:hover {
    border-color: var(--accent);
    background: rgba(var(--accent-rgb), 0.03);
  }
  .form__file-icon {
    width: 36px;
    height: 36px;
    color: var(--gray-300);
    flex-shrink: 0;
  }
  .form__file p {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
  }
  .form__file span {
    font-size: 0.875rem;
    color: var(--gray-300);
  }
  .form__submit {
    width: 100%;
    margin-top: 0.5rem;
  }
  .tpl__header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    transition: all var(--transition);
  }
  .tpl__header--scrolled, .tpl__header--solid {
    background: rgba(11, 29, 53, 0.97);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.25);
  }
  .tpl__header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
  }
  .tpl__header-logo img {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
  }
  .tpl__header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .tpl__header-menu {
    display: flex;
    gap: 0.25rem;
  }
  .tpl__header-menu li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: all var(--transition);
  }
  .tpl__header-menu li a:hover, .tpl__header-menu li a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
  }
  .tpl__header-cta .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
  }
  .tpl__header-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .tpl__header-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
  }
  .tpl__footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.55);
    padding: 5rem 0 0;
  }
  .tpl__footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .tpl__footer-brand img {
    height: 36px;
    margin-bottom: 1.25rem;
    filter: brightness(0) invert(1);
  }
  .tpl__footer-brand p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }
  .tpl__footer-iso {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
  }
  .tpl__footer h4 {
    color: var(--white);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .tpl__footer-links li {
    margin-bottom: 0.5rem;
  }
  .tpl__footer-links a {
    font-size: 1rem;
  }
  .tpl__footer-links a:hover {
    color: var(--accent);
  }
  .tpl__footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
  }
  .tpl__footer-contact li svg {
    flex-shrink: 0;
    margin-top: 2px;
    width: 16px;
    height: 16px;
  }
  .tpl__footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-size: 0.6875rem;
    letter-spacing: 0.3px;
  }
  .tpl__footer-bar a {
    color: var(--accent);
  }
  .tpl__footer-bar a:hover {
    text-decoration: underline;
  }
  .whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
    animation: float-pulse 3s ease-in-out infinite;
  }
  .whatsapp-float:hover {
    transform: scale(1.1);
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
    color: var(--white);
  }
  .home__hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }
  .home__hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .home__hero-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    animation: kenBurns 10s ease-in-out infinite alternate;
    will-change: transform;
  }
  .home__hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(11, 29, 53, 0.92) 0%, rgba(11, 29, 53, 0.7) 50%, rgba(11, 29, 53, 0.35) 100%), linear-gradient(to top, rgba(11, 29, 53, 0.8) 0%, transparent 40%);
  }
  .home__hero .container {
    position: relative;
    z-index: 3;
    padding-top: 7rem;
    padding-bottom: 4rem;
  }
  .home__hero-content {
    max-width: 640px;
  }
  .home__hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(var(--accent-rgb), 0.12);
    border: 1px solid rgba(var(--accent-rgb), 0.25);
    padding: 0.4375rem 0.875rem;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--accent);
  }
  .home__hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: clamp(2.75rem, 6vw, 5rem);
    line-height: 0.98;
  }
  .home__hero h1 .text-highlight {
    display: block;
    white-space: nowrap;
    font-family: "Bebas Neue", "Outfit", sans-serif;
    font-weight: 400;
    font-size: clamp(3rem, 9vw, 7.5rem);
    line-height: 0.85;
    letter-spacing: 0.05em;
    color: transparent;
    -webkit-text-stroke: 2px var(--accent);
    text-stroke: 2px var(--accent);
    margin-top: 0.15em;
  }
  .home__hero-desc {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 480px;
  }
  .home__hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .home__hero-stats-bar {
    position: relative;
    z-index: 3;
    margin-top: -3rem;
    margin-bottom: 0;
  }
  .home__hero-stats-bar .container {
    padding: 0 2rem;
  }
  .home__hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
  }
  .home__hero-stat {
    padding: 2.25rem 2rem;
    text-align: center;
    position: relative;
  }
  .home__hero-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: var(--gray-100);
  }
  .home__hero-stat strong {
    display: block;
    font-family: "Bebas Neue", "Outfit", sans-serif;
    font-size: 2.75rem;
    font-weight: 400;
    color: var(--accent);
    line-height: 1;
    letter-spacing: 0.02em;
  }
  .home__hero-stat span {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    margin-top: 0.5rem;
  }
  .home__about {
    padding: 8rem 0 6rem;
    background: var(--white);
  }
  .home__about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .home__about-text .section-label {
    margin-bottom: 1.25rem;
  }
  .home__about-text h2 {
    margin-bottom: 1.5rem;
  }
  .home__about-text h2 .text-highlight {
    font-size: 1.05em;
  }
  .home__about-text p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
  }
  .home__about-text .btn {
    margin-top: 1.5rem;
  }
  .home__about-visual {
    position: relative;
  }
  .home__about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
  }
  .home__about-img-main img {
    width: 100%;
    height: 420px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .home__about-img-secondary {
    position: absolute;
    bottom: -2.5rem;
    right: -2rem;
    width: 220px;
    height: 160px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 3;
  }
  .home__about-img-secondary img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .home__about-badge {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    background: var(--accent);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 4;
    text-align: center;
  }
  .home__about-badge strong {
    display: block;
    font-family: "Outfit", sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
  }
  .home__about-badge span {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.85;
  }
  .home__products {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
  }
  .home__products-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .home__products-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .home__products-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 29, 53, 0.92) 0%, rgba(11, 29, 53, 0.85) 100%);
  }
  .home__products .container {
    position: relative;
    z-index: 2;
  }
  .home__products .section-header h2 {
    color: var(--white);
  }
  .home__products .section-desc {
    color: rgba(255, 255, 255, 0.6);
  }
  .home__products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .home__products-card {
    position: relative;
    overflow: visible;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, z-index 0s;
  }
  .home__products-card:hover {
    transform: scale(1.06);
    z-index: 5;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  }
  .home__products-card-inner {
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
    position: relative;
    background: rgba(11, 29, 53, 0.85);
  }
  .home__products-card:hover .home__products-card-inner {
    background: rgba(20, 45, 80, 0.95);
  }
  .home__products-card-number {
    font-family: "Outfit", sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: color var(--transition);
  }
  .home__products-card:hover .home__products-card-number {
    color: rgba(var(--accent-rgb), 0.2);
  }
  .home__products-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(var(--accent-rgb), 0.1);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all var(--transition);
  }
  .home__products-card-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
    transition: color var(--transition);
  }
  .home__products-card:hover .home__products-card-icon {
    background: var(--accent);
    border-color: var(--accent);
  }
  .home__products-card:hover .home__products-card-icon svg {
    color: var(--white);
  }
  .home__products-card h3 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
  .home__products-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
  }
  .home__products-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1.25rem;
    transition: all var(--transition);
  }
  .home__products-card-link svg {
    width: 14px;
    height: 14px;
  }
  .home__products-card:hover .home__products-card-link {
    gap: 0.625rem;
  }
  .home__why {
    padding: 6rem 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
  }
  .home__why-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
    opacity: 0.06;
  }
  .home__why-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .home__why .container {
    position: relative;
    z-index: 2;
  }
  .home__why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
  }
  .home__why-text .section-label {
    margin-bottom: 1rem;
  }
  .home__why-text h2 {
    margin-bottom: 1rem;
  }
  .home__why-text h2 .text-highlight {
    font-size: 1.05em;
  }
  .home__why-text > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
  }
  .home__why-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .home__why-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid transparent;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
  }
  .home__why-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
    transform: translateX(6px);
  }
  .home__why-item-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .home__why-item-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
  }
  .home__why-item h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
  .home__why-item p {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
  }
  .home__why-visual {
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .home__why-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    flex: 1;
  }
  .home__why-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .home__why-float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
  }
  .home__why-float-card--top {
    top: -1.5rem;
    right: -1rem;
    z-index: 3;
  }
  .home__why-float-card--bottom {
    bottom: 1.5rem;
    left: -1.5rem;
    z-index: 3;
    background: var(--accent);
    border: none;
    color: var(--white);
  }
  .home__why-float-card strong {
    display: block;
    font-family: "Outfit", sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary);
  }
  .home__why-float-card--bottom strong {
    color: var(--white);
  }
  .home__why-float-card span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
  }
  .home__why-float-card--bottom span {
    color: rgba(255, 255, 255, 0.8);
  }
  .home__why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .home__why-card {
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .home__why-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
  }
  .home__why-card:hover .home__why-card-image img {
    transform: scale(1.05);
  }
  .home__why-card-image {
    aspect-ratio: 3/2;
    overflow: hidden;
    background: var(--primary);
  }
  .home__why-card-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .home__why-card h3 {
    font-size: 1.125rem;
    margin: 1.5rem 1.75rem 0.5rem;
  }
  .home__why-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0 1.75rem 1.75rem;
    line-height: 1.6;
  }
  .home__segments {
    padding: 6rem 0;
    background: var(--primary);
  }
  .home__segments .section-header h2 {
    color: var(--white);
  }
  .home__segments .section-label {
    color: rgba(255, 255, 255, 0.7);
  }
  .home__segments .section-label::before {
    background: var(--accent);
  }
  .home__segments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .home__segments-card {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, z-index 0s;
  }
  .home__segments-card:hover {
    transform: scale(1.06);
    z-index: 5;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  }
  .home__segments-card img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .home__segments-card:hover img {
    transform: scale(1.1);
  }
  .home__segments-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(to top, rgba(11, 29, 53, 0.85) 0%, rgba(11, 29, 53, 0.4) 50%, rgba(11, 29, 53, 0.2) 100%);
    transition: background 0.4s ease;
    padding: 1.5rem;
    text-align: center;
  }
  .home__segments-card:hover .home__segments-card-content {
    background: linear-gradient(to top, rgba(var(--accent-rgb), 0.75) 0%, rgba(var(--accent-rgb), 0.3) 50%, rgba(11, 29, 53, 0.1) 100%);
  }
  .home__segments-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(6px);
  }
  .home__segments-card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
  }
  .home__segments-card:hover .home__segments-card-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
  }
  .home__segments-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.3px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  }
  .home__numbers {
    padding: 5rem 0;
    background: var(--white);
  }
  .home__numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  .home__numbers-item {
    text-align: center;
    padding: 1.5rem;
  }
  .home__numbers-item strong {
    display: block;
    font-family: "Bebas Neue", "Outfit", sans-serif;
    font-size: 4rem;
    font-weight: 400;
    font-style: normal;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
  }
  .home__numbers-item span {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .home__testimonials {
    padding: 6rem 0;
    background: var(--off-white);
  }
  .home__testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .home__testimonials-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
  }
  .home__testimonials-card:hover {
    box-shadow: var(--shadow);
  }
  .home__testimonials-card-quote {
    font-size: 5rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.15;
    font-family: Georgia, serif;
    position: absolute;
    top: 1rem;
    left: 2rem;
  }
  .home__testimonials-card blockquote {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
    position: relative;
    font-style: italic;
  }
  .home__testimonials-card-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .home__testimonials-card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
  }
  .home__testimonials-card-info strong {
    display: block;
    font-size: 1rem;
    color: var(--gray-900);
  }
  .home__testimonials-card-info span {
    font-size: 1rem;
    color: var(--text-muted);
  }
  .home__cta {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
  }
  .home__cta-bg {
    position: absolute;
    inset: 0;
  }
  .home__cta-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .home__cta-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 29, 53, 0.93), rgba(26, 63, 111, 0.85));
  }
  .home__cta .container {
    position: relative;
    z-index: 2;
  }
  .home__cta-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: stretch;
  }
  .home__cta-layout > .reveal-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .home__cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
  }
  .home__cta h2 .text-highlight {
    font-size: 1.05em;
  }
  .home__cta p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2rem;
    line-height: 1.8;
  }
  .home__cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .home__cta-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid rgba(255, 255, 255, 0.1);
    display: flex;
  }
  .home__cta-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .mola__hero {
    position: relative;
    padding: 10rem 0 5rem;
    overflow: hidden;
  }
  .mola__hero-bg {
    position: absolute;
    inset: 0;
  }
  .mola__hero-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    animation: kenBurns 10s ease-in-out infinite alternate;
    will-change: transform;
  }
  .mola__hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(11, 29, 53, 0.9) 0%, rgba(11, 29, 53, 0.6) 50%, rgba(11, 29, 53, 0.2) 100%), linear-gradient(to top, rgba(11, 29, 53, 0.5) 0%, transparent 40%);
  }
  .mola__hero .container {
    position: relative;
    z-index: 3;
  }
  .mola__hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .mola__hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.45);
  }
  .mola__hero-breadcrumb a:hover {
    color: var(--white);
  }
  .mola__hero-breadcrumb .current {
    color: var(--accent);
  }
  .mola__hero-content {
    max-width: 600px;
  }
  .mola__hero h1 {
    color: var(--white);
    margin-bottom: 1.25rem;
  }
  .mola__hero h1 .text-highlight {
    display: block;
    font-family: "Bebas Neue", "Outfit", sans-serif;
    font-weight: 400;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.85;
    letter-spacing: 0.04em;
    color: transparent;
    -webkit-text-stroke: 2px var(--accent);
    text-stroke: 2px var(--accent);
    margin-top: 0.15em;
  }
  .mola__hero p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.8;
  }
  .mola__hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .mola__about {
    padding: 6rem 0;
    background: var(--white);
  }
  .mola__about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .mola__about-text .section-label {
    margin-bottom: 1rem;
  }
  .mola__about-text h2 {
    margin-bottom: 1.5rem;
  }
  .mola__about-text p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
  }
  .mola__about-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .mola__about-image img {
    width: 100%;
    height: 420px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .mola__applications {
    padding: 6rem 0;
    background: var(--off-white);
  }
  .mola__applications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .mola__applications-item {
    text-align: center;
    padding: 1.75rem 1rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
  }
  .mola__applications-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
  }
  .mola__applications-item-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.875rem;
    background: var(--off-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
  }
  .mola__applications-item-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    transition: color var(--transition);
  }
  .mola__applications-item:hover .mola__applications-item-icon {
    background: var(--accent);
  }
  .mola__applications-item:hover .mola__applications-item-icon svg {
    color: var(--white);
  }
  .mola__applications-item h3 {
    font-size: 1rem;
    font-weight: 600;
  }
  .mola__materials {
    padding: 6rem 0;
    background: var(--white);
  }
  .mola__materials-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .mola__materials-table thead th {
    background: var(--primary);
    color: var(--white);
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 0.75rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .mola__materials-table tbody td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-100);
    font-size: 1rem;
  }
  .mola__materials-table tbody tr:last-child td {
    border-bottom: none;
  }
  .mola__materials-table tbody tr:hover {
    background: var(--off-white);
  }
  .mola__specs {
    padding: 6rem 0;
    background: var(--off-white);
  }
  .mola__specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .mola__specs-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    text-align: center;
    transition: all var(--transition);
  }
  .mola__specs-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
  }
  .mola__specs-item h4 {
    color: var(--accent);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
  }
  .mola__specs-item strong {
    display: block;
    font-family: "Outfit", sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
  }
  .mola__specs-item span {
    font-size: 1rem;
    color: var(--text-muted);
  }
  .mola__gallery {
    padding: 6rem 0;
    background: var(--white);
  }
  .mola__gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .mola__gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    position: relative;
  }
  .mola__gallery-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .mola__gallery-item:hover img {
    transform: scale(1.06);
  }
  .mola__gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background var(--transition);
  }
  .mola__gallery-item:hover::after {
    background: rgba(11, 29, 53, 0.12);
  }
  .mola__form {
    padding: 6rem 0;
    background: var(--off-white);
  }
  .mola__form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  .mola__form-info .section-label {
    margin-bottom: 1rem;
  }
  .mola__form-info h2 {
    margin-bottom: 1rem;
  }
  .mola__form-info > p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
  }
  .mola__form-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
  }
  .mola__form-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
  }
  .mola__form-benefit-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mola__form-benefit-icon svg {
    width: 12px;
    height: 12px;
    color: var(--white);
  }
  .mola__form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
  }
  .mola__form-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
  }
  @media (max-width: 1024px) {
    .home__about-layout {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    .home__about-img-secondary {
      right: 1rem;
    }
    .home__products-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .home__why-content {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    .home__why-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    .home__segments-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .home__numbers-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .home__hero-stats {
      grid-template-columns: repeat(2, 1fr);
    }
    .home__cta-layout {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .home__cta-image {
      display: none;
    }
    .mola__about-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .mola__applications-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .mola__specs-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .mola__form-wrapper {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .tpl__footer-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 768px) {
    .tpl__header .container {
      height: 64px;
    }
    .tpl__header-nav {
      position: fixed;
      top: 64px;
      left: 0;
      width: 100%;
      height: calc(100vh - 64px);
      background: rgba(11, 29, 53, 0.98);
      backdrop-filter: blur(16px);
      flex-direction: column;
      align-items: stretch;
      padding: 2rem;
      gap: 1rem;
      transform: translateX(100%);
      transition: transform var(--transition);
    }
    .tpl__header-nav.open {
      transform: translateX(0);
    }
    .tpl__header-menu {
      flex-direction: column;
    }
    .tpl__header-menu li a {
      display: block;
      padding: 1rem;
      font-size: 1rem;
    }
    .tpl__header-toggle {
      display: flex;
    }
    .home__hero {
      min-height: 90vh;
    }
    .home__hero-stats {
      grid-template-columns: repeat(2, 1fr);
    }
    .home__hero-stat {
      padding: 1.5rem 1rem;
    }
    .home__hero-stat strong {
      font-size: 2rem;
    }
    .home__hero-stats-bar {
      margin-top: -2rem;
    }
    .home__products-grid {
      grid-template-columns: 1fr;
    }
    .home__why-content {
      grid-template-columns: 1fr;
    }
    .home__why-image img {
      height: 320px;
    }
    .home__why-grid {
      grid-template-columns: 1fr;
    }
    .home__numbers-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .home__segments-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .home__testimonials-grid {
      grid-template-columns: 1fr;
    }
    .mola__hero {
      padding: 8rem 0 4rem;
    }
    .mola__applications-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .mola__specs-grid {
      grid-template-columns: 1fr;
    }
    .mola__gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .form__row {
      grid-template-columns: 1fr;
    }
    .tpl__footer-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .tpl__footer-bar {
      flex-direction: column;
      gap: 0.5rem;
      text-align: center;
    }
  }
  @media (max-width: 480px) {
    .home__hero-actions,
    .mola__hero-actions,
    .home__cta-actions {
      flex-direction: column;
    }
    .home__hero-actions .btn,
    .mola__hero-actions .btn {
      width: 100%;
      justify-content: center;
    }
    .home__segments-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .home__numbers-grid {
      grid-template-columns: 1fr;
    }
    .home__hero-stats {
      grid-template-columns: 1fr;
    }
    .home__about-badge {
      display: none;
    }
    .home__about-img-secondary {
      display: none;
    }
  }
}
@layer utilities {
  html.js-enabled .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }
  html.js-enabled .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  html.js-enabled .reveal[data-delay="1"] {
    transition-delay: 0.1s;
  }
  html.js-enabled .reveal[data-delay="2"] {
    transition-delay: 0.15s;
  }
  html.js-enabled .reveal[data-delay="3"] {
    transition-delay: 0.2s;
  }
  html.js-enabled .reveal[data-delay="4"] {
    transition-delay: 0.25s;
  }
  html.js-enabled .reveal[data-delay="5"] {
    transition-delay: 0.3s;
  }
  html.js-enabled .reveal[data-delay="6"] {
    transition-delay: 0.35s;
  }
  html.js-enabled .reveal[data-delay="7"] {
    transition-delay: 0.4s;
  }
  html.js-enabled .reveal[data-delay="8"] {
    transition-delay: 0.45s;
  }
  html.js-enabled .reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  html.js-enabled .reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
  }
  html.js-enabled .reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  html.js-enabled .reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
  }
  @keyframes kenBurns {
    0% {
      transform: scale(1) translate(0, 0);
    }
    100% {
      transform: scale(1.15) translate(-2%, -1.5%);
    }
  }
  @keyframes float-pulse {
    0%, 100% {
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
      box-shadow: 0 4px 32px rgba(37, 211, 102, 0.6);
    }
  }
  .hero__particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
  }
  @media (prefers-reduced-motion: reduce) {
    .home__hero-bg img,
    .mola__hero-bg img {
      animation: none;
    }
    .hero__particles {
      display: none;
    }
  }
}
/*# sourceMappingURL=index.css.map */
