/* Core Styles - Design System Tokens */
:root {
    --background: 240 100% 99%;
    --foreground: 230 18% 12%;
    --card: 0 0% 100%;
    --card-foreground: 230 18% 12%;
    --popover: 0 0% 100%;
    --popover-foreground: 230 18% 12%;
    --primary: 217 91% 60%;
    --primary-foreground: 0 0% 100%;
    --primary-glow: 217 91% 70%;
    --secondary: 142 76% 36%;
    --secondary-foreground: 0 0% 100%;
    --secondary-glow: 142 76% 46%;
    --muted: 220 14% 96%;
    --muted-foreground: 220 9% 46%;
    --accent: 217 91% 95%;
    --accent-foreground: 217 91% 20%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    --border: 220 13% 91%;
    --input: 220 13% 91%;
    --ring: 217 91% 60%;
    --gradient-primary: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow)));
    --gradient-secondary: linear-gradient(135deg, hsl(var(--secondary)), hsl(var(--secondary-glow)));
    /* --gradient-hero: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--secondary)) 100%); */
    --gradient-hero: linear-gradient(135deg, hsl(235.28deg 74.27% 66.47%) 0%, hsl(var(--secondary)) 100%);
    --gradient-card: linear-gradient(145deg, hsl(0 0% 100% / .8), hsl(0 0% 100% / .4));
    --shadow-elegant: 0 10px 30px -10px hsl(var(--primary) / .2);
    --shadow-card: 0 4px 20px -2px hsl(var(--primary) / .1);
    --shadow-glow: 0 0 40px hsl(var(--primary-glow) / .3);
    --transition-smooth: all .3s cubic-bezier(.4, 0, .2, 1);
    --transition-bounce: all .4s cubic-bezier(.68, -.55, .265, 1.55);
    --radius: .75rem;
    --sidebar-background: 0 0% 98%;
    --sidebar-foreground: 240 5.3% 26.1%;
    --sidebar-primary: 240 5.9% 10%;
    --sidebar-primary-foreground: 0 0% 98%;
    --sidebar-accent: 240 4.8% 95.9%;
    --sidebar-accent-foreground: 240 5.9% 10%;
    --sidebar-border: 220 13% 91%;
    --sidebar-ring: 217.2 91.2% 59.8%;

    
    --grey-fg: 220 9% 46% ; 
}

/* Dark Mode Support */
/* @media (prefers-color-scheme: dark) {
    :root {
        --background: 240 100% 99%;
        --foreground: hsl(210, 40%, 98%);
        --card: hsl(222, 84%, 5%);
        --card-foreground: hsl(210, 40%, 98%);
        --muted: hsl(217, 32%, 17%);
        --muted-foreground: hsl(215, 20%, 65%);
        --accent: hsl(217, 32%, 17%);
        --accent-foreground: hsl(210, 40%, 98%);
        --border: hsl(217, 32%, 17%);
    }
} */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

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

.normal-text {
    color: var(--foreground);
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* .btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
} */

.btn-full {
    width: 100%;
}

.btn-hero {
    background: var(--gradient-hero);
    color: hsl(var(--primary-foreground));
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: none;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    transition: var(--transition-smooth);
     box-shadow:
        0 0 10px hsl(var(--primary-glow) / 0.4),
        0 0 20px hsl(var(--primary-glow) / 0.4),
        0 0 40px hsl(var(--primary-glow) / 0.3);

}

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

.btn-secondary {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    border-radius: 5rem;
    background: var(--gradient-secondary);
    color: hsl(var(--secondary-foreground));
    box-shadow: var(--shadow-card);
    margin-bottom: 5rem;
}

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

.btn-primary {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    box-shadow: var(--shadow-card);
    padding: 0.9rem 1rem;
    font-size: 1rem;
}

.btn-primary:hover {
    
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: hsl(var(--primary));
    border: 1.8px solid hsl(var(--primary));
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius); /* fully rounded */
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border-color: hsl(var(--primary));
      transform: translateY(-2px);
}

.btn-outline.btn-full
{
    
    color: hsl(var(--primary));
    /* box-shadow: var(--shadow-card); */
    padding: 0.8rem 1rem;
    font-size: 1rem;
}

.btn-outline.btn-full:hover
{
    
    color: hsl(var(--primary-foreground));
    border: 1px hsl(var(--primary));
}

.btn-secondary.btn-full {
    padding: 1rem 2.5rem;
   font-size: 1rem;
    background: hsl(var(--secondary)); /* Maybe you want it blue instead of green */
    color: hsl(var(--primary-foreground));
    margin-bottom: 0rem;
     border-radius: 13px; /* Removed border radius */
}

.btn-secondary.btn-full:hover {
    transform: translateY(-2px);
}


.btn-hero.btn-large {
  min-width: 230px; 
  width: 100%; 
  max-width: 250px; 
  font-size: 1rem;
  padding: 1rem 1rem;
  margin-bottom: 2rem;
}

.btn-hero.btn-message
{
 min-width: 100%; 
  width: 100%; 
  max-width: 250px; 
  font-size: 1rem;
  padding: 1rem 1rem;
 
}

.btn-demo.btn-large {
  min-width: 230px; 
  color: hsl(var(--primary));
  background-color: white;
   border: 1px solid hsl(var(--primary));
  width: 100%; 
  max-width: 250px; 
  font-size: 1rem;
  padding: 1rem 1rem;
  margin-bottom: 2rem;
}

.btn-demo.btn-large:hover
{
background: rgba(148, 190, 241, 0.2);
    transform: translateY(-2px);
 
}




/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition-smooth);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--foreground);
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
}

.logo-icon i {
    color: white;
    font-size: 1.25rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    color: hsl(var(--grey-fg));
    font-size: 0.9rem;
}

.nav-link {
    text-decoration: none;
    color: var(--muted-foreground);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color:hsl(var(--primary));
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--foreground);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: var(--transition-smooth);
}

.mobile-menu-btn:hover {
    background: var(--accent);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border: 1px solid var(--border);
        border-radius: 0 0 var(--radius) var(--radius);
        padding: 1rem;
        gap: 1rem;
        box-shadow: var(--shadow-elegant);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 110vh;
    max-height: 200vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background) 0%, var(--muted) 100%);
    padding-top:5rem;
    background: linear-gradient(to bottom right, hsla(217, 91%, 60%, 0.05), hsla(142, 76%, 36%, 0.05));
}


.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    top:10rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    background: var(--gradient-primary);
}

.floating-2 {
    bottom: 8rem;
    right: 4rem;
    width: 4rem;
    height: 4rem;
    background: var(--gradient-secondary);
    animation-delay: 1s;
}

.floating-3 {
    top: 55%;
    left: 25%;
    width: 3rem;
    height: 3rem;
    background: var(--gradient-hero);
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    text-align: center;
    max-width: 80rem;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.8rem;
    background: var(--gradient-card);
    border: 1px solid hsla(217, 91%, 60%, 0.2);
    border-radius: 9999px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-card);
    font-size: 0.9rem;
}

.hero-badge i {
    color: hsl(var(--secondary));
}
.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
    color: hsl(var(--grey-fg));
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--grey-fg));
}

.hero-feature i {
    color: hsl(var(--secondary));
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-trust {
    color: hsl(var(--grey-fg));
    font-size: 0.875rem;
}



/* Section Headers */
.section-header {
   padding-top: 5rem;;
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--grey-fg));
    max-width: 48rem;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: calc(var(--section-padding) + 2rem);
    background: hsla(220, 14%, 96%, 0.3);
    padding-bottom: 1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--gradient-card);
    border: 1px solid hsla(220, 13%, 91%, 0.5);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card);
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    /* background: var(--gradient-primary); */
    background: #6a74e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    box-shadow: var(--shadow-glow);
}

.feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-title {
    color: var(--primary);
}

.feature-description {
    color: hsl(var(--grey-fg));
    line-height: 1.6;
}

.features-cta {
    text-align: center;
}

/* Revenue Section */
.revenue-section {
    padding: var(--section-padding) 0;
    background: white
    ;
}

.revenue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto 4rem;
}

.revenue-card {
    position: relative;
    background: var(--gradient-card);
    border: 1px solid hsla(220, 13%, 91%, 0.5);
    border-radius: var(--radius);
    padding: 2rem;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card);
}

.revenue-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-elegant);
}
.revenue-card i{
    color: white;
}
.card-bg-element {
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    background: var(--gradient-primary);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(4rem, -4rem);
}

.card-bg-element.secondary {
    background: var(--gradient-secondary);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.card-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
}

.card-icon.secondary {
    background: var(--gradient-secondary);
}

.card-icon i {
    color: white;
    font-size: 1.25rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.card-subtitle {
    color: hsl(var(--muted-foreground));
}

.card-content {
    position: relative;
    z-index: 10;
}

.revenue-features {
    margin-bottom: 2rem;
}

.revenue-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.revenue-feature i {
    color: hsl(var(--secondary));
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.revenue-feature i.icon-blue
{
    color: hsl(var(--primary));
}

.revenue-feature h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.revenue-feature p {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.revenue-bottom {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto;
}

.revenue-bottom h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.revenue-bottom p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding) 0;
    background: hsla(220, 14%, 96%, 0.3);
    margin-bottom: 4rem;
}

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

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

.contact-card {
    background: var(--gradient-card);
    border: 1px solid hsla(220, 13%, 91%, 0.5);
    border-radius: var(--radius);
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.contact-card:hover {
    box-shadow: var(--shadow-elegant);
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon.secondary {
    background: var(--gradient-secondary);
}

.contact-icon i {
    color: white;
    font-size: 1.125rem;
}

.contact-card h4 {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-card > div > p {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}
.contact-details p{
    color: hsl(var(--muted-foreground));
}

.contact-details.blue p {
    color: hsl(var(--primary));
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-form-container {
    background: var(--gradient-card);
    border: 1px solid hsla(220, 13%, 91%, 0.5);
    border-radius: var(--radius);
    box-shadow: var(--shadow-elegant);
}

.contact-form-card .card-header {
    padding: 1.5rem 1.5rem 0;
    display: flex;
     flex-direction: column;
     align-items: flex-start;
}

.contact-form-card .card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-form-card .card-header p {
    color: hsl(var(--muted-foreground));
}

.contact-form {
    padding: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid hsl(var(--border));
    border-radius: var(--radius);
    font-size: 0.875rem;
    transition: var(--transition-smooth);
    background: var(--background);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(217, 91%, 60%, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-privacy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    margin-top: 1rem;
}

.form-privacy i {
    color: hsl(var(--secondary));
}


/* Button Loading States */
.btn-loading {
    display: none;
}

.btn:disabled .btn-text {
    display: none;
}

.btn:disabled .btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 10000;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-elegant);
    padding: 1rem 1.5rem;
    transform: translateX(100%);
    opacity: 0;
    transition: var(--transition-smooth);
    max-width: 400px;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.success {
    border-left: 4px solid var(--secondary);
}

.toast.error {
    border-left: 4px solid hsl(0, 84%, 60%);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast-icon {
    font-size: 1.25rem;
}

.toast.success .toast-icon {
    color: var(--secondary);
}

.toast.error .toast-icon {
    color: hsl(0, 84%, 60%);
}

.toast-message {
    color: var(--foreground);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .revenue-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem;
        --container-padding: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .revenue-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .toast {
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .revenue-card {
        padding: 1.5rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
}

/* Pricing HTML */

.pricing-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 5rem;
    text-align: center;
    background: linear-gradient(to bottom right, hsla(217, 91%, 60%, 0.05), hsla(142, 76%, 36%, 0.05));
    background: linear-gradient(135deg, var(--background) 0%, var(--muted) 100%);
}


.pricing-title {
    /* font-size: clamp(2.5rem, 8vw, 4.5rem); */
    padding-top: 5rem;;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.pricing-hero-content p
{
    color: hsl(var(--muted-foreground));
}

.billing-toggle
{
    margin-bottom: 2rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}



.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}
