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

body {
    background: linear-gradient(135deg, #b3e5fc 0%, #e1f5fe 40%, #b3e5fc 100%);
    font-family: 'Nunito', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    color: #333;
}

/* Floating background shapes */
.bg-shapes {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-shapes span {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0%   { transform: translateY(100vh) rotate(0deg) scale(0.5); opacity: 0; }
    10%  { opacity: 0.15; }
    90%  { opacity: 0.15; }
    100% { transform: translateY(-20vh) rotate(720deg) scale(1.2); opacity: 0; }
}

/* Navbar */
nav {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3rem;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #54a0ff) 1;
}

.logo {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    background: linear-gradient(135deg, #ff6b6b, #ff9ff3, #54a0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-decoration: none;
}

.logo span {
    background: linear-gradient(135deg, #feca57, #ff6b6b);
    -webkit-background-clip: text;
    background-clip: text;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav ul li a {
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    color: #5f27cd;
    transition: all 0.3s;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #ff6b6b, #feca57);
    transition: width 0.3s;
}

nav ul li a:hover::after { width: 100%; }
nav ul li a:hover { color: #ff6b6b; }
nav ul li a.active { color: #ff6b6b; }
nav ul li a.active::after { width: 100%; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: #fff;
    box-shadow: 0 8px 25px rgba(238,90,36,0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(238,90,36,0.5);
}

.btn-secondary {
    background: rgba(255,255,255,0.7);
    color: #5f27cd;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 2px solid #c8d6e5;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    border-color: #54a0ff;
    background: #fff;
}

/* Rainbow Divider */
.rainbow-divider {
    height: 5px;
    max-width: 200px;
    margin: 3rem auto;
    border-radius: 5px;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #54a0ff);
}

/* Bounce animation */
@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(-3deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-8px) rotate(3deg); }
}

/* Footer */
footer {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #54a0ff, #ff9ff3, #feca57, #ff6b6b) 1;
}

footer p {
    font-weight: 700;
    font-size: 0.95rem;
}

footer .heart { color: #ff6b6b; font-size: 1.2rem; }
footer .brand {
    font-family: 'Fredoka One', cursive;
    background: linear-gradient(135deg, #ff6b6b, #54a0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

footer .footer-links {
    margin-top: 0.8rem;
}

footer .footer-links a {
    color: #5f27cd;
    text-decoration: none;
    font-weight: 700;
    margin: 0 0.8rem;
    transition: color 0.3s;
}

footer .footer-links a:hover { color: #ff6b6b; }

/* Page Header (shared across features, about, contact) */
.page-header {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 5rem 2rem 3rem;
}

.page-header .icon-big {
    font-size: 5rem;
    display: inline-block;
    animation: wiggle 3s ease-in-out infinite;
    margin-bottom: 1rem;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    15% { transform: rotate(12deg); }
    30% { transform: rotate(-10deg); }
    45% { transform: rotate(8deg); }
    60% { transform: rotate(-5deg); }
    75% { transform: rotate(3deg); }
}

.page-header h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header h1 .g1 { color: #ff6b6b; }
.page-header h1 .g2 { color: #feca57; text-shadow: 1px 1px 0 #e17055; }

.page-header p {
    font-size: 1.3rem;
    color: #576574;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.page-header p strong {
    color: #5f27cd;
}

/* CTA Banner (shared across features, about) */
.cta-banner {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    background: linear-gradient(135deg, rgba(95,39,205,0.08), rgba(255,107,107,0.08));
    border-radius: 30px;
    border: 2px solid rgba(95,39,205,0.15);
}

.cta-banner .big-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: bounce 2s ease infinite;
}

.cta-banner h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #5f27cd, #e84393);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-banner p {
    color: #576574;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* =============================================
   HOME PAGE
   ============================================= */

/* Hero Section */
.hero {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 6rem 2rem 4rem;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #feca57, #ff9ff3);
    color: #5f27cd;
    font-weight: 900;
    font-size: 0.85rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(254,202,87,0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px 10px rgba(254,202,87,0); }
}

.hero h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 4.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero h1 .word1 { color: #ff6b6b; }
.hero h1 .word2 { color: #feca57; text-shadow: 1px 1px 0 #e17055; }
.hero h1 .word3 { color: #54a0ff; }
.hero h1 .word4 {
    background: linear-gradient(135deg, #ff9ff3, #f368e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-size: 1.4rem;
    color: #576574;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero .subtitle em {
    color: #5f27cd;
    font-style: normal;
    font-weight: 900;
}

.cta-group {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.envelope-icon {
    font-size: 6rem;
    display: inline-block;
    animation: bounce 2s ease infinite;
    margin-bottom: 1rem;
}

/* Features grid (home page) */
.features {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 2rem 5rem;
}

.feature-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.feature-card:nth-child(1) { border-color: #ff6b6b; }
.feature-card:nth-child(2) { border-color: #feca57; }
.feature-card:nth-child(3) { border-color: #54a0ff; }
.feature-card:nth-child(4) { border-color: #ff9ff3; }

.feature-card .icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.feature-card:nth-child(1) h3 { color: #ff6b6b; }
.feature-card:nth-child(2) h3 { color: #e17055; }
.feature-card:nth-child(3) h3 { color: #0984e3; }
.feature-card:nth-child(4) h3 { color: #e84393; }

.feature-card p {
    color: #636e72;
    line-height: 1.7;
    font-size: 1rem;
}

/* Stats */
.stats {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding: 3rem 2rem 5rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat .number {
    font-family: 'Fredoka One', cursive;
    font-size: 3.5rem;
    line-height: 1;
}

.stat:nth-child(1) .number { color: #ff6b6b; }
.stat:nth-child(2) .number { color: #feca57; text-shadow: 1px 1px 0 #e17055; }
.stat:nth-child(3) .number { color: #54a0ff; }

.stat .label {
    font-weight: 700;
    color: #576574;
    margin-top: 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Invite section */
.invite-section {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 4rem 2rem 5rem;
    max-width: 700px;
    margin: 0 auto;
}

.invite-section h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #5f27cd;
}

.invite-section p {
    font-size: 1.15rem;
    color: #576574;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.invite-form {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.invite-form input {
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 2px solid #c8d6e5;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    width: 300px;
    outline: none;
    transition: border-color 0.3s;
    background: rgba(255,255,255,0.8);
}

.invite-form input:focus {
    border-color: #54a0ff;
    box-shadow: 0 0 0 4px rgba(84,160,255,0.15);
}

/* =============================================
   FEATURES PAGE
   ============================================= */

/* Feature Detail Rows */
.feature-rows {
    position: relative;
    z-index: 5;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 3rem;
    transition: all 0.4s;
    border: 2px solid transparent;
}

.feature-row:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.feature-row:nth-child(even) { flex-direction: row-reverse; }

.feature-row:nth-child(1) { border-color: #ff6b6b; }
.feature-row:nth-child(2) { border-color: #feca57; }
.feature-row:nth-child(3) { border-color: #54a0ff; }
.feature-row:nth-child(4) { border-color: #ff9ff3; }
.feature-row:nth-child(5) { border-color: #1dd1a1; }
.feature-row:nth-child(6) { border-color: #5f27cd; }

.feature-row .feat-icon {
    font-size: 5rem;
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    background: rgba(255,255,255,0.6);
}

.feature-row:nth-child(1) .feat-icon { background: rgba(255,107,107,0.12); }
.feature-row:nth-child(2) .feat-icon { background: rgba(254,202,87,0.15); }
.feature-row:nth-child(3) .feat-icon { background: rgba(84,160,255,0.12); }
.feature-row:nth-child(4) .feat-icon { background: rgba(255,159,243,0.12); }
.feature-row:nth-child(5) .feat-icon { background: rgba(29,209,161,0.12); }
.feature-row:nth-child(6) .feat-icon { background: rgba(95,39,205,0.1); }

.feature-row .feat-content {
    flex: 1;
}

.feature-row .feat-content .tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.8rem;
}

.feature-row:nth-child(1) .tag { background: #ff6b6b; color: #fff; }
.feature-row:nth-child(2) .tag { background: #feca57; color: #6c5113; }
.feature-row:nth-child(3) .tag { background: #54a0ff; color: #fff; }
.feature-row:nth-child(4) .tag { background: #ff9ff3; color: #6b1d5e; }
.feature-row:nth-child(5) .tag { background: #1dd1a1; color: #fff; }
.feature-row:nth-child(6) .tag { background: #5f27cd; color: #fff; }

.feature-row .feat-content h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.feature-row:nth-child(1) h3 { color: #ff6b6b; }
.feature-row:nth-child(2) h3 { color: #e17055; }
.feature-row:nth-child(3) h3 { color: #0984e3; }
.feature-row:nth-child(4) h3 { color: #e84393; }
.feature-row:nth-child(5) h3 { color: #00b894; }
.feature-row:nth-child(6) h3 { color: #5f27cd; }

.feature-row .feat-content p {
    color: #636e72;
    line-height: 1.8;
    font-size: 1.05rem;
}

.feature-row .feat-content ul {
    list-style: none;
    margin-top: 1rem;
}

.feature-row .feat-content ul li {
    padding: 0.3rem 0;
    color: #576574;
    font-weight: 700;
    font-size: 0.95rem;
}

.feature-row .feat-content ul li::before {
    content: '\2713 ';
    font-weight: 900;
}

.feature-row:nth-child(1) ul li::before { color: #ff6b6b; }
.feature-row:nth-child(2) ul li::before { color: #feca57; }
.feature-row:nth-child(3) ul li::before { color: #54a0ff; }
.feature-row:nth-child(4) ul li::before { color: #ff9ff3; }
.feature-row:nth-child(5) ul li::before { color: #1dd1a1; }
.feature-row:nth-child(6) ul li::before { color: #5f27cd; }

/* Comparison Table */
.comparison {
    position: relative;
    z-index: 5;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
    text-align: center;
}

.comparison h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff6b6b, #feca57, #54a0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison .sub {
    color: #576574;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.comp-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.comp-table thead th {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    padding: 1.2rem 1rem;
    border-bottom: 3px solid transparent;
}

.comp-table thead th:first-child {
    text-align: left;
    color: #576574;
    border-bottom-color: #dfe6e9;
}

.comp-table thead th:nth-child(2) {
    color: #b2bec3;
    border-bottom-color: #dfe6e9;
}

.comp-table thead th:nth-child(3) {
    background: linear-gradient(135deg, rgba(255,107,107,0.1), rgba(84,160,255,0.1));
    color: #ff6b6b;
    border-bottom-color: #ff6b6b;
}

.comp-table tbody td {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 700;
    color: #636e72;
}

.comp-table tbody td:first-child {
    text-align: left;
    font-size: 1rem;
}

.comp-table tbody tr:last-child td { border-bottom: none; }

.comp-table .yes { color: #1dd1a1; font-size: 1.3rem; }
.comp-table .no { color: #dfe6e9; font-size: 1.3rem; }
.comp-table .highlight { color: #ff6b6b; }

/* =============================================
   ABOUT PAGE
   ============================================= */

/* Story section */
.story {
    position: relative;
    z-index: 5;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.story-card {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 3rem;
    border: 2px solid #ff9ff3;
    margin-bottom: 3rem;
}

.story-card h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #e84393;
}

.story-card p {
    color: #636e72;
    line-height: 1.9;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.story-card p:last-child {
    margin-bottom: 0;
}

.story-card .highlight-text {
    color: #5f27cd;
    font-weight: 900;
}

/* Values grid */
.values {
    position: relative;
    z-index: 5;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.values h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #ff6b6b, #feca57, #54a0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.value-card:nth-child(1) { border-color: #ff6b6b; }
.value-card:nth-child(2) { border-color: #feca57; }
.value-card:nth-child(3) { border-color: #54a0ff; }
.value-card:nth-child(4) { border-color: #1dd1a1; }
.value-card:nth-child(5) { border-color: #ff9ff3; }
.value-card:nth-child(6) { border-color: #5f27cd; }

.value-card .icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.value-card:nth-child(1) h3 { color: #ff6b6b; }
.value-card:nth-child(2) h3 { color: #e17055; }
.value-card:nth-child(3) h3 { color: #0984e3; }
.value-card:nth-child(4) h3 { color: #00b894; }
.value-card:nth-child(5) h3 { color: #e84393; }
.value-card:nth-child(6) h3 { color: #5f27cd; }

.value-card p {
    color: #636e72;
    line-height: 1.7;
    font-size: 1rem;
}

/* Timeline */
.timeline-section {
    position: relative;
    z-index: 5;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.timeline-section h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #5f27cd, #e84393);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(180deg, #ff6b6b, #feca57, #54a0ff, #ff9ff3, #1dd1a1);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
}

.timeline-item:hover {
    transform: translateX(6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.35rem;
    top: 2rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid #fff;
}

.timeline-item:nth-child(1)::before { background: #ff6b6b; }
.timeline-item:nth-child(2)::before { background: #feca57; }
.timeline-item:nth-child(3)::before { background: #54a0ff; }
.timeline-item:nth-child(4)::before { background: #ff9ff3; }
.timeline-item:nth-child(5)::before { background: #1dd1a1; }

.timeline-item .year {
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    display: inline-block;
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 0.6rem;
}

.timeline-item:nth-child(1) .year { background: #ff6b6b; color: #fff; }
.timeline-item:nth-child(2) .year { background: #feca57; color: #6c5113; }
.timeline-item:nth-child(3) .year { background: #54a0ff; color: #fff; }
.timeline-item:nth-child(4) .year { background: #ff9ff3; color: #6b1d5e; }
.timeline-item:nth-child(5) .year { background: #1dd1a1; color: #fff; }

.timeline-item h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.4rem;
}

.timeline-item p {
    color: #636e72;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Team section */
.team {
    position: relative;
    z-index: 5;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    text-align: center;
}

.team h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff6b6b, #54a0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team .sub {
    color: #576574;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.team-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    transition: all 0.4s;
    border: 2px solid transparent;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.team-card:nth-child(1) { border-color: #ff6b6b; }
.team-card:nth-child(2) { border-color: #feca57; }
.team-card:nth-child(3) { border-color: #54a0ff; }
.team-card:nth-child(4) { border-color: #1dd1a1; }

.team-card .avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.team-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.team-card:nth-child(1) h3 { color: #ff6b6b; }
.team-card:nth-child(2) h3 { color: #e17055; }
.team-card:nth-child(3) h3 { color: #0984e3; }
.team-card:nth-child(4) h3 { color: #00b894; }

.team-card .role {
    font-weight: 900;
    color: #b2bec3;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.team-card p {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =============================================
   CONTACT PAGE
   ============================================= */

/* Contact layout */
.contact-wrapper {
    position: relative;
    z-index: 5;
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

/* Contact form */
.contact-form-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 3rem;
    border: 2px solid #54a0ff;
}

.contact-form-card h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: #0984e3;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    font-weight: 900;
    color: #5f27cd;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border-radius: 16px;
    border: 2px solid #dfe6e9;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: rgba(255,255,255,0.8);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #54a0ff;
    box-shadow: 0 0 0 4px rgba(84,160,255,0.15);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235f27cd' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    padding-right: 2.5rem;
}

.contact-form-card .btn {
    width: 100%;
    margin-top: 0.5rem;
}

/* Info side */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.info-card:nth-child(1) { border-color: #ff6b6b; }
.info-card:nth-child(2) { border-color: #feca57; }
.info-card:nth-child(3) { border-color: #1dd1a1; }
.info-card:nth-child(4) { border-color: #ff9ff3; }

.info-card .info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.info-card .info-icon {
    font-size: 2.2rem;
}

.info-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
}

.info-card:nth-child(1) h3 { color: #ff6b6b; }
.info-card:nth-child(2) h3 { color: #e17055; }
.info-card:nth-child(3) h3 { color: #00b894; }
.info-card:nth-child(4) h3 { color: #e84393; }

.info-card p {
    color: #636e72;
    line-height: 1.7;
    font-size: 1rem;
}

.info-card a {
    color: #5f27cd;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

.info-card a:hover {
    color: #ff6b6b;
}

/* FAQ section */
.faq {
    position: relative;
    z-index: 5;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.faq h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #ff6b6b, #feca57, #54a0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-item {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-bottom: 1.2rem;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.faq-item:nth-child(2) { border-color: #ff6b6b; }
.faq-item:nth-child(3) { border-color: #feca57; }
.faq-item:nth-child(4) { border-color: #54a0ff; }
.faq-item:nth-child(5) { border-color: #ff9ff3; }
.faq-item:nth-child(6) { border-color: #1dd1a1; }
.faq-item:nth-child(7) { border-color: #5f27cd; }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 1.5rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.05rem;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s;
}

.faq-question:hover { color: #5f27cd; }

.faq-question .arrow {
    font-size: 1.4rem;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.open .faq-question .arrow {
    transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.3rem;
}

.faq-answer p {
    color: #636e72;
    line-height: 1.8;
    font-size: 1rem;
}

/* =============================================
   LEGAL PAGES (Privacy Policy & Terms)
   ============================================= */

.legal-content {
    position: relative;
    z-index: 5;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.legal-updated {
    text-align: center;
    color: #b2bec3;
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
}

.legal-card {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 1.8rem;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.legal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.legal-card:nth-child(2)  { border-color: #ff6b6b; }
.legal-card:nth-child(3)  { border-color: #feca57; }
.legal-card:nth-child(4)  { border-color: #54a0ff; }
.legal-card:nth-child(5)  { border-color: #ff9ff3; }
.legal-card:nth-child(6)  { border-color: #1dd1a1; }
.legal-card:nth-child(7)  { border-color: #5f27cd; }
.legal-card:nth-child(8)  { border-color: #ee5a24; }
.legal-card:nth-child(9)  { border-color: #ff6b6b; }
.legal-card:nth-child(10) { border-color: #48dbfb; }
.legal-card:nth-child(11) { border-color: #feca57; }

.legal-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.legal-card h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.legal-card p {
    color: #636e72;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
}

.legal-card p:last-child {
    margin-bottom: 0;
}

.legal-card ul {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.legal-card ul li {
    padding: 0.4rem 0;
    color: #576574;
    font-size: 1rem;
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
}

.legal-card ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: #54a0ff;
    font-weight: 900;
    font-size: 1.2rem;
}

.legal-card a {
    color: #5f27cd;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-card a:hover {
    color: #ff6b6b;
}

/* =============================================
   STATUS PAGE
   ============================================= */

/* Overall Status Banner */
.status-overview {
    position: relative;
    z-index: 5;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.status-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.status-banner.status-ok {
    background: rgba(29,209,161,0.12);
    border: 2px solid #1dd1a1;
}

.status-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #1dd1a1;
    flex-shrink: 0;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(29,209,161,0.5); }
    50% { box-shadow: 0 0 0 12px rgba(29,209,161,0); }
}

.status-banner-text h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: #00b894;
    margin-bottom: 0.2rem;
}

.status-banner-text p {
    color: #636e72;
    font-size: 1.05rem;
}

/* Service Status Cards */
.status-services {
    position: relative;
    z-index: 5;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 1.5rem;
}

.status-card {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.8rem;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.3s;
}

.status-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

.status-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.status-card-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.status-card-icon {
    font-size: 1.8rem;
}

.status-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.15rem;
    color: #333;
}

.status-badge {
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}

.badge-operational {
    background: rgba(29,209,161,0.15);
    color: #00b894;
}

.badge-degraded {
    background: rgba(254,202,87,0.2);
    color: #e17055;
}

.badge-down {
    background: rgba(255,107,107,0.15);
    color: #ff6b6b;
}

.status-bar {
    height: 6px;
    background: #ecf0f1;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.bar-fill {
    display: block;
    height: 100%;
    border-radius: 6px;
    transition: width 1s ease;
}

.bar-green  { background: linear-gradient(90deg, #1dd1a1, #00b894); }
.bar-blue   { background: linear-gradient(90deg, #54a0ff, #0984e3); }
.bar-yellow { background: linear-gradient(90deg, #feca57, #e17055); }
.bar-red    { background: linear-gradient(90deg, #ff6b6b, #ee5a24); }

.status-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #b2bec3;
}

.status-meta strong {
    color: #636e72;
}

/* Incident History */
.status-history {
    position: relative;
    z-index: 5;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.status-history h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #5f27cd, #e84393);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.incident-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.3s;
}

.incident-item:hover {
    transform: translateX(6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.incident-date {
    flex-shrink: 0;
    text-align: center;
    min-width: 70px;
}

.incident-day {
    display: block;
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    color: #5f27cd;
}

.incident-year {
    display: block;
    font-size: 0.8rem;
    color: #b2bec3;
    font-weight: 700;
}

.incident-content {
    flex: 1;
}

.incident-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
}

.incident-badge {
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
}

.incident-resolved {
    background: rgba(29,209,161,0.15);
    color: #00b894;
}

.incident-investigating {
    background: rgba(254,202,87,0.2);
    color: #e17055;
}

.incident-content h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    color: #333;
}

.incident-content p {
    color: #636e72;
    line-height: 1.7;
    font-size: 0.95rem;
}

.no-incidents {
    text-align: center;
    padding: 2rem;
    color: #b2bec3;
    font-weight: 700;
    font-size: 1rem;
}

.no-incidents-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Uptime Summary */
.uptime-summary {
    position: relative;
    z-index: 5;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.uptime-summary h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
}

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

.uptime-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.uptime-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

.uptime-value {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.uptime-label {
    font-weight: 700;
    color: #b2bec3;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.uptime-bar {
    height: 6px;
    background: #ecf0f1;
    border-radius: 6px;
    overflow: hidden;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; flex-direction: column; gap: 1rem; }
    nav ul { gap: 1rem; }
    .page-header h1 { font-size: 2.5rem; }
    .hero h1 { font-size: 2.8rem; }
    .stats { gap: 2rem; }
    .stat .number { font-size: 2.5rem; }
    .feature-row { flex-direction: column !important; text-align: center; padding: 2rem; }
    .feature-row .feat-icon { margin: 0 auto; }
    .feature-row .feat-content ul { text-align: left; }
    .comp-table { font-size: 0.85rem; }
    .comp-table thead th, .comp-table tbody td { padding: 0.7rem 0.5rem; }
    .timeline { padding-left: 2.5rem; }
    .timeline-item::before { left: -1.85rem; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .status-services { grid-template-columns: 1fr; }
    .incident-item { flex-direction: column; gap: 0.8rem; }
    .incident-date { text-align: left; }
    .uptime-grid { grid-template-columns: repeat(2, 1fr); }
}
