.elementor-1067 .elementor-element.elementor-element-2565ef4{--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;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-e9f8aa4 *//* ========================================
   Bihar Naturals - Makhana Size Guide
   Color Scheme from Logo:
   - Primary Green: #2d7a3a
   - Dark Green: #1a5428
   - Light Green: #4a9c5a
   - Orange/Yellow: #f5a623
   - Gold: #ffc107
   - Cream: #fdf8f0
   ======================================== */

/* CSS Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Brand Colors */
    --primary-green: #2d7a3a;
    --dark-green: #1a5428;
    --light-green: #4a9c5a;
    --accent-orange: #f5a623;
    --accent-gold: #ffc107;
    --cream: #fdf8f0;
    --cream-dark: #f5efe3;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-medium);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.btn-primary:hover {
    background: var(--dark-green);
    border-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-green);
    border-color: var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--primary-green);
    background: var(--cream);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-green);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    color: var(--primary-green);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.section-title {
    margin-bottom: 16px;
    color: var(--gray-900);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
}

.animate-slide-up-delay {
    animation: slideUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease 0.4s forwards;
    opacity: 0;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--cream-dark) 100%);
    overflow: hidden;
    padding: 80px 0;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(45, 122, 58, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 166, 35, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-green);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--gray-900);
}

.hero-title .highlight {
    display: block;
    color: var(--primary-green);
    font-size: 0.85em;
    margin-top: 8px;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.hero-image-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.hero-image-badge .badge-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-image-badge .badge-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-size: 0.875rem;
    font-weight: 500;
    animation: float 4s ease-in-out infinite;
}

.floating-card .floating-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: var(--radius-sm);
    color: var(--primary-green);
}

.floating-card.card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: 2s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gray-400);
    font-size: 0.875rem;
    animation: bounce 2s ease-in-out infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--gray-300);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
}

/* ========================================
   Suta Intro Section
   ======================================== */
.suta-intro {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.suta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.suta-text .lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 30px;
}

.suta-text strong {
    color: var(--primary-green);
}

.suta-formula {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    padding: 30px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-green);
}

.formula-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.formula-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
}

.formula-equals {
    font-size: 1.5rem;
    color: var(--gray-400);
}

.formula-result {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.formula-note {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-style: italic;
}

/* Size Comparison Visual */
.suta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.size-comparison {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 30px;
    padding: 40px;
}

.size-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
    position: relative;
    transition: transform var(--transition-medium);
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.size-circle:hover {
    transform: scale(1.1);
}

.size-circle::after {
    content: attr(data-size);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
}

.size-circle.size-3 {
    width: 60px;
    height: 60px;
}

.size-circle.size-4 {
    width: 80px;
    height: 80px;
}

.size-circle.size-5 {
    width: 100px;
    height: 100px;
}

.size-circle.size-6 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
}

/* ========================================
   Size Guide Section
   ======================================== */
.size-guide {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

/* Grade Cards */
.grade-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
}

.grade-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.grade-card.featured-card {
    border: 2px solid var(--accent-orange);
}

.grade-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 30px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    border-bottom: 1px solid var(--gray-100);
}

.grade-badge {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}

.grade-badge.grade-3 {
    background: linear-gradient(135deg, #6b8e6b 0%, #4a6b4a 100%);
}

.grade-badge.grade-4 {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
}

.grade-badge.grade-5 {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
}

.grade-badge.grade-6 {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
}

.grade-size {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 500;
}

.popular-badge,
.premium-badge,
.jumbo-badge {
    margin-left: auto;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popular-badge {
    background: var(--accent-gold);
    color: var(--gray-800);
}

.premium-badge {
    background: var(--primary-green);
    color: var(--white);
}

.jumbo-badge {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
    color: var(--gray-800);
}

.grade-card-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
}

.grade-card-content.reverse {
    grid-template-columns: 1fr 350px;
}

.grade-card-content.reverse .grade-image {
    order: 2;
}

.grade-image {
    position: relative;
    overflow: hidden;
}

.grade-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
    transition: transform var(--transition-slow);
}

.grade-card:hover .grade-image img {
    transform: scale(1.05);
}

.grade-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-green);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
}

.grade-label.jumbo {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
    color: var(--gray-800);
}

.grade-details {
    padding: 30px;
}

.grade-title {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.grade-tagline {
    font-size: 1.1rem;
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 16px;
}

.grade-description {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.grade-features h4,
.grade-buyers h4 {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.grade-features ul {
    list-style: none;
    margin-bottom: 24px;
}

.grade-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.grade-features li svg {
    flex-shrink: 0;
    color: var(--primary-green);
    margin-top: 2px;
}

.buyer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.buyer-tag {
    padding: 8px 16px;
    background: var(--cream);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--gray-700);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.buyer-tag:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* ========================================
   Comparison Table Section
   ======================================== */
.comparison-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.comparison-table th,
.comparison-table td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
}

.comparison-table th {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.comparison-table th:first-child {
    border-radius: var(--radius-lg) 0 0 0;
}

.comparison-table th:last-child {
    border-radius: 0 var(--radius-lg) 0 0;
}

.comparison-table td {
    color: var(--gray-700);
    font-size: 0.95rem;
}

.comparison-table tbody tr {
    transition: background var(--transition-fast);
}

.comparison-table tbody tr:hover {
    background: var(--cream);
}

.comparison-table .highlight-row {
    background: var(--cream);
}

.table-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--white);
}

/* ========================================
   Why Suta Matters Section
   ======================================== */
.why-suta-matters {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.reason-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    border: 1px solid var(--gray-100);
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green);
}

.reason-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--primary-green);
    transition: all var(--transition-medium);
}

.reason-card:hover .reason-icon {
    background: var(--primary-green);
    color: var(--white);
}

.reason-card h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.reason-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========================================
   Why Choose Us Section
   ======================================== */
.why-choose-us {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-choose-text .section-badge {
    margin-bottom: 16px;
}

.why-choose-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.why-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.8;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--cream);
    border-radius: var(--radius-md);
    transition: all var(--transition-medium);
}

.feature-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green);
    color: var(--white);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.feature-content h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--gray-900);
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.why-choose-image {
    position: relative;
}

.why-choose-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.trust-badges {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
}

.trust-badge {
    background: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.trust-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.trust-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.cta-feature svg {
    color: var(--accent-gold);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-400);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-contact p {
    margin-bottom: 16px;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: 40px;
    }
    
    .hero-image-wrapper {
        width: 350px;
        height: 350px;
    }
    
    .floating-card.card-1 {
        right: 0;
    }
    
    .floating-card.card-2 {
        left: 0;
    }
    
    .suta-content {
        grid-template-columns: 1fr;
    }
    
    .suta-visual {
        margin-top: 40px;
    }
    
    .grade-card-content,
    .grade-card-content.reverse {
        grid-template-columns: 1fr;
    }
    
    .grade-card-content.reverse .grade-image {
        order: 0;
    }
    
    .grade-image img {
        min-height: 250px;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .why-choose-text .section-title {
        text-align: center;
    }
    
    .why-choose-text {
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-image-wrapper {
        width: 280px;
        height: 280px;
    }
    
    .floating-card {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .formula-box {
        flex-direction: column;
        gap: 8px;
    }
    
    .size-comparison {
        gap: 15px;
        padding: 20px;
    }
    
    .size-circle.size-3 { width: 45px; height: 45px; font-size: 0.7rem; }
    .size-circle.size-4 { width: 60px; height: 60px; font-size: 0.75rem; }
    .size-circle.size-5 { width: 75px; height: 75px; font-size: 0.8rem; }
    .size-circle.size-6 { width: 90px; height: 90px; font-size: 0.85rem; }
    
    .size-circle::after {
        font-size: 0.65rem;
        bottom: -25px;
    }
    
    .grade-card-header {
        flex-wrap: wrap;
    }
    
    .popular-badge,
    .premium-badge,
    .jumbo-badge {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 16px;
        font-size: 0.875rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 10px;
    }
    
    .trust-badge {
        padding: 15px 20px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-image-wrapper {
        width: 100%;
        max-width: 280px;
        height: auto;
        aspect-ratio: 1;
    }
    
    .buyer-tags {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .hero-visual,
    .scroll-indicator,
    .floating-card,
    .cta-section,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: #000;
    }
    
    .container {
        max-width: 100%;
    }
}/* End custom CSS */