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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d1b2d;
    background-color: #fffbfb;
    overflow-x: hidden;
}

/* Headings use Merriweather */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 251, 251, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 182, 193, 0.1);
}

.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.5rem;
}

.nav-logo i {
    color: #8b5cf6;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.nav-logo:hover i {
    color: #7c3aed;
    transform: scale(1.1);
}

.nav-logo h2 {
    color: #e91e63;
    font-weight: 600;
    font-size: 1.8rem;
    margin: 0;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #2d1b2d;
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.nav-menu a:hover {
    color: #e91e63;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1e293b;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e9 50%, #fce4ec 100%);
    display: flex;
    align-items: center;
    color: #2d1b2d !important;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(233, 30, 99, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 182, 193, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2d1b2d;
    font-family: 'Inter', sans-serif;
    letter-spacing: -2px;
    line-height: 1.1;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 0.8s ease-out forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.typewriter-text {
    display: inline-block;
}

.typewriter-text .cursor {
    display: inline-block;
    color: #e91e63;
    font-weight: 300;
    animation: blink 1s infinite;
    margin-left: 3px;
    vertical-align: baseline;
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

.hero-tagline {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #e91e63;
    line-height: 1.3;
    letter-spacing: -0.5px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

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

.hero-content h2 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #6b4c6b;
    line-height: 1.7;
    max-width: 90%;
}

.hero-content h3 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    color: #fff;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    color: #6b4c6b;
    max-width: 90%;
}

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

.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #e91e63;
    color: white;
    border: 2px solid #e91e63;
}

.btn-primary:hover {
    background: #c2185b;
    border-color: #c2185b;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #e91e63;
    border: 2px solid #e91e63;
}

.btn-secondary:hover {
    background: #e91e63;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.iphone-mockup-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: floatUp 1s ease-out 0.5s both;
}

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

.iphone-mockup-hero .iphone-frame {
    width: 320px;
    height: 640px;
    background: #1a1a1a;
    border-radius: 55px;
    padding: 15px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4),
                0 0 0 10px #2a2a2a,
                0 0 0 15px #1a1a1a,
                0 20px 60px rgba(233, 30, 99, 0.3);
    position: relative;
    transition: transform 0.3s ease;
}

.iphone-mockup-hero .iphone-frame:hover {
    transform: translateY(-10px) scale(1.02);
}

.iphone-mockup-hero .iphone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 30px;
    background: #1a1a1a;
    border-radius: 0 0 25px 25px;
    z-index: 10;
}

.iphone-mockup-hero .iphone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}

.iphone-mockup-hero .iphone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 30px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 5;
}

.iphone-mockup-hero .iphone-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e9 100%);
    padding: 50px 25px 25px;
    overflow-y: auto;
}

.iphone-mockup-hero .app-preview {
    height: 100%;
}

.iphone-mockup-hero .app-header {
    position: relative;
    margin-bottom: 2rem;
    height: 140px;
    border-radius: 24px;
    overflow: hidden;
}

.iphone-mockup-hero .app-header-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #e91e63, #f06292);
}

.iphone-mockup-hero .app-header h4 {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    padding: 2.5rem 2rem;
    margin: 0;
    text-align: center;
}

.iphone-mockup-hero .app-body {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.iphone-mockup-hero .app-card {
    background: white;
    border-radius: 20px;
    padding: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.12);
}

.iphone-mockup-hero .app-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-radius: 16px;
    flex-shrink: 0;
}

.iphone-mockup-hero .app-text {
    flex: 1;
}

.iphone-mockup-hero .app-line {
    height: 14px;
    background: #e2e8f0;
    border-radius: 7px;
    margin-bottom: 0.6rem;
    width: 100%;
}

.iphone-mockup-hero .app-line.short {
    width: 65%;
    height: 12px;
}

/* Vision Section */
.vision {
    padding: 6rem 0;
    background: #ffffff;
}

.vision h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #2d1b2d;
    font-weight: 600;
    letter-spacing: -1px;
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
}

.vision-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #6b4c6b;
    text-align: center;
    font-weight: 400;
}

/* Protection Pillars Section */
.pillars {
    padding: 6rem 0;
    background: #fffbfb;
}

.pillars h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #2d1b2d;
    font-weight: 600;
    letter-spacing: -1px;
}

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

.pillar-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 2px 20px rgba(233, 30, 99, 0.08);
    border: 1px solid rgba(233, 30, 99, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e91e63, #f06292);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.15);
    border-color: rgba(233, 30, 99, 0.2);
}

.pillar-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.25);
}

.pillar-icon i {
    font-size: 1.5rem;
    color: white;
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d1b2d;
    font-weight: 600;
}

.pillar-card ul {
    list-style: none;
}

.pillar-card li {
    padding: 0.5rem 0;
    color: #6b4c6b;
    position: relative;
    padding-left: 1.5rem;
}

.pillar-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e9 50%, #fce4ec 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(233, 30, 99, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 182, 193, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.pricing h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2d1b2d;
    font-weight: 600;
    letter-spacing: -1px;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6b4c6b;
    margin-bottom: 4rem;
}

.pricing-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 30px rgba(233, 30, 99, 0.1);
    border: 2px solid rgba(233, 30, 99, 0.1);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.2);
    border-color: rgba(233, 30, 99, 0.3);
}

.pricing-card.featured {
    border-color: #e91e63;
    border-width: 3px;
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.25);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: #2d1b2d;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #e91e63;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: #6b4c6b;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #6b4c6b;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.pricing-features li i {
    color: #e91e63;
    font-size: 0.9rem;
}

.pricing-btn {
    width: 100%;
    padding: 1rem 2rem;
    border: 2px solid #e91e63;
    background: transparent;
    color: #e91e63;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.pricing-btn:hover {
    background: #e91e63;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.pricing-btn.primary {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    border: none;
}

.pricing-btn.primary:hover {
    background: linear-gradient(135deg, #c2185b, #e91e63);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

/* iPhone Mockup */
.iphone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.iphone-frame {
    width: 300px;
    height: 600px;
    background: #1a1a1a;
    border-radius: 50px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 0 8px #2a2a2a,
                0 0 0 12px #1a1a1a;
    position: relative;
}

.iphone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 38px;
    overflow: hidden;
    position: relative;
}

.iphone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 18px 18px;
    z-index: 5;
}

.iphone-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e9 100%);
    padding: 40px 20px 20px;
    overflow-y: auto;
}

.app-preview {
    height: 100%;
}

.app-header {
    position: relative;
    margin-bottom: 2rem;
    height: 120px;
    border-radius: 20px;
    overflow: hidden;
}

.app-header-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #e91e63, #f06292);
}

.app-header h4 {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 2rem 1.5rem;
    margin: 0;
    text-align: center;
}

.app-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.1);
}

.app-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-radius: 12px;
    flex-shrink: 0;
}

.app-text {
    flex: 1;
}

.app-line {
    height: 12px;
    background: #e2e8f0;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    width: 100%;
}

.app-line.short {
    width: 60%;
    height: 10px;
}

/* Partners Section */
.partners {
    padding: 6rem 0;
    background: #ffffff;
}

.partners h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #2d1b2d;
    font-weight: 600;
    letter-spacing: -1px;
}

.partners-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.partners-intro h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d1b2d;
    font-weight: 600;
}

.partners-intro ul {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.partners-intro li {
    padding: 0.75rem 0;
    color: #6b4c6b;
    position: relative;
    padding-left: 2rem;
    font-size: 1.05rem;
}

.partners-intro li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: bold;
    font-size: 1.2rem;
}

.partnership-opportunities h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #2d1b2d;
    font-weight: 600;
}

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

.opportunity-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(233, 30, 99, 0.08);
    border: 1px solid rgba(233, 30, 99, 0.1);
    transition: all 0.4s ease;
}

.opportunity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.15);
    border-color: rgba(233, 30, 99, 0.2);
}

.opportunity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.25);
}

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

.opportunity-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d1b2d;
    font-weight: 600;
}

.opportunity-card p {
    color: #6b4c6b;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #fffbfb;
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #2d1b2d;
    font-weight: 600;
    letter-spacing: -1px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d1b2d;
    font-weight: 600;
}

.contact-info p {
    color: #6b4c6b;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #6b4c6b;
    font-size: 1.05rem;
}

.contact-method i {
    color: #e91e63;
    font-size: 1.3rem;
}

.forms-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-form-section h4 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    color: #1e293b;
}



.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px;
    border: 2px solid rgba(233, 30, 99, 0.15);
    border-radius: 12px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.contact-form button {
    margin-top: 1rem;
}

.emailoctopus-form {
    width: 100%;
    max-width: 100%;
}

.emailoctopus-form-container {
    width: 100%;
}

/* Style EmailOctopus embedded form */
.emailoctopus-form iframe {
    width: 100% !important;
    max-width: 100% !important;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d1b2d 0%, #4a2c4a 100%);
    color: white;
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f06292;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(233, 30, 99, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(233, 30, 99, 0.3);
}

.social-links a:hover {
    background: #e91e63;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(233, 30, 99, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .iphone-mockup {
        order: -1;
    }
    
    .iphone-frame {
        width: 250px;
        height: 500px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fffbfb;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(233, 30, 99, 0.1);
        padding: 2rem 0;
        border-top: 1px solid rgba(233, 30, 99, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-graphic {
        width: 200px;
        height: 200px;
    }
    
    .hero-graphic i {
        font-size: 4rem;
    }
    
    .elephant-image {
        width: 150px;
        height: 150px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .forms-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .opportunities-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .pricing-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .iphone-frame {
        width: 220px;
        height: 440px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    
    .iphone-mockup-hero .iphone-frame {
        width: 220px;
        height: 440px;
    }
    
    .iphone-mockup-hero .iphone-frame::before {
        width: 120px;
        height: 20px;
    }
    
    .iphone-mockup-hero .iphone-notch {
        width: 90px;
        height: 20px;
    }
    
    .iphone-mockup-hero .app-header {
        height: 90px;
    }
    
    .iphone-mockup-hero .app-header h4 {
        font-size: 1.4rem;
        padding: 1.5rem 1rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .pillar-card,
    .opportunity-card {
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

