/* CSS Variables - Color Palette from Mascot */
:root {
    --primary-blue: #4A90B8;
    --dark-blue: #2B5A7A;
    --light-blue: #7BB3D9;
    --cyan-glow: #00D4E8;
    --mascot-bg: #4c79a3;
    --dark-gray: #2C3E50;
    --light-gray: #F8F9FA;
    --white: #FFFFFF;
    --text-dar.logo-section {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.2));
}

.brand-name {
    font-family: 'Rubik', 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
} --text-light: #6C757D;
    --text-light-on-dark: rgba(255, 255, 255, 0.9);
    --text-lighter-on-dark: rgba(255, 255, 255, 0.7);
    --gradient-bg: linear-gradient(135deg, #4A90B8 0%, #2B5A7A 100%);
    --hero-gradient: linear-gradient(135deg, #4c79a3 0%, #3a5f85 100%);
    --glow-shadow: 0 0 20px rgba(0, 212, 232, 0.3);
    --card-shadow: 0 10px 30px rgba(74, 144, 184, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Rubik font for brand elements */
.brand-name,
.nav-logo-text,
.section-title {
    font-family: 'Rubik', 'Inter', sans-serif;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(76, 121, 163, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-img {
    height: 35px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

.nav-logo-text {
    font-family: 'Rubik', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-glow {
    font-size: 1.2rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light-on-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
    position: relative;
}

.nav-link:hover {
    color: var(--cyan-glow);
    background: rgba(0, 212, 232, 0.1);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-blue);
    border: 1px solid rgba(0, 212, 232, 0.2);
    border-radius: 10px;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-light-on-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-link:hover {
    background: rgba(0, 212, 232, 0.1);
    color: var(--cyan-glow);
    padding-left: 1.5rem;
}

.cta-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    color: var(--dark-blue);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(255, 255, 255, 0.2);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3), 0 0 20px rgba(0, 212, 232, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(76, 121, 163, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 16px;
    margin: 4px 0;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-nav-link:hover {
    color: var(--cyan-glow);
    background: rgba(0, 212, 232, 0.1);
}

.mobile-cta-btn {
    background: var(--cyan-glow);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.mobile-cta-btn:hover {
    background: var(--cyan-glow);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 232, 0.3);
}

/* Desktop styles - ensure mobile elements are hidden on desktop */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
        transform: translateY(-100%) !important;
    }
    
    .nav-menu {
        display: flex !important;
    }
}

/* Additional rule to ensure Get Started button is hidden on mobile */
@media (max-width: 768px) {
    .cta-btn {
        display: none !important;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--hero-gradient);
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 212, 232, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.logo-section {
    position: relative;
    margin-bottom: 2rem;
}

.brand-name {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.tagline {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-light-on-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.subtext {
    font-size: 1.2rem;
    color: var(--text-lighter-on-dark);
    margin-bottom: 3rem;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    color: var(--dark-blue);
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2), 0 0 20px rgba(0, 212, 232, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3), 0 0 30px rgba(0, 212, 232, 0.4);
    background: linear-gradient(135deg, #f0f8ff 0%, #e3f2fd 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light-on-dark);
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cyan-glow);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 212, 232, 0.3);
}

.mascot-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mascot-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(74, 144, 184, 0.3));
    animation: float 3s ease-in-out infinite;
}

.mascot-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 232, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

/* Brand Feed Section */
.brand-feed {
    padding: 5rem 0;
    background: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

.feed-container {
    max-width: 800px;
    margin: 0 auto;
}

.feed-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(74, 144, 184, 0.1);
    transition: all 0.3s ease;
}

.feed-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(74, 144, 184, 0.15);
}

.feed-date {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 1rem;
}

.feed-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.feed-text {
    flex: 1;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.feed-mascot-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--cyan-glow);
    transition: transform 0.3s ease;
    object-fit: cover;
    object-position: top;
}

.feed-mascot-img:hover {
    transform: scale(1.1);
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.step {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    max-width: 300px;
    flex: 1;
    min-width: 250px;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(74, 144, 184, 0.2);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--glow-shadow);
}

.step-icon i {
    font-size: 2rem;
    color: white;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-blue);
    margin: 0 1rem;
}

/* Use Cases Section */
.use-cases {
    padding: 5rem 0;
    background: var(--white);
}

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

.case-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(74, 144, 184, 0.1);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(74, 144, 184, 0.2);
    border-color: var(--cyan-glow);
}

.case-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--glow-shadow);
}

.case-icon i {
    font-size: 1.8rem;
    color: white;
}

.case-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.case-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(74, 144, 184, 0.2);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top;
    background: linear-gradient(135deg, #4A90B8 0%, #2B5A7A 100%);
}

.gallery-info {
    padding: 2rem;
}

.gallery-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.gallery-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.gallery-link:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 184, 0.3);
}

.gallery-link.disabled {
    background: var(--text-light);
    cursor: not-allowed;
    opacity: 0.7;
}

.gallery-link.disabled:hover {
    background: var(--text-light);
    transform: none;
    box-shadow: none;
}

.gallery-link i {
    font-size: 0.8rem;
}

/* Team Section */
.team {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, rgba(15, 15, 35, 0.95) 100%);
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.team .container {
    position: relative;
    z-index: 1;
}

.team .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
}

.team .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 232, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.team-member:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 232, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 232, 0.1);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--cyan-glow);
    position: relative;
    z-index: 2;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    position: relative;
    z-index: 2;
}

.member-name {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Rubik', sans-serif;
}

.member-role {
    color: var(--cyan-glow);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--cyan-glow);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.member-linkedin:hover {
    background: var(--white);
    color: var(--cyan-glow);
    transform: scale(1.1);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--white);
}

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

.about-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    border-radius: 15px;
}

.feature i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.feature span {
    font-weight: 500;
    color: var(--text-dark);
}

/* CTA Footer */
.cta-footer {
    padding: 5rem 0;
    background: var(--gradient-bg);
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.signup-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.email-input {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    min-width: 300px;
    outline: none;
}

.signup-btn {
    background: var(--cyan-glow);
    color: var(--dark-blue);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signup-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-brand-name {
    font-family: 'Rubik', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.footer-brand p {
    margin-top: 1rem;
    opacity: 0.8;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 300px;
}

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

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--cyan-glow);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--cyan-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Animations */
@keyframes glow {
    from {
        text-shadow: 0 0 5px var(--cyan-glow);
    }
    to {
        text-shadow: 0 0 15px var(--cyan-glow), 0 0 25px var(--cyan-glow);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .brand-name {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 2rem;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    /* Ensure logo is visible on mobile */
    .nav-logo {
        display: flex !important;
        align-items: center;
        gap: 0.5rem;
        z-index: 1001;
    }
    
    .nav-logo-text {
        font-size: 1.2rem;
        display: block !important;
    }
    
    .nav-logo-img {
        height: 32px;
        display: block !important;
    }
    
    .logo-section {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .hero-logo-img {
        height: 50px;
    }
    
    .brand-name {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.8rem;
    }
    
    .subtext {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Hide the primary Get Started button on mobile */
    .cta-buttons .btn-primary {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .signup-form {
        flex-direction: column;
        align-items: center;
    }
    
    .email-input {
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    /* Ensure logo stays visible on very small screens */
    .nav-logo {
        display: flex !important;
        align-items: center;
        gap: 0.4rem;
    }
    
    .nav-logo-text {
        font-size: 1.1rem;
        display: block !important;
    }
    
    .nav-logo-img {
        height: 28px;
        display: block !important;
    }
    
    .hero-logo-img {
        height: 40px;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .feed-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* Hide the primary Get Started button on small mobile screens too */
    .cta-buttons .btn-primary {
        display: none;
    }
}

/* New Section Styles */

/* Sub-tagline for hero */
.sub-tagline {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-lighter-on-dark);
    margin-bottom: 1rem;
    font-family: 'Rubik', sans-serif;
}

/* Third CTA button */
.btn-tertiary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
}

.btn-tertiary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Value Bullets Section */
.value-bullets {
    padding: 80px 0;
    background: var(--light-gray);
}

.bullets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.bullet-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.bullet-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 144, 184, 0.15);
}

.bullet-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.bullet-icon i {
    font-size: 24px;
    color: var(--white);
}

.bullet-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'Rubik', sans-serif;
}

.bullet-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Product Snapshot Section */
.product-snapshot {
    padding: 100px 0;
    background: var(--white);
}

.snapshot-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.snapshot-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    line-height: 1.2;
}

.snapshot-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    color: var(--primary-blue);
    font-size: 20px;
    width: 24px;
}

.feature-item span {
    font-weight: 600;
    color: var(--text-dark);
}

.snapshot-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-mockup {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.dashboard-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(74, 144, 184, 0.2);
}

/* Hero Features Section */
.hero-features {
    padding: 100px 0;
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 144, 184, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 32px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-family: 'Rubik', sans-serif;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: var(--white);
}

.trust-strip {
    text-align: center;
    margin-bottom: 60px;
}

.trust-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.client-logo {
    padding: 15px 25px;
    background: var(--light-gray);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

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

.testimonial {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 12px;
    position: relative;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Demo Form Updates */
.demo-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.form-row:last-of-type {
    grid-template-columns: 1fr;
}

.form-input,
.form-select {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-select {
    cursor: pointer;
}

.form-select option {
    background: var(--dark-blue);
    color: var(--white);
}

.demo-btn {
    width: 100%;
    padding: 15px;
    background: var(--white);
    color: var(--primary-blue);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.demo-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .bullets-grid {
        grid-template-columns: 1fr;
    }
    
    .snapshot-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .client-logos {
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .sub-tagline {
        font-size: 1.2rem;
    }
    
    .snapshot-text h2 {
        font-size: 2rem;
    }
    
    .social-links {
        gap: 1rem;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .member-image {
        width: 100px;
        height: 100px;
    }
    
    .member-name {
        font-size: 1.2rem;
    }
}
