@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Barlow:wght@300;400;500;600&display=swap');

:root {
    --black: #0e0e0e;
    --charcoal: #1c1c1e;
    --dark: #2a2a2e;
    --mid: #3d3d42;
    --muted: #7c7c86;
    --border: #e2e2e6;
    --light: #f4f4f6;
    --white: #ffffff;

    --accent: #e8590c;
    --accent-dark: #c94a08;
    --accent-light: #ff7a38;
    --accent-bg: #fff3ee;

    --success: #1a9e5c;
    --success-bg: #edfaf3;

    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 14px;
    --radius-xl: 20px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);

    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --transition: all 0.2s ease;
}

/* ── RESET & BASE ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); text-transform: uppercase; }
h2 { font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; }
h3 { font-size: 1.5rem; }

/* ── BUTTONS ──────────────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 13px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(232,89,12,0.30);
}

.btn-secondary {
    background-color: transparent;
    color: var(--charcoal);
    border-color: var(--border);
}

.btn-secondary:hover {
    border-color: var(--charcoal);
    background-color: var(--light);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* ── NAVBAR ───────────────────────────────────────────────────────────── */
.navbar {
    background-color: var(--black);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--accent);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.logo span { color: var(--accent); }

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-links a:hover { color: var(--white); }

.nav-links .btn-primary {
    color: var(--white);
    padding: 10px 22px;
    font-size: 0.85rem;
}

/* ── HERO ─────────────────────────────────────────────────────────────── */
.hero {
    background-color: var(--black);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Decorative bar */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px;
    height: 100%;
    background-color: var(--accent);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 72px;
}

.hero-content { flex: 1; }

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(232,89,12,0.12);
    border: 1px solid rgba(232,89,12,0.3);
    padding: 5px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: normal;
    color: var(--accent);
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 36px;
    max-width: 480px;
    font-weight: 300;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    display: block;
    filter: brightness(0.9) contrast(1.05);
}

/* Accent frame */
.hero-image::after {
    content: '';
    position: absolute;
    top: 16px; right: -16px;
    width: 100%; height: 100%;
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* ── ABOUT ────────────────────────────────────────────────────────────── */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

.about h2 { text-align: center; margin-bottom: 60px; }

.about-content {
    display: flex;
    gap: 72px;
    align-items: center;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    display: block;
}

.about-image::before {
    content: '';
    position: absolute;
    bottom: -16px; left: -16px;
    width: 100%; height: 100%;
    background-color: var(--light);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-text { flex: 1; }

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.about-text p {
    color: var(--muted);
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.75;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.credentials span {
    background-color: var(--light);
    border: 1px solid var(--border);
    padding: 10px 18px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
}

.credentials i { color: var(--accent); }

/* ── HOW IT WORKS ─────────────────────────────────────────────────────── */
.how-it-works {
    padding: 100px 0;
    background-color: var(--light);
}

.how-it-works h2 { text-align: center; margin-bottom: 60px; }

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background-color: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.step {
    padding: 48px 36px;
    background-color: var(--white);
    position: relative;
}

.step:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.step:last-child  { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }

.step-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    color: var(--light);
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.step p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Accent line on hover */
.step::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.step:hover::after { width: 100%; }

/* ── CTA SECTION ──────────────────────────────────────────────────────── */
.cta {
    padding: 100px 0;
    background-color: var(--charcoal);
    color: var(--white);
    text-align: center;
}

.cta h2 { color: var(--white); }

.cta p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 36px;
    font-weight: 300;
}

/* ── FOOTER ───────────────────────────────────────────────────────────── */
footer {
    background-color: var(--black);
    color: rgba(255,255,255,0.45);
    padding: 40px 0;
    text-align: center;
    font-size: 0.875rem;
    border-top: 3px solid var(--accent);
}

footer .container { display: flex; flex-direction: column; gap: 8px; }

/* ── FORM LAYOUT ──────────────────────────────────────────────────────── */
.form-header {
    text-align: center;
    padding: 60px 0 40px;
}

.form-header h1 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    margin-bottom: 10px;
}

.subtitle {
    color: var(--muted);
    margin-bottom: 40px;
    font-size: 1rem;
}

/* Progress bar */
.progress-bar {
    display: flex;
    justify-content: center;
    gap: 4px;
    max-width: 800px;
    margin: 0 auto;
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 6px;
}

.progress-step {
    flex: 1;
    padding: 10px 8px;
    text-align: center;
    background-color: transparent;
    color: var(--muted);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: var(--transition);
}

.progress-step.active {
    background-color: var(--accent);
    color: var(--white);
}

/* Form card */
.form-step {
    display: none;
    background-color: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    max-width: 820px;
    margin: 0 auto 48px;
}

.form-step.active { display: block; }

.form-step h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.form-step h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
    margin-top: 10px;
    border-radius: 2px;
}

/* Form fields */
.form-group { margin-bottom: 28px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--charcoal);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--charcoal);
    background-color: var(--white);
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232,89,12,0.12);
}

.form-note {
    color: var(--muted);
    margin-bottom: 28px;
    font-size: 0.9rem;
    line-height: 1.7;
    padding: 16px 20px;
    background: var(--light);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* Radio buttons */
.radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 500;
}

.radio-label:hover {
    border-color: var(--accent);
    background-color: var(--accent-bg);
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.radio-label input[type="radio"]:checked + span,
.radio-label:has(input:checked) {
    color: var(--accent);
    font-weight: 600;
}

/* Button group */
.button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 16px;
}

/* ── EXERCISE SELECTION ───────────────────────────────────────────────── */
.exercise-search { margin-bottom: 24px; }

.exercise-search input {
    width: 100%;
    padding: 13px 18px 13px 48px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: var(--font-body);
    background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%237c7c86' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") 16px center no-repeat;
    transition: var(--transition);
}

.exercise-search input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232,89,12,0.12);
}

.selected-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 14px 20px;
    background: var(--charcoal);
    border-radius: var(--radius);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

.selected-count {
    background: var(--accent);
    color: var(--white);
    padding: 3px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-display);
}

/* Muscle group accordion */
.muscle-group {
    margin-bottom: 12px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.muscle-group:hover { border-color: var(--accent); }

.muscle-group-header {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 16px 22px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    user-select: none;
}

.muscle-group-header:hover { background-color: var(--dark); }
.muscle-group.active .muscle-group-header { background-color: var(--black); border-bottom: 2px solid var(--accent); }

.muscle-group-header h3 {
    margin: 0;
    font-size: 1rem;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
}

.selection-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--white);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
}

.muscle-group-icon { transition: transform 0.3s ease; color: rgba(255,255,255,0.5); }
.muscle-group.active .muscle-group-icon { transform: rotate(180deg); color: var(--accent); }

.muscle-group-content {
    padding: 0;
    background-color: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}

.muscle-group.active .muscle-group-content {
    max-height: 600px;
    overflow-y: auto;
    padding: 20px;
}

.min-selection-warning {
    display: none;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    padding: 10px 14px;
    background: var(--accent-bg);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent);
}

.min-selection-warning.show { display: block; }

/* Exercise grid — image-ready cards */
.exercise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.exercise-item {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.exercise-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

/* Image placeholder area */
.exercise-img {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: var(--light);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.exercise-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.exercise-item:hover .exercise-img img { transform: scale(1.04); }

/* Placeholder SVG for exercises without an image */
.exercise-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light) 0%, #e8e8ec 100%);
    color: var(--muted);
}

.exercise-img-placeholder svg {
    width: 40px;
    height: 40px;
    opacity: 0.4;
}

/* Checkbox + label row */
.exercise-item-body {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 12px 12px;
}

.exercise-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--accent);
    cursor: pointer;
}

.exercise-item label {
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.35;
    color: var(--charcoal);
    margin: 0;
}

/* Checked state */
.exercise-item:has(input:checked) {
    border-color: var(--accent);
    background-color: var(--accent-bg);
}

.exercise-item:has(input:checked) label { color: var(--accent-dark); font-weight: 600; }

/* Checked badge overlay */
.exercise-item:has(input:checked) .exercise-img::after {
    content: '✓';
    position: absolute;
    top: 6px; right: 6px;
    width: 22px; height: 22px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Scrollbar */
.muscle-group-content::-webkit-scrollbar { width: 5px; }
.muscle-group-content::-webkit-scrollbar-track { background: var(--light); }
.muscle-group-content::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
.muscle-group-content { scrollbar-width: thin; scrollbar-color: var(--accent) var(--light); }

/* ── PLAN SUMMARY ─────────────────────────────────────────────────────── */
.plan-summary {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    margin-bottom: 28px;
}

.plan-summary h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    color: var(--white);
}

.plan-summary p { color: rgba(255,255,255,0.65); margin-bottom: 16px; }

.plan-summary ul {
    padding-left: 20px;
    margin-bottom: 8px;
}

.plan-summary li {
    margin-bottom: 8px;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}

.price {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    text-align: center;
    margin-top: 24px;
    letter-spacing: -0.01em;
}

/* ── PAYMENT ──────────────────────────────────────────────────────────── */
.payment-section { margin-top: 28px; }
#payment-element { margin: 24px 0; }

.hidden { display: none !important; }

.success-icon {
    text-align: center;
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 20px;
}

#success-message {
    text-align: center;
    padding: 48px 32px;
    background-color: var(--success-bg);
    border-radius: var(--radius-lg);
    border: 1.5px solid #a7f3d0;
}

#success-message h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

/* ── RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 960px) {
    .hero .container { flex-direction: column; gap: 48px; }
    .hero-image::after { display: none; }
    .about-content { flex-direction: column; gap: 40px; }
    .about-image::before { display: none; }
    .steps { grid-template-columns: 1fr; border-radius: var(--radius-lg); }
    .step:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
    .step:last-child  { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
}

@media (max-width: 768px) {
    .form-step { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .progress-bar { flex-direction: column; gap: 6px; }
    .progress-step { font-size: 0.75rem; }
    .navbar .container { flex-direction: column; gap: 16px; }
    .nav-links { gap: 20px; flex-wrap: wrap; justify-content: center; }
    .radio-group { grid-template-columns: 1fr 1fr; }
    .exercise-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
    .button-group { flex-direction: column-reverse; }
    .button-group .btn { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
    .exercise-grid { grid-template-columns: 1fr 1fr; }
    .radio-group { grid-template-columns: 1fr; }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 140px; /* Adjust based on your logo size */
    width: auto;
}

.logo-text {
    font-size: 24px; /* Adjust as needed */
    color: #666; /* Adjust color as needed */
}
/* ── VALUE PROPOSITION ────────────────────────────────────────────────── */
.value-proposition {
    padding: 100px 0;
    background-color: var(--white);
}

.value-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.value-header p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-top: 12px;
}

.about-card {
    background-color: var(--charcoal);
    border-radius: var(--radius-lg);
    padding: 48px;
    max-width: 640px;
    margin: 0 auto;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--white);
    margin-bottom: 28px;
}

/* ── Benefits list ── */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefit-marker {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232,89,12,0.20);
}

/* ── Price block ── */
.price-highlight {
    border-top: 1.5px solid rgba(255,255,255,0.10);
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.02em;
}

.price-sub {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-per-month {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
}

.price-per-month strong {
    color: var(--white);
    font-weight: 600;
}

.price-per-day {
    font-size: 0.875rem;
    color: var(--muted);
}

.price-context {
    margin-top: 6px;
    font-size: 0.825rem;
    color: var(--muted);
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .about-card { padding: 32px 24px; }
    .price-amount { font-size: 2.6rem; }
}

/* ── VALUE PROPOSITION LAYOUT WITH ARTISTIC GRID ───────────────────────── */
.value-proposition-layout {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    flex: 1;
    min-width: 0;
}

/* Artistic Photo Grid - Bigger boxes */
.photo-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    position: relative;
    max-width: 500px; /* Controls overall grid width */
}

/* Custom sizing per grid item */
.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    background-color: var(--light);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

/* Make all boxes larger by adjusting aspect ratios */
.grid-item-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    aspect-ratio: 2/3; /* Taller box */
    min-width: 180px;
    min-height: 270px;
}

.grid-item-2 {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
    aspect-ratio: 16/11; /* Slightly taller than standard 16:9 */
    min-width: 280px;
    min-height: 192px;
}

.grid-item-3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    aspect-ratio: 4/5; /* Slightly taller square */
    min-width: 130px;
    min-height: 162px;
}

.grid-item-4 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    aspect-ratio: 4/5; /* Slightly taller square */
    min-width: 130px;
    min-height: 162px;
}

/* Adjust the overall grid width */
.photo-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    position: relative;
    max-width: 550px; /* Increased from 500px */
    min-width: 320px; /* Minimum width guarantee */
}

/* Overlay styles */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(232, 89, 12, 0.85) 0%, 
        rgba(201, 74, 8, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(2px);
}

.overlay-text {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    text-align: center;
    padding: 12px;
}

/* Hover effects */
.grid-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.grid-item:hover img {
    transform: scale(1.08);
}

.grid-item:hover .overlay {
    opacity: 1;
}

.grid-item:hover .overlay-text {
    transform: translateY(0);
}

/* Decorative elements - offset shadows and borders */
.grid-item-1 {
    box-shadow: -8px 8px 0 rgba(232, 89, 12, 0.15);
}

.grid-item-2 {
    box-shadow: 0 8px 0 rgba(232, 89, 12, 0.1);
}

.grid-item-3 {
    box-shadow: 4px -4px 0 rgba(232, 89, 12, 0.12);
}

.grid-item-4 {
    box-shadow: -4px 4px 0 rgba(232, 89, 12, 0.12);
}

/* Optional: Add subtle borders */
.grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.grid-item:hover::before {
    border-color: var(--accent);
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
}

/* Optional: Add a polaroid-style tilt to some images */
.grid-item-1 {
    transform: rotate(-2deg);
}

.grid-item-3 {
    transform: rotate(2deg);
}

.grid-item-4 {
    transform: rotate(-1deg);
}

.grid-item:hover {
    transform: translateY(-6px) rotate(0deg);
}

/* Responsive design */
@media (max-width: 1024px) {
    .value-proposition-layout {
        gap: 32px;
    }
    
    .overlay-text {
        font-size: 1rem;
        letter-spacing: 0.08em;
    }
}

@media (max-width: 900px) {
    .value-proposition-layout {
        flex-direction: column;
        gap: 48px;
    }
    
    .photo-grid {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .grid-item-1 {
        transform: rotate(0deg);
    }
    
    .grid-item-3,
    .grid-item-4 {
        transform: rotate(0deg);
    }
}

@media (max-width: 640px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .grid-item-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        aspect-ratio: 1/1;
    }
    
    .grid-item-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        aspect-ratio: 1/1;
    }
    
    .grid-item-3 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        aspect-ratio: 1/1;
    }
    
    .grid-item-4 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        aspect-ratio: 1/1;
    }
    
    .overlay-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .photo-grid {
        gap: 10px;
    }
    
    .overlay-text {
        font-size: 0.8rem;
    }
}
.cta-highlight {
    position: relative;
    font-weight: 600;
}

.arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-highlight:hover .arrow {
    transform: translateX(6px);
}
