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

:root {
    --primary-color: #19A7CE;
    --primary-dark: #146C94;
    --primary-dark-2: #166d95;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #19A7CE;
    --light-color: #F6F1F1;
    --dark-color: #000000;
    --white: #ffffff;
    --text-primary: #000000;
    --text-secondary: #6c757d;
    --border-color: #dee2e6;
    --shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    --border-radius: 0.375rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;

    /* Thinkstr Brand Colors */
    --background: 0 0% 100%;
    --foreground: 0 0% 0%;

    --card: 0 0% 100%;
    --card-foreground: 0 0% 0%;

    --popover: 0 0% 100%;
    --popover-foreground: 0 0% 0%;

    /* Primary Brand Color - Thinkstr Blue */
    --primary: 200 71% 32%;
    --primary-foreground: 0 0% 100%;
    
    /* Primary Lighter */
    --primary-light: 189 72% 44%;
    
    /* Secondary - White */
    --secondary: 0 0% 100%;
    --secondary-foreground: 0 0% 0%;

    /* Light Background */
    --light: 350 20% 96%;
    --light-foreground: 0 0% 0%;

    /* Muted Colors */
    --muted: 350 20% 96%;
    --muted-foreground: 220 9% 42%;

    /* Accent Colors */
    --accent: 189 72% 44%;
    --accent-foreground: 0 0% 100%;

    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 100%;

    --border: 220 13% 91%;
    --input: 220 13% 91%;
    --ring: 200 71% 32%;

    --radius: 0.75rem;
    
    /* Thinkstr Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-light)));
    --gradient-subtle: linear-gradient(180deg, hsl(var(--background)), hsl(var(--light)));
    --gradient-accent: linear-gradient(45deg, hsl(var(--primary-light)), hsl(var(--accent)));
    
    /* Shadows */
    --shadow-soft: 0 4px 20px -2px hsl(var(--primary) / 0.1);
    --shadow-medium: 0 8px 30px -4px hsl(var(--primary) / 0.15);
    --shadow-strong: 0 20px 50px -10px hsl(var(--primary) / 0.25);
    
    /* Animations */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Sidebar */
    --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%;
}

body {
    /* old font-family: -apple-system, BlinkMacSystemFont, 'Georgia', Roboto, 'Helvetica Neue', Arial, sans-serif; */
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--light-color);
    padding-bottom:150px;
}

html, :host {
    line-height: 1.5; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
    -moz-tab-size: 4; /* 3 */
    -o-tab-size: 4;
       tab-size: 4; /* 3 */
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
    font-feature-settings: normal; /* 5 */
    font-variation-settings: normal; /* 6 */
    -webkit-tap-highlight-color: transparent; /* 7 */
  }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-sm {
    max-width: 576px;
    margin: 0 auto;
    padding: 0 1rem;
}

.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;                 /* put logo + text in a row */
    align-items: center;           /* vertical center */
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
}

#brand-logo {
    max-width: 1.9rem;
    margin-right: 0.5rem;          /* spacing between logo and text */
    display: block;                /* avoid extra baseline spacing */
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
}

.mobile-menu.show {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.mobile-menu li {
    margin: 0;
}

.mobile-menu .nav-link,
.mobile-menu .btn {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-primary);
    border-radius: 0;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.mobile-menu .nav-link:hover,
.mobile-menu .btn:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.mobile-menu .btn {
    margin: 0.5rem 1rem;
    width: calc(100% - 2rem);
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    border-radius: var(--border-radius);
}

.mobile-menu .btn:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.mobile-menu .language-selector {
    padding: 0.75rem 1rem;
}

.mobile-menu .language-selector select {
    margin: 0;
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    border: 1px solid var(--primary-color);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    min-height: 44px;
}

.btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

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

.btn-success {
    background: var(--success-color);
    border-color: var(--success-color);
}

.btn-danger {
    background: var(--danger-color);
    border-color: var(--danger-color);
}

.btn-outline-danger {
    background: transparent;
    border-color: var(--danger-color);
    color: var(--danger-color);
}

.btn-outline-danger:hover {
    background: var(--danger-color);
    color: var(--white);
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: var(--font-size-lg);
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: var(--font-size-sm);
}

.card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.card-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.card-header-frontpage{
    min-height:84px;
}

.card-body {
    padding: 1.5rem;
}

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

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

.form-control {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: var(--font-size-base);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-select {
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

.alert {
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: var(--border-radius);
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeaa7;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.bold{
    font-weight:600;
}

.hero {
    position: relative;
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(25, 167, 206, 0.8) 0%, 
        rgba(20, 108, 148, 0.9) 50%, 
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero p {
    font-size: var(--font-size-lg);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;        /* aligns list text */
    display: inline-block;   /* keeps the whole list centered inside a parent with text-align:center */
}

.hero-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.hero-list .icon {
    width: 2rem;             /* fixed width column for the emoji */
    text-align: center;
    flex-shrink: 0;
    font-size:1.3rem;
    margin-top:-3px;
    margin-right:6px;
}

.usecases-scroll {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.usecases-track {
    display: flex;
    gap: 12px;
    animation: scroll-left 15s linear infinite;
}

div.usecases-scroll div.usecases-track-2 {
    animation: scroll-left 25s linear infinite;
}

.app-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 500;
    white-space: nowrap;
    flex: 0 0 auto;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

@keyframes scroll-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.cutout-area{
    max-width: 800px;
    margin: 0 auto; 
    background: rgba(255,255,255,0.1); 
    border-radius: 12px; 
    padding: 2rem; 
    border: 2px dashed rgba(255,255,255,0.3);
}

.cutout-area h3{
    padding-bottom:1.1rem;
}

.demo-steps {
    display: flex;
    align-items: stretch;     /* all cards same height */
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;          /* still responsive */
    margin: 0.5rem 0;
}

.step {
    background: rgba(255,255,255,0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    flex: 1 1 180px;          /* equal width baseline */
    max-width: 220px;         /* prevents overly wide cards on big screens */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;   /* so number + text stay stacked */
    justify-content: top;  /* vertical centering inside */
}

.step-number {
    background: var(--primary-color, #4a90e2);
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    line-height: 28px;
    border-radius: 50%;
    margin: 0 auto 0.75rem;
}

.step p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.3;
}

.step small {
    opacity: 0.7;
    font-size: 0.8rem;
}

.step-arrow {
    font-size: 1.5rem;
    opacity: 0.7;
    align-self: center;       /* keeps arrow vertically centered */
}

.key {
    background: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 2px 6px;
    font-family: monospace;
}

.demo-sub {
    opacity: 0.85;
    text-align: center;
    margin-top: 1rem;
    margin-bottom:0px !important;
}

.demo-video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
    border: 1px solid var(--border-color);
}

.demo-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.demo-video-container:hover .demo-video {
    transform: scale(1.01);
}

@media (max-width: 768px) {
    .demo-video-container {
        max-width: 100%;
        margin: 0 1rem;
    }
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-cols-1 {
    grid-template-columns: 1fr;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.pl-1 { padding-left: 0.25rem; }
.pl-2 { padding-left: 0.5rem; }
.pl-3 { padding-left: 1rem; }

.pr-1 { padding-right: 0.25rem; }
.pr-2 { padding-right: 0.5rem; }
.pr-3 { padding-right: 1rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

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

.gap-3 {
    gap: 1rem;
}

.gap-12 {
    gap: 3rem;
}

.items-center {
    align-items: center;
}

.w-100 {
    width: 100%;
}

.text-muted {
    color: var(--text-secondary);
    font-weight: 400;
}

.extra-small {
    color: silver;
    font-size: 0.7rem;
}
.text-small {
    font-size: 0.8rem !important;
}

.text-primary {
    color: var(--primary-color);
}

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

.border {
    border: 1px solid var(--border-color);
}

.rounded {
    border-radius: var(--border-radius);
}

.shadow {
    box-shadow: var(--shadow);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.badge {
    display: inline-block;
    padding: .35em .5em;
    font-weight: 700;
    line-height: 0.8rem;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .375rem;
}
.badge:empty { display: none; }

.badge.badge-primary {
    background-color: var(--primary-dark);
    color: var(--white);
}
.badge.badge-secondary {
    background-color: var(--secondary-color); 
    color: var(--white);
}
.badge.badge-tertiary {
    background-color: var(--white); 
    color: var(--primary-color);
}

.badge.badge-warning {
    background-color:var(--warning-color); 
    color: #212529; 
}

.badge.badge-error {
    background-color:var(--danger-color);
    color: var(--white);
}

a.badge:hover,
a.badge:focus {
    filter: brightness(.95);
    text-decoration: none;
}

@media (max-width: 768px) {
    .container {
        padding: 0 0.5rem;
    }

    .navbar {
        position: relative;
    }

    .navbar-nav {
        display: none;
    }

    .navbar .btn-new-primary {
        margin:0.9rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: var(--font-size-3xl);
    }

    .hero p {
        font-size: var(--font-size-base);
    }

    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-arrow{
        display:none;
    }
}

@media (max-width: 480px) {
    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }

    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: var(--font-size-base);
    }

    .d-flex.gap-3 {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .d-flex.gap-3 .btn {
        width: 100%;
        max-width: 300px;
    }

    body.modal-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }

    .modal {
        padding: 0;
        align-items: flex-start;
    }

    .modal-content {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }

    .modal-body {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.loading {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 0.125rem solid var(--border-color);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.notification {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    z-index: 1050;
    max-width: 300px;
    display: none;
}

.notification.show {
    display: block;
    animation: slideIn 0.3s ease;
}

.text-page-layout h1, .text-page-layout h2, .text-page-layout h3, .text-page-layout h4, .text-page-layout h5, .text-page-layout h6 {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.bottom-intro h6 {
    font-size:1rem;
    font-weight:600;
}

div.header-stats h3{
    font-size: 1rem;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.activity-clickable {
    cursor: pointer;
    transition: background-color 0.2s ease;
    padding: 0.5rem;
    margin: -0.5rem;
    border: solid 1px white;
    border-radius: var(--border-radius);
}

.activity-clickable:hover {
    border: solid 1px rgba(25, 167, 206, 0.3);
}


.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.from-background {
    --tw-gradient-from: hsl(var(--background)) var(--tw-gradient-from-position);
    --tw-gradient-to: hsl(var(--background) / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-primary {
    --tw-gradient-from: hsl(var(--primary)) var(--tw-gradient-from-position);
    --tw-gradient-to: hsl(var(--primary) / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-primary\/20 {
    --tw-gradient-from: hsl(var(--primary) / 0.2) var(--tw-gradient-from-position);
    --tw-gradient-to: hsl(var(--primary) / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-primary\/5 {
    --tw-gradient-from: hsl(var(--primary) / 0.05) var(--tw-gradient-from-position);
    --tw-gradient-to: hsl(var(--primary) / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-primary\/90 {
    --tw-gradient-from: hsl(var(--primary) / 0.9) var(--tw-gradient-from-position);
    --tw-gradient-to: hsl(var(--primary) / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-light {
    --tw-gradient-to: hsl(var(--light) / 0)  var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), hsl(var(--light)) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-primary-light {
    --tw-gradient-to: hsl(var(--primary-light) / 0)  var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), hsl(var(--primary-light)) var(--tw-gradient-via-position), var(--tw-gradient-to);
}



.hover\:scale-105:hover {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  
  .hover\:bg-accent:hover {
    background-color: hsl(var(--accent));
  }
  
  .hover\:bg-destructive\/80:hover {
    background-color: hsl(var(--destructive) / 0.8);
  }
  
  .hover\:bg-destructive\/90:hover {
    background-color: hsl(var(--destructive) / 0.9);
  }
  
  .hover\:bg-muted:hover {
    background-color: hsl(var(--muted));
  }
  
  .hover\:bg-muted\/50:hover {
    background-color: hsl(var(--muted) / 0.5);
  }
  
  .hover\:bg-primary:hover {
    background-color: hsl(var(--primary));
  }
  
  .hover\:bg-primary\/80:hover {
    background-color: hsl(var(--primary) / 0.8);
  }
  
  .hover\:bg-primary\/90:hover {
    background-color: hsl(var(--primary) / 0.9);
  }
  
  .hover\:bg-secondary:hover {
    background-color: hsl(var(--secondary));
  }
  
  .hover\:bg-secondary\/80:hover {
    background-color: hsl(var(--secondary) / 0.8);
  }
  
  .hover\:bg-sidebar-accent:hover {
    background-color: hsl(var(--sidebar-accent));
  }
  
  .hover\:bg-transparent:hover {
    background-color: transparent;
  }
  
  .hover\:text-accent-foreground:hover {
    color: hsl(var(--accent-foreground));
  }
  
  .hover\:text-foreground:hover {
    color: hsl(var(--foreground));
  }
  
  .hover\:text-muted-foreground:hover {
    color: hsl(var(--muted-foreground));
  }
  
  .hover\:text-primary:hover {
    color: hsl(var(--primary));
  }
  
  .hover\:text-primary-foreground:hover {
    color: hsl(var(--primary-foreground));
  }
  
  .hover\:text-primary\/80:hover {
    color: hsl(var(--primary) / 0.8);
  }
  
  .hover\:text-sidebar-accent-foreground:hover {
    color: hsl(var(--sidebar-accent-foreground));
  }
  
  .hover\:underline:hover {
    text-decoration-line: underline;
  }
  
  .hover\:opacity-100:hover {
    opacity: 1;
  }
  
  .hover\:shadow-\[0_0_0_1px_hsl\(var\(--sidebar-accent\)\)\]:hover {
    --tw-shadow: 0 0 0 1px hsl(var(--sidebar-accent));
    --tw-shadow-colored: 0 0 0 1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
  
  .hover\:shadow-lg:hover {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
  
  .hover\:after\:bg-sidebar-border:hover::after {
    content: var(--tw-content);
    background-color: hsl(var(--sidebar-border));
  }
  
  .focus\:bg-accent:focus {
    background-color: hsl(var(--accent));
  }
  
  .focus\:bg-primary:focus {
    background-color: hsl(var(--primary));
  }

.w-full{
    width:100%;
}

.btn-new-primary{
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent;
    --background: 0 0% 100%;
    --foreground: 0 0% 0%;
    --card: 0 0% 100%;
    --card-foreground: 0 0% 0%;
    --popover: 0 0% 100%;
    --popover-foreground: 0 0% 0%;
    --primary: 200 71% 32%;
    --primary-foreground: 0 0% 100%;
    --primary-light: 189 72% 44%;
    --secondary: 0 0% 100%;
    --secondary-foreground: 0 0% 0%;
    --light: 350 20% 96%;
    --light-foreground: 0 0% 0%;
    --muted: 350 20% 96%;
    --muted-foreground: 220 9% 42%;
    --accent: 189 72% 44%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 100%;
    --border: 220 13% 91%;
    --input: 220 13% 91%;
    --ring: 200 71% 32%;
    --radius: .75rem;
    --gradient-primary: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-light)));
    --gradient-subtle: linear-gradient(180deg, hsl(var(--background)), hsl(var(--light)));
    --gradient-accent: linear-gradient(45deg, hsl(var(--primary-light)), hsl(var(--accent)));
    --shadow-soft: 0 4px 20px -2px hsl(var(--primary) / .1);
    --shadow-medium: 0 8px 30px -4px hsl(var(--primary) / .15);
    --shadow-strong: 0 20px 50px -10px hsl(var(--primary) / .25);
    --transition-smooth: all .3s cubic-bezier(.4, 0, .2, 1);
    --transition-bounce: all .4s cubic-bezier(.68, -.55, .265, 1.55);
    --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%;
    --tw-space-y-reverse: 0;
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-color: rgb(59 130 246 / .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style: ;
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: hsl(var(--border));
    text-decoration: inherit;
    display: inline-flex;
    height: 3rem;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    white-space: nowrap;
    border-radius: var(--radius);
    background-image: linear-gradient(to right,var(--tw-gradient-stops));
    --tw-gradient-from: hsl(var(--primary)) var(--tw-gradient-from-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: hsl(var(--primary-light)) var(--tw-gradient-to-position);
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    color: hsl(var(--primary-foreground));
    --tw-ring-offset-color: hsl(var(--background));
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .3s;
    animation-duration: .3s;
}

.btn-new-secondary{
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    -webkit-tap-highlight-color: transparent;
    --background: 0 0% 100%;
    --foreground: 0 0% 0%;
    --card: 0 0% 100%;
    --card-foreground: 0 0% 0%;
    --popover: 0 0% 100%;
    --popover-foreground: 0 0% 0%;
    --primary: 200 71% 32%;
    --primary-foreground: 0 0% 100%;
    --primary-light: 189 72% 44%;
    --secondary: 0 0% 100%;
    --secondary-foreground: 0 0% 0%;
    --light: 350 20% 96%;
    --light-foreground: 0 0% 0%;
    --muted: 350 20% 96%;
    --muted-foreground: 220 9% 42%;
    --accent: 189 72% 44%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 100%;
    --border: 220 13% 91%;
    --input: 220 13% 91%;
    --ring: 200 71% 32%;
    --radius: .75rem;
    --gradient-primary: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-light)));
    --gradient-subtle: linear-gradient(180deg, hsl(var(--background)), hsl(var(--light)));
    --gradient-accent: linear-gradient(45deg, hsl(var(--primary-light)), hsl(var(--accent)));
    --shadow-soft: 0 4px 20px -2px hsl(var(--primary) / .1);
    --shadow-medium: 0 8px 30px -4px hsl(var(--primary) / .15);
    --shadow-strong: 0 20px 50px -10px hsl(var(--primary) / .25);
    --transition-smooth: all .3s cubic-bezier(.4, 0, .2, 1);
    --transition-bounce: all .4s cubic-bezier(.68, -.55, .265, 1.55);
    --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%;
    --tw-gradient-from: hsl(var(--background)) var(--tw-gradient-from-position);
    --tw-gradient-stops: var(--tw-gradient-from), hsl(var(--light)) var(--tw-gradient-via-position), var(--tw-gradient-to);
    --tw-gradient-to: hsl(var(--background)) var(--tw-gradient-to-position);
    --tw-space-y-reverse: 0;
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-color: rgb(59 130 246 / .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style: ;
    box-sizing: border-box;
    border-style: solid;
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    text-transform: none;
    -webkit-appearance: button;
    background-image: none;
    cursor: pointer;
    display: inline-flex;
    height: 3rem;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    white-space: nowrap;
    border-radius: var(--radius);
    border-width: 1px;
    border-color: hsl(var(--input));
    background-color: hsl(var(--background));
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    --tw-ring-offset-color: hsl(var(--background));
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .3s;
    animation-duration: .3s;
}

.btn-new-primary, .btn-new-secondary{
    cursor: pointer;
    text-decoration: none;
}

.final-cta-new {
    padding: 6rem 0;
    background: linear-gradient(135deg, #17668C 0%, #1FA3BD 100%);
}

.final-cta-new, .final-cta-new p, .final-cta-new h3, .final-cta-new h2, .final-cta-new div{
    color:var(--white);
}

.final-cta-ready {
    font-size: 1.5rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

/* Floating Contact Button */
.floating-contact-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 1000;
    color: var(--white);
}

.floating-contact-button:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.25);
}

.floating-contact-button svg {
    width: 24px;
    height: 24px;
}

/* Contact Modal */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1060;
    padding: 1rem;
}

.contact-modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.contact-modal-header {
    padding: 1.5rem 1.5rem 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.contact-modal-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: var(--font-size-xl);
    font-weight: 600;
}

.contact-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.contact-modal-close:hover {
    background: var(--border-color);
}

.contact-modal-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.contact-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.contact-user-fields {
    display: block;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-contact-button {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }
    
    .floating-contact-button svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-modal {
        padding: 0.5rem;
    }
    
    .contact-modal-content {
        max-height: 95vh;
    }
    
    .contact-modal-actions {
        flex-direction: column;
    }
    
    .contact-modal-actions button {
        width: 100%;
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--light-color);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    margin-top: auto;
}

.footer-content {
    text-align: center;
}

.footer-text {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin: 0;
    line-height: 1.5;
}

.footer-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Ensure footer stays at bottom */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}