.elementor-161 .elementor-element.elementor-element-0acc3e9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-fb50cb1 *//* ===== ARIALIEF LANDING PAGE STYLES ===== */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette from uploaded image */
    --primary-blue: #2B5A87;
    --secondary-green: #4A9B8E;
    --accent-light: #E8F4F8;
    --text-dark: #2C3E50;
    --text-light: #6C7B7F;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
    --gradient-light: linear-gradient(135deg, var(--accent-light) 0%, var(--white) 100%);
    --shadow-light: 0 4px 20px rgba(43, 90, 135, 0.1);
    --shadow-medium: 0 8px 30px rgba(43, 90, 135, 0.15);
    --shadow-heavy: 0 15px 40px rgba(43, 90, 135, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 17px;
}

/* ===== HEADER STYLES ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 50px;
    width: auto;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-btn {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.cta-btn::after {
    display: none;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    flex-direction: column;
    gap: 4px;
    display: flex;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-medium);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    padding: 20px;
}

.mobile-menu li {
    margin-bottom: 15px;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 18px;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--accent-light);
}

/* ===== HERO SECTION ===== */
.hero-section {
    margin-top: 80px;
    padding: 60px 0;
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://usofficialwebsite.shop/wp-content/uploads/2025/06/supplemnt-img.png') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    padding-right: 20px;
}

.headline {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.brand {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subheadline {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.feature .icon {
    font-size: 1.5rem;
}

.feature span:last-child {
    font-weight: 600;
    color: var(--text-dark);
}

.hero-media {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* VSL Styles */
.vsl-container {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.vsl-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.vsl-wrapper {
    position: relative;
}

.vsl-placeholder {
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
}

/* Product Showcase */
.product-showcase {
    text-align: center;
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.product-showcase:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.product-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 20px rgba(43, 90, 135, 0.2));
}

.product-description h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.product-description p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== STORY SECTION ===== */
.story-section {
    padding: 80px 0;
    background: var(--white);
}

.story-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.3;
}

.story-quote {
    background: var(--gradient-light);
    padding: 40px;
    border-radius: var(--border-radius);
    margin-bottom: 50px;
    box-shadow: var(--shadow-light);
}

.story-quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
}

.story-quote blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary-green);
    position: absolute;
    top: -20px;
    left: -20px;
    opacity: 0.3;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--secondary-green);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== INGREDIENTS SECTION ===== */
.ingredients-section {
    padding: 80px 0;
    background: var(--gradient-light);
}

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

.ingredient-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
}

.ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.ingredient-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.ingredient-card h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.ingredient-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== ARIALIEF LANDING PAGE STYLES ===== */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette from uploaded image */
    --primary-blue: #2B5A87;
    --secondary-green: #4A9B8E;
    --accent-light: #E8F4F8;
    --text-dark: #2C3E50;
    --text-light: #6C7B7F;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
    --gradient-light: linear-gradient(135deg, var(--accent-light) 0%, var(--white) 100%);
    --shadow-light: 0 4px 20px rgba(43, 90, 135, 0.1);
    --shadow-medium: 0 8px 30px rgba(43, 90, 135, 0.15);
    --shadow-heavy: 0 15px 40px rgba(43, 90, 135, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 17px;
}

/* ===== HEADER STYLES ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 50px;
    width: auto;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-btn {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.cta-btn::after {
    display: none;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    flex-direction: column;
    gap: 4px;
    display: flex;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-medium);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    padding: 20px;
}

.mobile-menu li {
    margin-bottom: 15px;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 18px;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--accent-light);
}

/* ===== HERO SECTION ===== */
.hero-section {
    margin-top: 80px;
    padding: 60px 0;
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://usofficialwebsite.shop/wp-content/uploads/2025/06/supplemnt-img.png') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    padding-right: 20px;
}

.headline {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.brand {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subheadline {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.feature .icon {
    font-size: 1.5rem;
}

.feature span:last-child {
    font-weight: 600;
    color: var(--text-dark);
}

.hero-media {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* VSL Styles */
.vsl-container {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.vsl-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.vsl-wrapper {
    position: relative;
}

.vsl-placeholder {
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
}

/* Product Showcase */
.product-showcase {
    text-align: center;
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.product-showcase:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.product-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 20px rgba(43, 90, 135, 0.2));
}

.product-description h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.product-description p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== STORY SECTION ===== */
.story-section {
    padding: 80px 0;
    background: var(--white);
}

.story-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.3;
}

.story-quote {
    background: var(--gradient-light);
    padding: 40px;
    border-radius: var(--border-radius);
    margin-bottom: 50px;
    box-shadow: var(--shadow-light);
}

.story-quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
}

.story-quote blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary-green);
    position: absolute;
    top: -20px;
    left: -20px;
    opacity: 0.3;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--secondary-green);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== INGREDIENTS SECTION ===== */
.ingredients-section {
    padding: 80px 0;
    background: var(--gradient-light);
}

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

.ingredient-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
}

.ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.ingredient-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.ingredient-card h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.ingredient-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: 80px 0;
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--gradient-light);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.review-image {
    text-align: center;
}

.review-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-green);
    box-shadow: var(--shadow-light);
}

.review-content h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.review-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.reviewer strong {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.reviewer span {
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
}

/* ===== BONUS SECTION ===== */
.bonus-section {
    padding: 80px 0;
    background: var(--gradient-light);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.bonus-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.bonus-image {
    height: 200px;
    overflow: hidden;
}

.bonus-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--accent-light);
}

.bonus-content {
    padding: 30px;
    flex-grow: 1;
}

.bonus-content h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.bonus-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1rem;
}

.free-price {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.bonus-type {
    color: var(--secondary-green);
    font-style: italic;
    margin-bottom: 15px;
}

.bonus-content p:last-child {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== GUARANTEE SECTION ===== */
.guarantee-section {
    padding: 60px 0;
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
}

.guarantee-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.guarantee-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    color: var(--primary-blue);
    padding: 30px;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: var(--shadow-heavy);
}

.guarantee-days {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.guarantee-text {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.guarantee-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== CHECKOUT SECTION ===== */
.checkout-section {
    padding: 80px 0;
    background: var(--white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.package-card {
    background: var(--gradient-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.package-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--secondary-green);
}

.package-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.package-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px;
    text-align: center;
    position: relative;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.package-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.package-label.best {
    background: var(--secondary-green);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #FF6B35;
    color: var(--white);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(15deg);
}

.package-image {
    padding: 30px;
    text-align: center;
    background: var(--white);
}

.checkout-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.featured-image {
    transform: scale(1.1);
}

.package-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.shipping-notice {
    text-align: center;
    background: var(--gradient-light);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.shipping-notice h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.shipping-notice p {
    color: var(--text-light);
    font-style: italic;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 0;
    background: var(--gradient-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--accent-light);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== REFERENCES SECTION ===== */
.references-section {
    padding: 60px 0;
    background: var(--white);
}

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

.reference-item {
    background: var(--gradient-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.reference-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.reference-item a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    text-decoration: none;
    color: var(--text-dark);
}

.ref-number {
    background: var(--gradient-primary);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.ref-text {
    font-weight: 500;
}

.reference-item:hover .ref-text {
    color: var(--primary-blue);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo img {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--secondary-green);
}

.disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.disclaimer p {
    margin-bottom: 15px;
}

.disclaimer strong {
    color: var(--white);
}/* End custom CSS */