/* =========================================
   1. Design System & Variables
   ========================================= */
:root {
    --bg-main: #f6f8fe;
    --bg-card: #ffffff;
    --ink-primary: #111632;
    --ink-secondary: #5a6282;
    --brand-main: #0D63F3;
    --brand-main-dark: #0a4ac7;
    --brand-light: #e7effd;
    --border-color: #d8e2fb;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 4px rgba(13, 99, 243, 0.08);
    --shadow-md: 0 4px 12px rgba(13, 99, 243, 0.1);
    --shadow-lg: 0 10px 25px rgba(13, 99, 243, 0.15);
}

/* =========================================
   2. Base Typography & Resets
   ========================================= */
* { box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--ink-primary);
    margin: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 { margin: 0 0 16px; line-height: 1.25; font-weight: 500; }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); color: var(--ink-primary); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); color: var(--ink-primary); }
h3 { font-size: 1.45rem; font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 700; }
h5 { font-size: 1.10rem; font-weight: 700; }
h6 { font-size: 1.00rem; font-weight: 700; }

p { margin: 0 0 16px; color: var(--ink-secondary); font-size: 1.1rem; }
a { text-decoration: none; color: var(--brand-main); transition: color 0.2s ease; }
a:hover { color: var(--brand-main-dark); }

/* Utility Classes */
.orange-text { color: #f57c00; }
.width-100 { width: 100%; height: auto; }

/* =========================================
   3. Layout Containers
   ========================================= */
.content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 50px 0;
    position: relative;
}

.section-alt {
    background-color: var(--bg-card);
}

.section-header { text-align: center; max-width: 800px; margin: 0 auto 48px; }
.section-header p { margin-left: auto; margin-right: auto; }

/* =========================================
   4. Components (Buttons & Cards)
   ========================================= */
/* Buttons */
.custom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    padding: 14px 26px;
    border-radius: 99px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-size: 1rem;
    line-height: 16px;
}

.custom-btn-primary {
    background-color: var(--brand-main);
    color: white;
}
.custom-btn-primary:hover {
    background-color: var(--brand-main-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.custom-btn-secondary {
    background-color: var(--bg-card);
    color: var(--ink-primary);
    border-color: var(--border-color);
}
.custom-btn-secondary:hover {
    transform: translateY(-2px);
    border-color: var(--brand-light);
}

/* Cards */
.custom-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 36px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.custom-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

/* Icons */
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
}


/* =========================================
   4b. anti-rote
   ========================================= */
.anti-rote-strip {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

.anti-rote-inner {
    text-align: center;
    padding: 22px 32px 28px;
}

.anti-rote-quote {
    margin: 0 0 14px;
    color: var(--brand-main);
    font-size: 0.98rem;
    line-height: 1.55;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.anti-rote-author {
    font-weight: 700;
    white-space: nowrap;
}

.anti-rote-title {
    margin: 0 0 10px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #f57c00; /* matches your orange utility */
    font-size: clamp(2.0rem, 4.2vw, 3.2rem);
    line-height: 1.12;
}

.anti-rote-subtitle {
    margin: 0;
    color: #f57c00; /* matches your orange utility */
    font-size: clamp(1.25rem, 2.6vw, 2.0rem);
    font-weight: 500;
    line-height: 1.22;
}


/* =========================================
   5. Hero Section
   ========================================= */
.hero { text-align: center; padding-top: 60px;
		padding-bottom: 60px; }
.hero h1 { max-width: 1000px; margin-left: auto; margin-right: auto; margin-bottom: 48px; }

.hero-split-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
}

.hero-column { flex: 1; max-width: 450px; }
.hero-column h4 { margin-bottom: 16px; color: var(--ink-primary); }
.hero-column h4 span { color: var(--brand-main); }
.hero-column p { max-width: 45ch; margin: 0 auto 32px auto; font-size: 1rem; }

.hero-column .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.hero-divider {
    width: 2px;
    background-color: var(--brand-light);
    align-self: stretch;
    border-radius: 3px;
}

/* =========================================
   6. Benefits Grid
   ========================================= */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 36px;
}

.benefit-card { text-align: center; }
.benefit-card .icon-wrapper {
    display: inline-flex;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    background-color: var(--brand-light);
}
.benefit-card .material-icons { font-size: 40px; color: var(--brand-main-dark); }
.benefit-card h3 { font-size: 1.6rem; margin-bottom: 12px; }
.benefit-card p { margin-left: auto; margin-right: auto; }

.benefit-card .image-wrapper {
    margin-top: 24px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.benefit-card .image-wrapper img { display: block; width: 100%; }

/* =========================================
   7. Timeline / How it Works
   ========================================= */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 56px;
    position: relative;
    padding-left: 28px;
    max-width: 900px;
    margin: 0 auto;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 4px;
    background-color: var(--border-color);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 36px;
    position: relative;
}
.timeline-item-content { flex-grow: 1; }

.timeline-item-image-wrapper {
    flex-shrink: 0;
    width: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.timeline-item-image-wrapper img { display: block; width: 100%; }

.timeline-number {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 1.8rem;
    background-color: var(--brand-main);
    color: white;
    position: relative;
    left: -46px;
    border: 6px solid var(--bg-main);
}
.timeline-content { padding-top: 6px; }
.timeline-content h4 { font-size: 1.7rem; margin-bottom: 10px; font-weight: 700; }

/* =========================================
   8. Features Grid
   ========================================= */
.features-grid-wrapper {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 16px 56px 56px 56px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-item-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.feature-item .icon-box {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    background-color: var(--brand-light);
}
.feature-item .material-icons { font-size: 30px; color: var(--brand-main-dark); }

.feature-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0;
    font-weight: 700;
    padding-top: 4px;
}

.feature-item p {
    font-size: 1.05rem;
    margin-top: 16px;
    margin-bottom: 0;
}

.feature-item .image-wrapper {
    margin-top: 24px;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.feature-item .image-wrapper.no-border { border: none; }
.feature-item .image-wrapper img { display: block; width: 100%; }

/* =========================================
   9. Why Xcelvations (Three-Column Layout)
   ========================================= */
.why-xcelvations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.why-xcelvations-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.why-xcelvations-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink-primary);
    margin-bottom: 28px;
}

.why-xcelvations-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-xcelvations-card li {
    padding-left: 36px;
    position: relative;
}

.why-xcelvations-card li::before {
    content: '\e86c'; /* Material Icons 'check_circle' */
    font-family: 'Material Icons';
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 24px;
    color: var(--brand-main);
}

.why-xcelvations-card li strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink-primary);
    margin-bottom: 6px;
    line-height: 1.3;
}
.why-xcelvations-card li p {
    margin: 0;
    color: var(--ink-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* =========================================
   10. Pricing Section
   ========================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 36px;
    justify-content: center;
}

.pricing_item {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.plan_price {
    font-size: 2rem;
    font-weight: 500;
    color: var(--brand-main);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.plan_details {
    color: var(--ink-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 12px;
    background-color: var(--bg-main);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
}

/* Heading Gradients used near pricing/buttons */
.trial-heading, .price-link-heading {
    font-size: clamp(14px, 2.2vw, 18px);
    font-weight: 500;
    line-height: 1.15;
    text-align: center;
    letter-spacing: -0.01em;
    background: linear-gradient(90deg, #0b5cff, #00b7ff, #0b5cff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 6px 14px rgba(11, 92, 255, 0.14);
}

.trial-heading::after, .price-link-heading::after {
    content: "";
    display: block;
    width: min(180px, 55%);
    height: 3px;
    margin: 10px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(11,92,255,.12), rgba(0,183,255,.50), rgba(11,92,255,.12));
}

/* =========================================
   11. Final CTA
   ========================================= */
.final-cta {
    background: linear-gradient(135deg, #0D63F3 0%, #0a4ac7 100%);
    border-radius: var(--radius-lg);
    padding: 72px;
    color: white;
    text-align: center;
}
.final-cta h2 { color: white; margin-bottom: 28px; }
.final-cta p { color: rgba(255, 255, 255, 0.9); max-width: 750px; margin: 0 auto 48px; font-size: 1.2rem; }
.final-cta .custom-btn { background: white; color: var(--brand-main); }
.final-cta .custom-btn:hover { background-color: #f6f8fe; transform: translateY(-4px); }

/* =========================================
   12. Responsive Adjustments
   ========================================= */
@media (max-width: 1024px) {
    .why-xcelvations-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }

    .hero { padding-top: 80px; padding-bottom: 80px; }
    .hero-split-content { flex-direction: column; align-items: center; gap: 40px; }
    .hero-divider { display: none; }

    .benefits-grid,
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .timeline::before { left: 16px; }
    .timeline-number { left: -30px; width: 56px; height: 56px; font-size: 1.6rem; border-width: 4px; }
    .timeline-item { flex-direction: column; align-items: stretch; text-align: center; }
    .timeline-item .timeline-number { margin: 0 auto 24px; left: auto; }
    .timeline-item-image-wrapper { width: 100%; }

    .features-grid-wrapper { padding: 40px; }
    .custom-card { padding: 28px; }
}

@media (max-width: 480px) {
    .content-wrapper { padding: 0 20px; }
    .plan_price { font-size: 1.75rem; }
    .custom-btn { padding: 12px 24px; font-size: 1rem; }
    .hero-column .cta-buttons { flex-direction: column; }
}





/* Responsive tightening */
@media (max-width: 768px) {
    .anti-rote-inner { padding: 18px 20px 22px; }
    .anti-rote-quote { font-size: 0.95rem; }
}


.ready-unlock-illustration{
  width: min(520px, 100%);
  height: auto;
  max-height: 420px;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}


.so-title-min{
  margin: 18px 0 10px;
  font-weight: 600;
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
  color: #102a43;
  letter-spacing: -0.02em;
}

.so-accent-min{
  color: #ff9800;
  position: relative;
}

.so-accent-min::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,152,0,0.22);
}
