/* Modern Design System */
:root {
    /* Colors */
    --primary: #0f172a;
    /* Slate 900 */
    --primary-light: #1e293b;
    /* Slate 800 */
    --accent: #10b981;
    /* Emerald 500 */
    --accent-hover: #059669;
    /* Emerald 600 */
    --text-main: #334155;
    /* Slate 700 */
    --text-light: #64748b;
    /* Slate 500 */
    --bg-body: #f8fafc;
    /* Slate 50 */
    --bg-white: #ffffff;

    /* Spacing */
    --header-height: 80px;
    --container-width: 1280px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

    /* Transitions */
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Sansita', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    padding-top: var(--header-height);
    /* Prevent content hiding behind fixed header */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 10px;
}

/* Fixed Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 1.0);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
}

.logo img {
    height: 60px;
    width: auto;
    border-radius: 8px;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

nav a:hover,
nav a.active {
    color: var(--primary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 20px 0;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    z-index: 0;
    mask-image: linear-gradient(to left, black, transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background-color:#1428A0;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    transform: translateY(0);
}

.btn:hover {
    background-color:#136f97;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    margin-left: 16px;
}

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

/* Content Sections */
.section {
    padding: 10px 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: -0.01em;
}
.vision-text {
    font-family: 'Sansita', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    padding-top: var(--header-height);
}

.feature-card {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background-color: #ecfdf5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent);
    font-size: 24px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Large CTA Section */
.cta-section {
    background: var(--primary);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    color: white;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent) 0%, transparent 100%);
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-section p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

/* Footer */
footer {
    background-color: var(--bg-white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    margin-top: 10px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .header-content {
        flex-direction: column;
        gap: 16px;
    }

    :root {
        --header-height: 120px;
    }

    nav {
        gap: 20px;
    }
}

/* Strict Layout Adjustments */
.vision-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.vision-list {
    list-style: none;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vision-list li {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    padding: 10px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.vision-list li:hover {
    transform: translateX(10px);
    border-left: 4px solid var(--accent);
    box-shadow: var(--shadow-md);
}

.large-text-section {
    text-align: center;
    margin: 40px 0px 20px 0px;
}

.large-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.0; 
}

.medium-text {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.0; 
    padding: 10px;
}

.smaller-text {
    font-size: 1.1rem;
    font-weight: 500;
    color:#49628b;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.smallest-text {
    font-size: 0.8rem;
    font-weight: 100;
    color:#09046e;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-align: right;
}

.theme-text {
    font-size: 12px;
    font-weight: 100;
    color:#000000;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.banner-image-container {
    margin-top: 10px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: static;
    transition: var(--transition);
}

.banner-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(255, 3, 3, 0.1);
    height: auto;
}

.banner-image-container img {
    width: 100%;
    height: 100%;
    display: block;
    padding: 10px;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(15, 23, 42, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 10px;
}

.banner-text {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stacked-section {
    margin-bottom: 20px;
    text-align: CENTER;
}

.stacked-text {
    margin-bottom: 10px;
}

.stacked-text h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.stacked-text p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.hero h1 {
    text-align: center;
}

.hero p {
    font-size: 1.125rem;
    text-align: center;
}
.btn-hero {
    display: flex;
    justify-content: center;
}

.sticker-image-container {
    margin-top: 10px;
    border-radius: 16px;
    overflow: visible;
    box-shadow: var(--shadow-lg);
    position: static;
    transition: var(--transition);
}

/* Grid for Vision/Features */
.grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 5fr));
    gap: 20px;
    margin-bottom: 20px;
}

.grid-container {
  display: grid;                                               /* Turns the element into a grid container */
  grid-template-columns: repeat(auto-fit, minmax(250px, 5fr)); /* Defines four equal-width columns */
  grid-template-rows: auto auto auto;                          /* Defines four rows with automatic height */
  gap: 20px;                                                   /* Sets a 20px gap between grid items */
}

.grid-item {
  background-color: #def6ff;
  border: 1px solid rgb(0, 0, 0);
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.0; 
  padding: 10px;
  border-radius: 16px;
}