/* ========== ROOT & RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    color: #d4d4d8;
    letter-spacing: 0;
    background-color: #0a2463;
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    transition: all .5s ease-in;
    overflow: visible;
    margin: 0;
    overflow-x: hidden !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    vertical-align: middle;
    max-width: 100%;
    display: inline-block;
}

a {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 10px;
    font-weight: bold;
}

:root {
    --yellow: #fbbf24;
    --red: #ef4444;
    --blue: #0a2463;
    --white: white;
    --black: black;
}

/* ========== TYPOGRAPHY ========== */
.heading-1 {
    color: #fff;
    letter-spacing: 1px;
    text-transform: none;
    font-family: 'Audiowide', sans-serif;
    font-size: 72px;
    font-weight: 600;
    line-height: 64px;
}

.heading-2 {
    color: #fff;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    line-height: 48px;
}

.heading-2.dark {
    color: #192428;
}

.heading-3 {
    color: #fff;
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
}

.heading-3.left {
    text-align: left;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
}

.heading-4 {
    font-family: 'Audiowide', sans-serif;
    font-size: 18px;
}

.heading-4.white-text {
    color: #fff;
}

.heading-4.white-text.tiny {
    font-size: 16px;
}

.heading-5 {
    color: #fff;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    line-height: 20px;
}

.heading-box {
    align-items: center;
    margin-bottom: 0;
}

.text-span {
    color: #fbbf24;
}

.text-span-2 {
    color: var(--yellow);
}

.text-span-3, .text-span-4, .text-span-5 {
    color: #fff;
    line-height: 16px;
}

.tagline {
    color: var(--orange);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

.tagline.orange {
    color: var(--orange);
}

.tagline.white {
    color: #fff;
}

.tagline.dark {
    color: #1e2a2f;
}

.text-block {
    font-size: 16px;
}

.text-block-2 {
    color: #475b63;
    font-size: 20px;
    line-height: 32px;
}

.text-block-2.white {
    color: #9dafb5;
    font-size: 16px;
}

.text-block-2.white.center {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    flex-direction: column;
    display: flex;
}

.text-block-4 {
    color: #9dafb5;
    text-transform: uppercase;
    padding-right: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.text-block-4:hover {
    color: var(--orange);
}

.text-block-5 {
    font-size: 18px;
}

.text-block-tiny {
    letter-spacing: 0;
    text-transform: uppercase;
    font-family: 'Audiowide', sans-serif;
    font-size: 10px;
}

.paragraph-lead {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 32px;
}

.paragraph-lead.center {
    text-align: center;
}

.paragraph {
    font-size: 20px;
    line-height: 28px;
}

.paragraph-small {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
}

.paragraph-tiny {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

/* ========== NAVIGATION ========== */
.navbar {
    z-index: 99;
    background-color: #1c2c34;
    border-bottom: 1px solid #2e3a3e;
    padding-left: 20px;
    padding-right: 20px;
    position: sticky;
    top: 0;
}

.nav-menu {
    display: flex;
}

.navlink {
    color: #c1cdd1;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: all .5s;
}

.navlink:hover {
    color: var(--orange);
}

.navlink.w--current {
    border-bottom: 2px solid var(--orange);
    color: #657175;
}

.navlink.cart {
    border-left: 1px solid #2d3a3d;
    margin-left: 40px;
    padding-left: 40px;
}

/* ========== BUTTONS ========== */
.button-primary {
    z-index: 5;
    grid-column-gap: 24px;
    background-color: var(--orange);
    cursor: pointer;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: center;
    padding: 16px 24px;
    transition: all .5s;
    display: flex;
    position: relative;
}

.button-primary:hover {
    -webkit-text-fill-color: inherit;
    background-color: #0b1013;
    background-clip: border-box;
    position: relative;
}

.button-primary.tiny {
    grid-column-gap: 12px;
    justify-content: center;
    padding: 8px 20px;
}

.button-primary.dark {
    background-color: #192428;
}

.button-primary.dark:hover {
    background-color: #0b1013;
}

.button-text {
    color: #fff;
    letter-spacing: 0;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all .5s;
}

.button-text:hover {
    color: #fff;
}

.button-secondary {
    z-index: 5;
    grid-column-gap: 12px;
    background-color: #2e3a3e;
    align-items: center;
    padding: 8px 20px;
    display: flex;
    position: relative;
}

.button-link {
    grid-column-gap: 24px;
    align-items: center;
    transition: all .5s;
    display: flex;
}

.button-link:hover {
    color: var(--orange);
}

.button-wrapper {
    position: relative;
}

.button-border {
    z-index: 1;
    background-image: url("https://cdn.prod.website-files.com/6525adb6db3d408e70f37db1/6525bdbb712ece3f8f911216_img_dotsMuted.svg");
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    border: 1px solid #fbbf24;
    width: 100%;
    height: 60px;
    line-height: 50px;
    position: absolute;
    bottom: -13px;
    right: -14px;
}

.button-border.dark {
    border-color: #192428;
    line-height: 20px;
}

.button-border.tiny {
    height: 40px;
}

/* ========== LAYOUT ========== */
.w-layout-blockcontainer {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.w-layout-vflex {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
}

.w-layout-hflex {
    flex-direction: row;
    align-items: flex-start;
    display: flex;
}

.w-layout-grid {
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    width: 100%;
    max-width: 1440px;
    display: block;
}

.container.center {
    grid-row-gap: 24px;
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
}

.flex-block {
    grid-column-gap: 40px;
    grid-row-gap: 24px;
    align-items: center;
}

.flex-block-2 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    align-items: center;
}

.flex-block-3 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
}

.flex-block-4 {
    grid-column-gap: 50px;
    grid-row-gap: 0px;
    flex-direction: row;
    align-items: stretch;
    overflow: visible;
}

.flex-block-5 {
    justify-content: flex-end;
    width: 100%;
    margin-bottom: -240px;
    padding-bottom: 0;
    display: flex;
}

.flex-block-6 {
    justify-content: space-between;
}

.flex-block-7 {
    align-items: center;
}

.flex-block-8 {
    margin-top: 40px;
}

/* ========== GRID SYSTEM ========== */
.grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.grid-2 {
    grid-column-gap: 30px;
    grid-row-gap: 45px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
}

.grid-3 {
    grid-column-gap: 40px;
    grid-template-rows: auto;
}

.grid-4 {
    grid-column-gap: 99px;
    grid-template-rows: auto;
    grid-template-columns: .25fr minmax(400px, 1fr);
    grid-auto-columns: 2.75fr;
    padding-bottom: 120px;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

.grid-5 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
}

.grid-6 {
    grid-column-gap: 65px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding-bottom: 32px;
}

.grid-8 {
    grid-column-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    align-self: center;
    place-items: start center;
    width: 100%;
    margin-top: 40px;
    position: relative;
}

.grid-9 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
}

.grid-11 {
    grid-column-gap: 29px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 40px;
}

.grid-12 {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    grid-template-rows: auto;
    position: relative;
}

/* ========== COLUMNS ========== */
.columns {
    margin-left: 0;
    margin-right: 0;
    padding-left: 40px;
    display: flex;
    position: relative;
    overflow: visible;
}

.column {
    grid-column-gap: 0px;
    grid-row-gap: 32px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 64px;
    padding-bottom: 64px;
    display: flex;
}

.column-2 {
    grid-row-gap: 40px;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    padding-left: 0;
    padding-right: 0;
    display: flex;
}

.column-3 {
    padding-left: 0;
    padding-right: 0;
}

.column-4 {
    padding-left: 0;
    padding-right: 0;
}

.column-5 {
    align-self: flex-end;
    height: auto;
}

.column-5.middle {
    align-self: center;
}

.column-6 {
    width: 100%;
    max-width: 100vw;
    height: 410px;
    display: flex;
    position: relative;
    overflow: hidden;
}

.columns-2 {
    padding-top: 100px;
    display: flex;
}

.columns-3 {
    z-index: 5;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

/* ========== SECTIONS ========== */
.section-hero {
    max-width: 100%;
    padding-top: 0;
    position: relative;
}

.section-products {
    z-index: 1;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    background-color: #192428;
    flex-direction: column;
    align-items: center;
    margin-top: -10px;
    padding: 100px 20px 40px;
    display: flex;
    position: relative;
}

.section-text-video {
    padding: 80px 20px 0;
}

.section-full-width {
    padding: 80px 20px;
}

.section-about {
    background-color: #192428;
    margin-bottom: 40px;
    padding-top: 0;
    padding-bottom: 320px;
    position: relative;
    overflow: hidden;
}

.section-brand-logos {
    z-index: 5;
    position: relative;
}

.section-testimonials {
    z-index: 5;
    margin-bottom: 100px;
    position: relative;
}

.section-footer {
    z-index: 1;
    background-color: #192428;
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

.section-footer-bottom {
    background-color: #121b1f;
    padding-top: 8px;
    padding-bottom: 8px;
}

/* ========== PRODUCTS & PACKAGES ========== */
.package-featured {
    z-index: 99;
    color: #192428;
    background-color: #fbbf24;
    padding-bottom: 40px;
    padding-left: 0;
    padding-right: 0;
    position: relative;
}

.package-secondary {
    z-index: 99;
    background-color: #2e3a3e;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    display: flex;
    position: relative;
}

.package-others {
    z-index: 1;
    grid-row-gap: 0px;
    background-color: #192428;
    border: 1px solid #2f4b55;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
    display: flex;
    position: relative;
}

.package-more {
    z-index: 99;
    grid-column-gap: 31px;
    grid-row-gap: 0px;
    border: 1px solid #2f4b55;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    padding: 32px 32px 40px;
    position: relative;
}

.contentbox {
    grid-row-gap: 24px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 12px;
    padding-left: 32px;
    padding-right: 32px;
    display: flex;
}

.ratingbox {
    flex-direction: column;
    align-items: center;
    margin-top: 24px;
    display: flex;
}

.featuresbox {
    margin-bottom: 20px;
}

.price {
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    font-weight: 700;
}

.price.orange-text {
    color: #fbbf24;
    letter-spacing: 0;
}

.price.orange-text.tiny {
    font-size: 24px;
}

.price.orange-text.center {
    text-align: center;
}

.price.large {
    font-size: 40px;
    line-height: 40px;
}

.price.large.orange-tile {
    color: #1e2a2f;
}

.price.tiny {
    font-size: 16px;
}

/* ========== IMAGES ========== */
.image {
    margin-top: -100px;
}

.image-3 {
    z-index: 0;
    position: absolute;
    top: auto;
    bottom: -50px;
    left: -50px;
}

.image-4 {
    z-index: -1;
    position: absolute;
    top: -70px;
    right: -50px;
}

.image-5 {
    position: absolute;
    bottom: -16px;
    right: 0;
}

.image-6 {
    text-align: left;
    display: block;
}

.image-7, .image-8 {
    z-index: 1;
    margin-top: -50px;
    position: relative;
}

.image-9 {
    z-index: 0;
    position: absolute;
    top: -50px;
    left: -50px;
}

.image-10 {
    position: static;
    inset: auto 0% 0%;
}

.image-12 {
    width: 250px;
    position: absolute;
    bottom: -30px;
    left: 404px;
}

.image-13 {
    display: block;
}

.image-14 {
    z-index: -1;
    position: absolute;
    inset: -50px -50px 0% auto;
}

.image-17 {
    padding-top: 80px;
}

.image-19 {
    z-index: 1;
    position: absolute;
    top: 70px;
    right: -146px;
}

.image-21 {
    width: 24px;
    height: 24px;
}

.image-30 {
    position: absolute;
    inset: -50px auto auto -50px;
}

.image-32 {
    z-index: -1;
    position: absolute;
    inset: -50px -50px auto auto;
}

/* ========== SOCIAL PROOF & TILES ========== */
.social-proof-tiles {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: start;
    justify-items: start;
    max-width: 960px;
    margin-bottom: 0;
    position: relative;
}

.social-proof-single-tile {
    letter-spacing: 1.4px;
    text-transform: uppercase;
    background-color: #fff;
    flex-direction: column;
    justify-content: space-between;
    width: 240px;
    height: 240px;
    padding: 24px;
    font-family: 'Audiowide', sans-serif;
    font-size: 14px;
    display: flex;
}

.social-proof-single-tile.orange-tile {
    background-color: var(--orange);
    color: #fff;
}

.social-proof-single-tile.dark-tile {
    color: #fff;
    background-color: #192428;
}

.social-proof-single-tile.transparent-tile {
    background-color: #0000;
    position: relative;
}

.social-proof-single-tile.mp0 {
    padding: 0;
}

.social-proof-single-tile.white {
    color: #1e2a2f;
    letter-spacing: 1.4px;
    font-family: 'Audiowide', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

/* ========== TESTIMONIALS ========== */
.slider {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    background-color: #192428;
    max-width: 100%;
    height: auto;
    padding: 32px;
    display: flex;
    overflow: visible;
}

.slider.in-content {
    background-color: #f0f4f5;
    width: 100%;
    display: block;
}

.slide {
    z-index: 5;
    letter-spacing: 0;
    background-color: #192428;
    max-width: 100%;
    padding-top: 0;
    overflow: visible;
}

.slide.in-content {
    background-color: #f0f4f5;
}

.left-arrow {
    display: none;
}

.right-arrow {
    height: 50px;
    margin-bottom: 0;
    display: block;
    bottom: -80px;
}

.slide-nav {
    display: none;
}

.mask {
    max-width: 100%;
    overflow: visible;
}

.collection-item {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-direction: row;
    align-items: flex-start;
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
}

.collection-list-wrapper {
    display: flex;
}

.div-block-5 {
    background-image: url("https://cdn.prod.website-files.com/6525adb6db3d408e70f37db1/6525bd349355dad7c06bf992_vertical_accent.svg");
    background-position: 50% 0;
    background-repeat: repeat-y;
    background-size: cover;
    flex-direction: column;
    flex: 0 auto;
    order: -1;
    justify-content: space-between;
    align-self: stretch;
    align-items: flex-start;
    width: 40px;
    max-width: 40px;
    height: auto;
    margin-top: 0;
    padding-left: 4px;
    padding-right: 4px;
    display: flex;
}

.div-block-6 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-direction: column;
    height: 100%;
    display: flex;
}

.testimonial-author {
    color: var(--orange);
    text-transform: uppercase;
    padding-right: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

.testimonial-date {
    color: #fff;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    line-height: 20px;
}

.testimonial-date.in-content {
    color: #192428;
}

.testimonial-content {
    color: #fff;
    letter-spacing: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
}

.testimonial-content.in-content {
    color: #192428;
}

/* ========== OTHER COMPONENTS ========== */
.container-about {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    color: #2e3a3e;
    background-color: #fff;
    background-image: url("https://cdn.prod.website-files.com/6525adb6db3d408e70f37db1/653f5e86270573247a7b841e_corner.svg");
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: auto;
    flex-direction: column;
    align-items: flex-start;
    margin-top: -220px;
    padding: 40px 0 0 80px;
    display: flex;
}

.content {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    max-width: 100%;
    padding-right: 40px;
}

.highlighted {
    color: #192428;
    background-color: #e4f4f0;
    padding-left: 8px;
    padding-right: 8px;
    font-weight: 700;
    line-height: 20px;
}

.div-block-7 {
    max-width: 100%;
    display: block;
    position: relative;
}

.div-block-8 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    display: flex;
}

.div-block-11 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    background-color: #182428;
    flex-direction: column;
    padding: 40px;
    display: flex;
    position: relative;
}

.brand-logos {
    justify-content: center;
    align-items: center;
    padding-top: 48px;
    padding-bottom: 48px;
    z-index: 5;
    position: relative;
}

.lindgren {
    z-index: 0;
    color: #172124;
    align-items: flex-start;
    font-size: 500px;
    display: flex;
    position: static;
    top: 0;
}

.html-embed {
    width: 100%;
    max-width: 100%;
    display: block;
}

.html-embed-2 {
    width: 100%;
}

.dropdown-toggle {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    background-color: var(--orange);
    justify-content: flex-start;
    align-items: center;
    height: auto;
    padding: 4px 12px;
    display: flex;
}

.dropdown-list-2 {
    background-color: #090d0f;
}

.dropdown-list-2.w--open {
    color: #9dafb5;
}

.dropdown-link {
    color: #9dafb5;
    font-size: 16px;
}

.dropdown-link:hover {
    color: var(--orange);
}

.icon {
    color: #c1cdd1;
}

.tri-charge-box {
    z-index: 99;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    background-color: #182428;
    border: 1px #000;
    flex-direction: column;
    width: 100%;
    padding: 20px 40px 40px 32px;
    display: flex;
    position: relative;
}

.cart {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    border-left: 1px solid #2d3a3d;
    flex-direction: row;
    align-items: center;
    margin-left: 40px;
    padding-left: 40px;
    display: flex;
}

.dark-boxes-grid {
    grid-column-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 40px;
    position: relative;
}

.dark-boxes-grid.two-column {
    grid-template-columns: 1fr 1fr;
}

.dark-box {
    z-index: 1;
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    text-align: left;
    background-color: #121b1f;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    display: flex;
    position: relative;
}

.fluid {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 100vw;
    height: 410px;
    display: flex;
    position: relative;
    overflow: hidden;
}

.header-tagline {
    letter-spacing: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.ig-tile {
    background-image: url("https://cdn.prod.website-files.com/6525adb6db3d408e70f37db1/653e8b6f49d44197bc2e69fc_ig_post1.png");
    background-position: 50% 0;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.ig-tile.picture-1 {
    background-image: url("https://cdn.prod.website-files.com/6525adb6db3d408e70f37db1/653e8bea3d2acc91d9fe4e26_ig_post2.png");
}

.list {
    text-align: left;
    padding-left: 16px;
    font-size: 17px;
    line-height: 27px;
}

.list.white {
    color: #fff;
}

.list.large {
    color: #192428;
    padding-left: 32px;
    font-size: 20px;
    line-height: 32px;
}

.main-wrapper {
    max-width: 100vw;
    overflow: hidden;
}

.footer-link {
    color: #9dafb5;
    letter-spacing: 0;
    text-transform: uppercase;
    font-family: 'Audiowide', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    text-decoration: none;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 991px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .columns {
        flex-flow: column;
        align-items: stretch;
    }

    .column {
        align-items: stretch;
    }

    .flex-block-2 {
        padding-top: 120px;
    }

    .flex-block-3 {
        flex-flow: column;
        align-items: stretch;
        width: 100%;
        display: flex;
    }

    .container-about {
        width: 100%;
        padding-left: 40px;
        padding-right: 40px;
    }

    .social-proof-tiles {
        grid-template-columns: 1fr 1fr;
        width: 100%;
        max-width: 100%;
    }

    .grid-4 {
        grid-column-gap: 64px;
        grid-row-gap: 64px;
        flex-direction: column;
        grid-template-columns: .25fr;
        display: flex;
    }

    .grid-5 {
        width: 100%;
    }

    .grid-6 {
        grid-column-gap: 30px;
        grid-template-columns: 1fr 1fr;
    }

    .content {
        width: 100%;
        margin-bottom: 80px;
        padding-right: 0;
    }

    .button-wrapper {
        align-self: auto;
        width: auto;
        max-width: 90%;
    }

    .cart {
        justify-content: center;
        margin-bottom: 40px;
        margin-left: 0;
        padding-left: 0;
    }

    .column-6 {
        display: none;
    }

    .dark-boxes-grid {
        flex-flow: column;
        grid-auto-flow: row;
        display: flex;
    }

    .grid-8 {
        grid-template-columns: 1fr 1fr;
        grid-auto-flow: row;
        place-content: start;
        justify-items: start;
    }

    .grid-11 {
        grid-row-gap: 100px;
        flex-flow: column;
        display: flex;
    }

    .menu-button {
        background-color: #0000;
    }

    .menu-button.w--open {
        background-color: var(--orange);
    }
}

@media screen and (max-width: 767px) {
    .columns {
        flex-direction: column;
    }

    .container {
        padding-left: 12px;
        padding-right: 12px;
        overflow: hidden;
    }

    .section-about {
        padding-bottom: 80px;
    }

    .columns-2 {
        flex-direction: column;
    }

    .text-block-2 {
        font-size: 16px;
    }

    .column-2 {
        display: none;
    }

    .container-about {
        margin-top: 0;
        padding-bottom: 0;
        padding-left: 40px;
        padding-right: 40px;
    }

    .social-proof-tiles {
        grid-template-columns: 1fr 1fr;
    }

    .image-12 {
        display: none;
    }

    .grid-6 {
        grid-column-gap: 65px;
        grid-template-columns: 1fr 1fr;
    }

    .flex-block-5 {
        justify-content: flex-start;
        align-self: flex-start;
        margin-bottom: 0;
    }

    .content {
        margin-bottom: 40px;
        padding-right: 0;
    }

    .column-5 {
        display: none;
    }

    .paragraph-lead {
        font-size: 20px;
    }

    .fluid, .column-6 {
        display: none;
    }

    .payment-methods {
        flex-flow: column;
    }
}

@media screen and (max-width: 479px) {
    body {
        overflow: visible;
    }

    .heading-1 {
        font-size: 48px;
        line-height: 48px;
    }

    .button-primary, .button-primary.tiny {
        justify-content: center;
    }

    .columns {
        flex-direction: column;
        width: 100%;
    }

    .column {
        padding: 32px 0;
    }

    .container {
        padding-left: 12px;
        padding-right: 12px;
        overflow: hidden;
    }

    .button-link {
        margin-bottom: 12px;
    }

    .flex-block {
        grid-row-gap: 40px;
        flex-direction: column;
        align-self: flex-start;
        align-items: flex-start;
        width: 100%;
    }

    .section-products {
        padding-top: 32px;
        padding-bottom: 0;
    }

    .button-secondary {
        justify-content: center;
        align-items: center;
    }

    .columns-2 {
        flex-direction: column;
    }

    .contentbox {
        padding-left: 20px;
        padding-right: 20px;
    }

    .list.large {
        font-size: 18px;
        line-height: 28px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .text-block-2 {
        font-size: 16px;
        line-height: 24px;
    }

    .grid-4 {
        flex-direction: column;
        grid-template-columns: .5fr;
        padding-bottom: 0;
    }

    .text-block-tiny {
        justify-content: center;
        display: flex;
    }

    .grid-5 {
        grid-template-columns: 1fr;
    }

    .slider {
        flex-flow: row;
        justify-content: flex-start;
        align-items: stretch;
        height: auto;
        padding-left: 24px;
        padding-right: 24px;
        display: flex;
        overflow: visible;
    }

    .image-12 {
        display: none;
    }

    .collection-item {
        padding-right: 0;
    }

    .div-block-5 {
        display: none;
    }

    .testimonial-content {
        letter-spacing: 0;
        width: 100%;
        font-size: 16px;
        line-height: 28px;
    }

    .div-block-6 {
        flex-direction: column;
        width: 100%;
    }

    .flex-block-4 {
        grid-column-gap: 32px;
    }

    .heading-2 {
        font-size: 33px;
        line-height: 40px;
    }

    .heading-2.dark {
        font-size: 32px;
    }

    .grid-6 {
        grid-row-gap: 32px;
        grid-template-columns: 1fr;
    }

    .flex-block-5 {
        justify-content: flex-start;
    }

    .content {
        margin-bottom: 40px;
        padding-right: 0;
    }

    .column-5 {
        display: none;
    }

    .paragraph-lead {
        font-size: 18px;
    }

    .flex-block-6 {
        grid-column-gap: 12px;
        grid-row-gap: 12px;
        flex-direction: column;
    }

    .button-wrapper {
        align-self: center;
        width: auto;
        max-width: 90%;
    }

    .button-wrapper.header-button {
        align-self: auto;
        width: auto;
        max-width: 90%;
    }

    .fluid {
        display: none;
    }

    .dark-boxes-grid, .dark-boxes-grid.two-column {
        grid-template-columns: 1fr;
    }

    .grid-8 {
        grid-template-columns: minmax(200px, 1fr);
    }

    .grid-9 {
        grid-template-columns: 1fr;
    }

    .subpage-product-cover {
        max-width: 100%;
    }

    .payment-methods {
        flex-flow: column;
    }

    .image-27 {
        max-width: 20%;
    }

    .image-28 {
        z-index: -1;
        top: 0%;
        left: auto;
    }

    .image-30 {
        display: none;
    }

    .grid-11 {
        grid-row-gap: 50px;
        grid-template-columns: 1fr;
    }

    .grid-12 {
        grid-template-rows: auto auto;
        grid-template-columns: 1fr;
    }

    ::-moz-selection {
        color: #1a3a52;
        background: #fbbf24;
    }

    ::selection {
        color: #1a3a52;
        background: #fbbf24;
    }
}

.w-nav {
    z-index: 1000;
    background: #ddd;
    position: relative;
}

.w-nav-brand {
    float: left;
    color: #333;
    text-decoration: none;
    position: relative;
}

.w-nav-link {
    vertical-align: top;
    color: #222;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.w-container {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
}

.w-nav-button {
    float: right;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    padding: 18px;
    font-size: 24px;
    display: none;
    position: relative;
}

.w-nav-button.w--open {
    color: #fff;
}

.w-col {
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
}

/* ========== GGMEDIA MAIN.HTML CUSTOM STYLES ========== */

/* Hero Section */
.hero-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #0a2463;
    min-height: 600px;
}

.hero-work-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-vcard {
    background-color: #1a3a52;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.hero-content h1 {
    font-family: 'Audiowide', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    color: #fbbf24;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-description {
    font-family: 'Maven Pro', sans-serif;
    font-size: 16px;
    color: #d4d4d8;
    margin-bottom: 30px;
    line-height: 1.6;
}

.vcard-details {
    border-top: 1px solid rgba(251, 191, 36, 0.3);
    padding-top: 20px;
    margin-top: 20px;
}

.vcard-details p {
    font-family: 'Maven Pro', sans-serif;
    font-size: 14px;
    color: #d4d4d8;
    margin-bottom: 10px;
    line-height: 1.5;
}

.vcard-details strong {
    color: #fbbf24;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.cta-btn {
    background-color: #ef4444;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(251, 191, 36, 0.3);
}

.hero-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.hero-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Featured Section */
.featured-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #0a2463;
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: #1a3a52;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: #fbbf24;
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(251, 191, 36, 0.15);
}

.product-header {
    margin-bottom: 20px;
}

.product-header h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.badge {
    display: inline-block;
    background-color: #ef4444;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

.rating {
    font-family: 'Maven Pro', sans-serif;
    font-size: 14px;
    color: #d4d4d8;
}

.product-price {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    margin-bottom: 20px;
}

.product-features li {
    font-family: 'Maven Pro', sans-serif;
    font-size: 14px;
    color: #d4d4d8;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-weight: bold;
}

.product-card .cta-btn {
    width: 100%;
    text-align: center;
}

/* Stats Section */
.stats-section {
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a3a52 0%, #0a2463 100%);
    border-top: 1px solid rgba(251, 191, 36, 0.2);
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat {
    padding: 20px;
}

.stat-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 15px;
}

.stat-label {
    font-family: 'Maven Pro', sans-serif;
    font-size: 16px;
    color: #d4d4d8;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #0a2463;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: #1a3a52;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-text {
    flex-grow: 1;
    margin-bottom: 20px;
}

.testimonial-text p {
    font-family: 'Maven Pro', sans-serif;
    font-size: 15px;
    color: #d4d4d8;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(251, 191, 36, 0.2);
    padding-top: 15px;
}

.author-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.author-role {
    font-family: 'Maven Pro', sans-serif;
    font-size: 12px;
    color: #fbbf24;
    font-weight: 600;
}

.testimonial-avatar {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fbbf24;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Brands Section */
.brands-section {
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a3a52 0%, #0a2463 100%);
    border-top: 1px solid rgba(251, 191, 36, 0.2);
}

.brands-subtitle {
    font-family: 'Maven Pro', sans-serif;
    font-size: 16px;
    color: #d4d4d8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.brands-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: rgba(26, 58, 82, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(251, 191, 36, 0.1);
    min-height: 120px;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    border-color: #fbbf24;
    background-color: rgba(251, 191, 36, 0.05);
}

.brand-logo img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1);
    transition: all 0.3s ease;
}

.brand-logo:hover img {
    filter: brightness(1) contrast(1.2);
}

/* CTA Section */
.cta-section {
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(#e1aa20 100%);
    text-align: center;
    margin-top: 60px;
}

.cta-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    font-family: 'Maven Pro', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn-large {
    background-color: #3a30f4;
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn-large:hover {
    background-color: #ef4444;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background-color: #1a3a52;
    border-top: 1px solid rgba(251, 191, 36, 0.2);
    color: #d4d4d8;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.footer-section p {
    font-family: 'Maven Pro', sans-serif;
    font-size: 14px;
    color: #d4d4d8;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    font-family: 'Maven Pro', sans-serif;
    font-size: 14px;
    color: #fbbf24;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #fbbf24;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #fbbf24;
    color: #000;
}

.footer-bottom {
    border-top: 1px solid rgba(251, 191, 36, 0.2);
    padding: 20px;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Maven Pro', sans-serif;
    font-size: 13px;
    color: #8b9fb5;
}

/* Navbar Styles (if not already set) */
.navbar {
    background-color: #1a3a52;
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fbbf24;
    text-decoration: none;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #d4d4d8;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.w--current {
    color: #fbbf24;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fbbf24;
    transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.w--current:after {
    width: 100%;
}

/* Mobile Menu Button */
.menu-button {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-button span {
    width: 25px;
    height: 3px;
    background-color: #fbbf24;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-button.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-button.active span:nth-child(2) {
    opacity: 0;
}

.menu-button.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Navbar */
@media (max-width: 767px) {
    .menu-button {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: #1a3a52;
        border-bottom: 1px solid rgba(251, 191, 36, 0.2);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.w--open {
        max-height: 400px;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(251, 191, 36, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 15px 20px;
    }

    .nav-link:after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.w--current {
        background-color: rgba(251, 191, 36, 0.1);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-work-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .cta-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 40px 15px;
    }

    .hero-vcard {
        padding: 25px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-link {
        font-size: 14px;
    }

    .brands-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .brand-logo {
        min-height: 100px;
    }
}

@media (max-width: 479px) {
    .hero-section {
        padding: 30px 10px;
        min-height: 500px;
    }

    .hero-vcard {
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .section-title {
        font-size: 20px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        gap: 20px;
    }

    .nav-menu {
        gap: 10px;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 12px;
    }

    .cta-content h2 {
        font-size: 24px;
    }


    .brands-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== SERVICIOS.HTML & REDES_SOCIALES.HTML ========== */
#services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

#services h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

#services > p {
    font-family: 'Maven Pro', sans-serif;
    font-size: 16px;
    color: #d4d4d8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #1a3a52;
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #fbbf24;
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(251, 191, 36, 0.15);
}

.service-header {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
    padding-bottom: 20px;
}

.service-card h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.service-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #d4d4d8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fbbf24;
}

.service-section {
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 10px;
}

.service-card p {
    font-family: 'Maven Pro', sans-serif;
    font-size: 14px;
    color: #d4d4d8;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    font-family: 'Maven Pro', sans-serif;
    font-size: 14px;
    color: #d4d4d8;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-weight: bold;
}

.service-card .cta-btn {
    width: 100%;
    margin-top: 20px;
}

.service-note {
    font-family: 'Maven Pro', sans-serif;
    font-size: 13px;
    color: #8b9fb5;
    margin-top: 10px;
}

/* ========== CONTACTO.HTML ========== */
#contact {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 20px;
}

#contact h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

#contact > p {
    font-family: 'Maven Pro', sans-serif;
    font-size: 16px;
    color: #d4d4d8;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

#contact-form {
    display: flex;
    flex-direction: column;
}

#contact-form label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#contact-form input,
#contact-form textarea,
#contact-form select {
    background-color: #1a3a52;
    color: #fff;
    border: 1px solid rgba(251, 191, 36, 0.2);
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-family: 'Maven Pro', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: #8b9fb5;
}

#contact-form input:focus,
#contact-form textarea:focus,
#contact-form select:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
    background-color: #2a4a62;
}

#contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

#contact-form button {
    background-color: #ef4444;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#contact-form button:hover {
    background-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(239, 68, 68, 0.3);
}

#contact-form button:active {
    transform: translateY(0);
}

#contact-form button:disabled {
    background-color: #6b7a7f;
    cursor: not-allowed;
    opacity: 0.6;
}

#contact-info {
    margin-top: 60px;
    border-top: 2px solid rgba(251, 191, 36, 0.2);
    padding-top: 40px;
}

#contact-info h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 30px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.contact-item {
    background-color: #1a3a52;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    text-align: center;
}

.contact-item h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 10px;
}

.contact-item p {
    font-family: 'Maven Pro', sans-serif;
    font-size: 15px;
    color: #d4d4d8;
    margin: 0;
}

.contact-item a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ========== INFO.HTML ========== */
#about {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

#about h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

#about > p {
    font-family: 'Maven Pro', sans-serif;
    font-size: 16px;
    color: #d4d4d8;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

#about h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fbbf24;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(251, 191, 36, 0.3);
    padding-bottom: 15px;
}

#about section {
    margin-bottom: 30px;
}

#about section h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 15px;
}

#about section p {
    font-family: 'Maven Pro', sans-serif;
    font-size: 15px;
    color: #d4d4d8;
    line-height: 1.8;
    margin-bottom: 15px;
}

#about section ul {
    list-style: none;
    padding: 0;
}

#about section li {
    font-family: 'Maven Pro', sans-serif;
    font-size: 15px;
    color: #d4d4d8;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

#about section li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-weight: bold;
}

#about section li strong {
    color: #fbbf24;
}

/* Skills/Specialties Grid */
#about .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

#about .skill-item {
    background-color: #1a3a52;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: all 0.3s ease;
}

#about .skill-item:hover {
    border-color: #fbbf24;
    background-color: #2a4a62;
}

#about .skill-item h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 10px;
}

#about .skill-item p {
    font-family: 'Maven Pro', sans-serif;
    font-size: 14px;
    color: #d4d4d8;
    margin: 0;
}

/* Responsive for Service Cards */
@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    #services h1 {
        font-size: 32px;
    }

    #contact h1,
    #about h1 {
        font-size: 32px;
    }

    #about h2 {
        font-size: 24px;
    }

    #about .skills-grid {
        grid-template-columns: 1fr;
    }
}
