* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@property --hue {
    syntax: "<number>";
    inherits: false;
    initial-value: 245;
}

:root {
    --hue: 245;
    /* animation: hue-rotate 120s infinite ease; */
}

@keyframes hue-rotate {
    0% {
        --hue: 245;
    }

    100% {
        --hue: 525;
    }
}

:root {
    --blueprint-bg: oklch(99% 0.02 var(--hue));
    --blueprint-grid: oklch(94% 0.04 var(--hue));
    --blueprint-text: oklch(30% 0.05 var(--hue));
    --blueprint-text-light: oklch(99% 0.05 var(--hue));
    --blueprint-accent: oklch(50% 0.15 var(--hue));
    --blueprint-accent-alt: oklch(95% 0.05 var(--hue));
    --blueprint-highlight: oklch(70% 0.2 var(--hue));
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--blueprint-bg);
    color: var(--blueprint-text);
    min-height: 100vh;
    overflow-x: hidden;
}

section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    aspect-ratio: attr(width) / attr(height);
  }
  
  /* Container query support for more responsive layouts */
  @supports (container-type: inline-size) {
    .container {
      container-type: inline-size;
    }
  }

.section--contentHeight {
    min-height: 100%;
    padding: 5rem 0;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Bitter", serif;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.technical-label {
    font-family: 'Bitter', monospace;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--blueprint-accent);
    color: var(--blueprint-text-light);
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-family: 'Bitter', monospace;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.1s ease;
}

.cta-button:hover {
    background: var(--blueprint-highlight);
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: var(--blueprint-text);
    border: 1px solid var(--blueprint-accent);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-family: 'Bitter', monospace;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.1s ease;
}

.secondary-button:hover {
    border-color: var(--blueprint-highlight);
    background: var(--blueprint-highlight);
    color: var(--blueprint-text-light);
}

.text-button {
    display: inline-block;
    background: transparent;
    color: var(--blueprint-text);
    border: none;
    padding: 0.5rem 0;
    font-family: 'Bitter', monospace;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.1s ease;
    position: relative;
}

.text-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--blueprint-highlight);
    transition: width 0.3s ease;
}

.text-button:hover {
    color: var(--blueprint-highlight);
}

.text-button:hover::after {
    width: 100%;
}

/* Corner Accents */
.corner-accent {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--blueprint-accent);
}

.top-left {
    top: 10px;
    left: 10px;
    border-top: 2px solid;
    border-left: 2px solid;
}

.top-right {
    top: 10px;
    right: 10px;
    border-top: 2px solid;
    border-right: 2px solid;
}

.bottom-left {
    bottom: 10px;
    left: 10px;
    border-bottom: 2px solid;
    border-left: 2px solid;
}

.bottom-right {
    bottom: 10px;
    right: 10px;
    border-bottom: 2px solid;
    border-right: 2px solid;
}

/* Gallery Modals */
#gallery-modal {
    display: none;
    /* Will change to flex when modal is open */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);

    /* Adding flex properties for vertical centering */
    align-items: center;
    justify-content: center;
}

#modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

#modal-image {
    display: block;
    position: relative;
    max-width: 80%;
    max-height: 80%;
    pointer-events: none;
    /* Removed margin: 5% auto; since flexbox will handle centering */
}

/* Section Styles */
section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: -2.5rem auto 5rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    min-height: calc(80vh);
    display: flex;
    align-items: center;
    padding: 2rem 0;
    background-image:
        linear-gradient(var(--blueprint-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--blueprint-grid) 1px, transparent 1px);
    background-size: 20px 20px;
}

.subpage {
    min-height: 100%;
}

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

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Benefits Section */

.benefits-section {
    background-color: var(--blueprint-accent);
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--blueprint-bg);
    border: 1px solid var(--blueprint-accent);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    transition: transform 0.2s ease;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

/* Shore Send Section Styles */
.shore-send-section {
    background-color: var(--blueprint-bg);
    position: relative;
    padding: 5rem 0;
}

.shore-send-section .section-title {
    margin-bottom: 1rem;
}

.shore-send-section .section-subtitle {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
}

/* Shore Send container layout - vertical layout */
.shore-send-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
}

/* Large image container at top */
.shore-send-image-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
}

.shore-send-image {
    display: none;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--blueprint-accent);
    position: relative;
    padding: 10px;
}

.shore-send-image.active {
    display: block;
}

.shore-send-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Grid layout for steps */
.shore-send-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.shore-send-step {
    display: flex;
    padding: 1.5rem;
    border: 1px solid var(--blueprint-accent);
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: var(--blueprint-bg);
    opacity: 0.7;
    cursor: pointer;
    position: relative;
}

.shore-send-step:hover {
    opacity: 0.85;
}

.shore-send-step.active {
    border-color: var(--blueprint-highlight);
    opacity: 1;
}

.shore-send-step .step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--blueprint-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bitter', serif;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 1.5rem;
    position: relative;
    z-index: 2;
    color: var(--blueprint-bg);
    transition: background-color 0.3s ease;
}

.shore-send-step.active .step-number {
    background-color: var(--blueprint-highlight);
}

.shore-send-step .step-content {
    padding-top: 0.5rem;
    flex-grow: 1;
}

.shore-send-step .step-content h3 {
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.shore-send-step.active .step-content h3 {
    color: var(--blueprint-highlight);
}

.shore-send-step.active .corner-accent {
    border-color: var(--blueprint-highlight);
}

.shore-send-image .corner-accent {
    border-color: var(--blueprint-accent);
}

.shore-send-image.active .corner-accent {
    border-color: var(--blueprint-highlight);
}

.process-cta {
    text-align: center;
    margin-top: 3rem;
}

.timeline-milestone {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border: 1px solid var(--blueprint-text-light);
    position: relative;
}

.timeline-milestone p {
    margin-bottom: 0;
}

.timeline-tag {
    display: inline-block;
    background-color: var(--blueprint-accent);
    color: var(--blueprint-bg);
    font-family: 'Bitter', serif;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

@media (max-width: 767px) {
    .timeline-milestone {
        padding: 1rem;
    }
}

/* Responsive styles */
@media (max-width: 991px) {
    .shore-send-steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .shore-send-section .section-subtitle {
        padding: 0 1rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--blueprint-accent-alt);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--blueprint-bg);
    color: var(--blueprint-text);
    border: 1px solid var(--blueprint-accent);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    position: relative;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-family: 'Bitter', serif;
    font-size: 1.5rem;
    color: var(--blueprint-accent);
}

.author-name {
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.author-business {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Process Section */
.process-section {
    position: relative;
    padding: 5rem 0;
    background-color: var(--blueprint-bg)
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    margin-bottom: 2.5rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 25px;
    height: calc(100% + 2.5rem);
    width: 1px;
    background-color: var(--blueprint-accent);
}

.bg-dark .process-step:not(:last-child)::after {
    background-color: var(--blueprint-text-light);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--blueprint-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bitter', serif;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 2rem;
    position: relative;
    z-index: 2;
    color: var(--blueprint-bg);
}

.bg-dark .step-number {
    color: var(--blueprint-text);
    background-color: var(--blueprint-text-light);
}

.step-content {
    padding-top: 0.5rem;
}

.process-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Pricing Preview Section */

.pricing-preview-section {
    background-color: var(--blueprint-accent);
}

.pricing-preview-section .section-title,
.pricing-preview-section .section-subtitle {
    color: var(--blueprint-text-light);
}

/* Updated Pricing Cards Styles */
.pricing-cards-preview {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin: 3rem auto;
}

.pricing-card {
    background: var(--blueprint-accent-alt);
    color: var(--blueprint-text);
    border: 1px solid var(--blueprint-accent);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.recommended {
    border: 2px solid var(--blueprint-highlight);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blueprint-highlight);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.promotion-badge {
    font-family: 'Bitter', monospace;
    font-size: 0.8rem;
    color: var(--blueprint-accent);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin: 0.5rem 0 1rem;
    border: 1px solid var(--blueprint-accent);
    text-align: center;
}

.price {
    font-family: 'Bitter', monospace;
    font-size: 2rem;
    color: var(--blueprint-accent);
    margin: 0.5rem 0;
}

.package-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
}

.pricing-cta {
    text-align: center;
    margin-top: auto;
}

.pricing-cta .cta-button {
    width: 100%;
}

/* Responsive styles for pricing cards */
@media (max-width: 991px) {
    .pricing-cards-preview {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.recommended {
        transform: none;
    }
}

/* Feature comparison table variables */
:root {
    --blueprint-highlight-rgb: 70, 130, 190;
}

/* Additional utility classes */
.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.mb-4 {
    margin-bottom: 2rem !important;
}

.mt-4 {
    margin-top: 2rem !important;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
}

.cta-card {
    background: var(--blueprint-bg);
    border: 1px solid var(--blueprint-accent);
    border-radius: 8px;
    padding: 3rem;
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-card h2 {
    margin-bottom: 1rem;
}

.cta-card p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Background variables */
.bg-dark {
    background-color: var(--blueprint-accent);
    color: var(--blueprint-text-light);
}

.bg-medium {
    background-color: var(--blueprint-accent-alt);
    color: var(--blueprint-text);
}

.bg-light {
    background-color: var(--blueprint-bg);
    color: var(--blueprint-text);
}

/* Direct child selectors to only affect immediate children */
.bg-dark>h1,
.bg-dark>h2,
.bg-dark>h3,
.bg-dark>h4,
.bg-dark>h5,
.bg-dark>h6,
.bg-dark>p,
.bg-dark>span,
.bg-dark>div:not([class]) {
    color: var(--blueprint-text-light);
}

.bg-medium>h1,
.bg-medium>h2,
.bg-medium>h3,
.bg-medium>h4,
.bg-medium>h5,
.bg-medium>h6,
.bg-medium>p,
.bg-medium>span,
.bg-medium>div:not([class]) {
    color: var(--blueprint-text);
}

.bg-light>h1,
.bg-light>h2,
.bg-light>h3,
.bg-light>h4,
.bg-light>h5,
.bg-light>h6,
.bg-light>p,
.bg-light>span,
.bg-light>div:not([class]) {
    color: var(--blueprint-text);
}

/* Text utility classes */
.text-light {
    color: var(--blueprint-text-light) !important;
}

.text-dark {
    color: var(--blueprint-text) !important;
}

.text-accent {
    color: var(--blueprint-accent) !important;
}

.text-highlight {
    color: var(--blueprint-highlight) !important;
}

/* Contact Section Responsive Styles remain the same */
.contact-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form-container {
    height: 100%;
}

.form-heading {
    margin-bottom: 1.5rem;
}

.form-subtitle {
    margin-bottom: 2rem;
}

/* Prevent image copying */
.protected-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
    /* This disables direct interaction with the image */
}

/* Gallery masonry layout styles */

/* Gallery grids */
.gallery-grid {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0 3rem;
    width: 100%;
    min-height: 200px; /* Minimum height to prevent layout jumps */
}

/* Default grid layout for mobile - single column */
.gallery-grid {
    grid-template-columns: 1fr;
}

/* Gallery masonry layout styles */

/* Gallery grids */
.gallery-grid {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0 3rem;
    width: 100%;
    min-height: 200px; /* Minimum height to prevent layout jumps */
}

/* Default grid layout for mobile - single column */
.gallery-grid {
    grid-template-columns: 1fr;
}

/* Gallery item basic styling */
.gallery-item {
    margin-bottom: 1rem;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.gallery-item h4 {
    margin-bottom: 0.5rem;
}

/* FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.category-title {
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background-color: var(--blueprint-highlight);
}

.faq-questions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--blueprint-bg);
    color: var(--blueprint-text);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.faq-question.active {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    padding-right: 2rem;
    flex: 1;
    pointer-events: none;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--blueprint-accent);
    border-radius: 50%;
    color: var(--blueprint-text-light);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.faq-question.active .faq-toggle {
    background-color: var(--blueprint-highlight);
}

.toggle-icon {
    transition: transform 0.2s ease;
}

.faq-question.active .toggle-icon {
    transform: rotate(180deg);
}

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

.faq-question.active + .faq-answer {
    padding-bottom: 1.5rem;
}

.faq-answer p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer a {
    color: var(--blueprint-highlight);
    text-decoration: none;
    transition: color 0.2s ease;
}

.faq-answer a:hover {
    color: var(--blueprint-accent);
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem;
    }
    
    .faq-question.active + .faq-answer {
        padding-bottom: 1.25rem;
    }
}

/* For screens larger than mobile, use absolute positioning for masonry layout */
@media (min-width: 768px) {
    .gallery-grid {
        display: block; /* Override grid display */
        position: relative; /* For absolute positioning of children */
    }
    
    .gallery-item {
        /* Will be positioned absolutely by JavaScript */
        width: calc(50% - 0.5rem); /* Default width for 2 columns, JS will override */
        margin-bottom: 0; /* JS handles spacing */
    }
}

/* Responsive adjustments - ONLY breakpoint at 767px */
@media (max-width: 767px) {
    /* Force single column for ALL gallery grids regardless of cols-X class */
    .gallery-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .gallery-item {
        position: static !important; /* Ensure no absolute positioning on mobile */
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Ensure proper width for images */
    .gallery-item img {
        width: 100% !important;
        max-width: 100% !important;
    }
}
/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 4rem;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    margin: 5% auto;
    display: block;
    width: 80%;
    max-width: 1200px;
    position: relative;
}

.close {
    position: absolute;
    top: -4rem;
    right: 0;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
}

#modal-image {
    width: 100%;
    height: auto;
    pointer-events: none;
}

/* Tablet Breakpoint */
@media (max-width: 767px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .form-heading {
        margin-bottom: 1rem;
    }

    .form-subtitle {
        margin-bottom: 1.5rem;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .pricing-cards-preview {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .pricing-card.recommended {
        transform: none;
    }

    .footer-info {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-info {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
    }

    .step-number {
        margin-bottom: 1rem;
    }

    .process-step:not(:last-child)::after {
        left: 25px;
        top: 50px;
        height: calc(100% - 50px);
    }

    .process-step {
        flex-direction: row;
        gap: 2rem;
    }

    .step-number {
        margin-bottom: 1rem;
        margin-right: 0;
        position: relative;
        z-index: 2;
    }

    .process-step:not(:last-child)::after {
        left: 25px;
        top: 50px;
        height: calc(100%);
    }

    .step-content {
        padding-left: 0;
        padding-top: 0;
        position: relative;
        z-index: 1;
    }
}