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

body {
    font-family: 'Inter', sans-serif;
    background: #FFFFFF;
    color: #101840;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    background: #FFFFFF;
    border-bottom: 1px solid #D8DAE5;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    width: 160px;
    height: 48px;
    background: #f0f0f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 12px;
  }

nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

nav a {
    color: #474D66;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

nav a:hover {
    color: #2952CC;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #474D66;
    margin: 5px 0;
    transition: 0.3s;
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #D8DAE5;
    padding: 20px;
    z-index: 99;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    animation: slideDown 0.3s ease;
}

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

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

.mobile-menu nav {
    flex-direction: column;
    gap: 20px;
}

.mobile-menu .login-btn {
    display: inline-block;
    text-align: center;
}

.login-btn {
    background: #2952CC;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
    border: none;
}

.login-btn:hover {
    background: #1F3D99;
}

/* Hero Section */
.hero {
    background: #FAFBFF;
    padding: 80px 0 100px;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 60px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1a1f36;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.5;
    color: #4a5568;
    margin-bottom: 48px;
}

.hero-buttons {
    display: flex;
    gap: 24px;
}

.btn-primary {
    background: #DE7548;
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #C95F3A;
}

.btn-secondary {
    background: #3366FF;
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #2952CC;
}

/* Circular Diagram */
.hero-visual {
    position: relative;
    width: 628px;
    height: 517px;
    flex-shrink: 0;
}

.circle-diagram {
    width: 100%;
    height: 100%;
}

/* Subheading */
.subheading {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #1a1f36;
    margin-top: 10px;
}

/* Mission Section */
.mission {
    padding: 80px 0;
}

.mission-content {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 80px;
}

.mission-left {
    flex: 1;
    max-width: 500px;
}

.mission-left h2 {
    font-size: 36px;
    font-weight: 600;
    color: #1a1f36;
    margin-bottom: 24px;
}

.mission-left p {
    font-size: 18px;
    line-height: 1.6;
/*            color: #2952CC;
    text-decoration: underline;*/
}

.mission-right {
    flex: 1;
    max-width: 600px;
}

.mission-right p {
    font-size: 18px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
}

.mission-right strong {
    font-weight: 600;
    color: #1a1f36;
}

.mission-video {
    max-width: 960px;
    margin: 0 auto 60px;
}

.mission-video video {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0px 12px 24px rgba(16, 24, 64, 0.12);
}

/* Outcome Cards */
.outcome-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.outcome-card {
    background: white;
    border: 1px solid #E4E7EC;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(16, 24, 64, 0.08);
}

.outcome-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
}

.icon-blue-bg {
    background: #EBF0FF;
}

.icon-green-bg {
    background: #EEF8F4;
}

.icon-yellow-bg {
    background: #FFEFD2;
}

.icon-orange-bg {
    background: #F8E3DA;
}

.outcome-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1f36;
    margin-bottom: 12px;
    line-height: 1.3;
}

.outcome-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #696F8C;
}

.blue-divider {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3366FF 0%, #2952CC 100%);
    border-radius: 2px;
}

/* Beyond Engagement Section */
.beyond-engagement {
    background: linear-gradient(135deg, #3366FF 0%, #2952CC 100%);
    padding: 60px 0;
}

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

.beyond-text {
    flex: 1;
    max-width: 560px;
}

.beyond-text h2 {
    font-size: 36px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.beyond-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.beyond-embed {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.beyond-embed iframe {
    width: 100%;
    max-width: 440px;
    min-height: 520px;
    border: 0;
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(16, 24, 64, 0.2);
}

.btn-platform {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

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

/* Happiness Circle Section */
.happiness-circle {
    padding: 80px 0;
    background: white;
}

.happiness-circle .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.happiness-circle .section-description em {
    font-style: italic;
    color: #4a5568;
}

.video-container {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(16, 24, 64, 0.12);
}

.video-placeholder {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.3s;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Features Section */
.features {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    letter-spacing: -0.02em;
    color: #101840;
    margin-bottom: 20px;
}

.section-description {
    font-size: 20px;
    line-height: 30px;
    color: #667085;
    max-width: 768px;
    margin: 0 auto;
}


.framework-section {
    padding: 80px 0;
    background: #EDF2F7;
}

.framework-content {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    align-items: flex-start;
}

.framework-left {
    flex: 1;
    max-width: 480px;
}

.framework-left h2 {
    font-size: 36px;
    font-weight: 600;
    color: #1a1f36;
    margin-bottom: 24px;
}

.framework-left p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
}

.framework-right {
    flex: 1;
    max-width: 640px;
}

.framework-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.framework-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.framework-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.framework-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.icon-pink {
    background: linear-gradient(135deg, #FFE5F1 0%, #FFD1E8 100%);
}

.icon-red {
    background: linear-gradient(135deg, #FFE8E8 0%, #FFD4D4 100%);
}

.icon-yellow {
    background: linear-gradient(135deg, #FFF4E0 0%, #FFE9C5 100%);
}

.icon-orange {
    background: linear-gradient(135deg, #FFE8E5 0%, #FFD8D1 100%);
}

.framework-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1f36;
    margin-bottom: 12px;
    line-height: 1.3;
}

.framework-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #6B7280;
}
/* 3P Triangulation Section */
.triangulation-section {
    padding: 80px 0;
    background: #F7F9FC;
}

.triangulation-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.triangulation-left {
    flex: 1;
    max-width: 520px;
}

.triangulation-left h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1a1f36;
    margin-bottom: 32px;
    line-height: 1.4;
}

.triangulation-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline {
    background: white;
    color: #1a1f36;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid #E4E7EC;
    cursor: pointer;
}

.btn-outline:hover {
    border-color: #2952CC;
    color: #2952CC;
    background: #F7F9FC;
}

.triangulation-right {
    flex: 1;
    max-width: 580px;
}

.perception-chart {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #E4E7EC;
}

.chart-placeholder {
    width: 100%;
    height: auto;
    display: block;
}

.platform-section {
    padding: 80px 0;
    background: white;
}

.platform-title {
    font-size: 36px;
    font-weight: 600;
    color: #1a1f36;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.platform-intro {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.intro-col p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.platform-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.platform-card {
    background: white;
    border: 1px solid #E4E7EC;
    border-radius: 12px;
    padding: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.platform-card-content {
    padding: 32px 24px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.platform-card-content p {
    font-size: 15px;
    line-height: 1.5;
    color: #4a5568;
}

.platform-btn {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 0 0 12px 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.3s;
    color: white;
}

.platform-btn:hover {
    opacity: 0.9;
}

.btn-orange {
    background: #DE7548;
}

.btn-teal {
    background: #4FD1A9;
}

.btn-yellow {
    background: #FFB020;
}

.btn-blue {
    background: #3366FF;
}


/* Launch Happiverse Section */
.launch-section {
    padding: 80px 0;
    background: #FAFBFF;
}

.launch-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.launch-left {
    flex: 1;
    max-width: 480px;
}

.launch-left h2 {
    font-size: 36px;
    font-weight: 600;
    color: #1a1f36;
    margin-bottom: 24px;
    line-height: 1.3;
}

.launch-left > p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 32px;
}

.launch-target h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1f36;
    margin-bottom: 12px;
}

.launch-target p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.launch-right {
    flex: 1;
    max-width: 480px;
}

.pricing-card {
    background: linear-gradient(to bottom, #E8EFFF 0%, #F5F8FF 100%);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid #D8E3FF;
}

.pricing-badge {
    background: linear-gradient(90deg, #6B9EFF 0%, #4E86FF 100%);
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 16px 16px 0 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pricing-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1f36;
    text-align: center;
    margin: 24px 0 16px;
}

.pricing-amount {
    font-size: 40px;
    font-weight: 600;
    color: #1a1f36;
    text-align: center;
    margin-bottom: 8px;
}

.pricing-subtitle {
    font-size: 16px;
    color: #4a5568;
    text-align: center;
    margin-bottom: 4px;
}

.pricing-note {
    font-size: 13px;
    color: #6B7280;
    text-align: center;
    margin-bottom: 32px;
    padding: 0 20px;
}

.pricing-includes {
    background: white;
    margin: 0 24px 24px;
    padding: 24px;
    border-radius: 12px;
}

.pricing-includes h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1f36;
    margin-bottom: 16px;
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-list li {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.includes-list li:last-child {
    margin-bottom: 0;
}

.includes-list li:before {
    content: "●";
    color: #DE7548;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: -2px;
}

.btn-schedule {
    background: #DE7548;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    width: calc(100% - 48px);
    margin: 0 24px 16px;
    transition: background 0.3s;
}

.btn-schedule:hover {
    background: #C95F3A;
}

.pricing-disclaimer {
    font-size: 11px;
    color: #6B7280;
    text-align: center;
    padding: 0 24px 24px;
    margin: 0;
}

/* Request Information Section */
.request-section {
    padding: 80px 0 100px;
    background: white;
}

.request-header {
    text-align: center;
    margin-bottom: 48px;
}

.request-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #1a1f36;
    margin-bottom: 12px;
}

.request-header p {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
}

.request-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #1a1f36;
    margin-bottom: 8px;
}

.required {
    color: #EF4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: #1a1f36;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9CA3AF;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3366FF;
    box-shadow: 0 0 0 3px rgba(51, 102, 255, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-full {
    margin-bottom: 24px;
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 32px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #3366FF;
}

.form-checkbox label {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
    cursor: pointer;
}

.privacy-link {
    color: #3366FF;
    text-decoration: underline;
    transition: color 0.3s;
}

.privacy-link:hover {
    color: #2952CC;
}

.btn-submit {
    width: 100%;
    background: #DE7548;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #C95F3A;
}

.footer {
    background: linear-gradient(135deg, #2952CC 0%, #1e3a8a 100%);
    padding: 60px 0 40px;
    color: white;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 40px;
}

.footer-logo img {
    display: block;
}

.footer-nav {
    display: flex;
    gap: 40px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.3s;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 40px 0 32px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .platform-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
.header-content nav {
        display: none;
    }

    /* Show mobile menu button */
    .mobile-menu-btn {
        display: block;
    }
/* Adjust header content */
    .header-content {
        padding: 0 20px;
    }

    /* Logo adjustments */
    .logo {
        width: 120px;
        height: 40px;
      margin-left:20px;
}

    /* Mobile menu styling */
    .mobile-menu {
        display: none;
    }

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

    .header-content {
        padding: 0 20px;
    }

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

    .hero-text h1 {
        font-size: 36px;
    }
.hero-visual {
        width: 100%;
        height: auto;
    }

    .hero-visual img {
        width: 100%;
        height: auto;
    }
    .circle-diagram {
        width: 300px;
        height: auto;
    }

    .mission-content {
        flex-direction: column;
        gap: 40px;
    }

    .outcome-cards {
        grid-template-columns: 1fr;
    }

    .beyond-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

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

    .beyond-embed iframe {
        max-width: 100%;
        min-height: 480px;
    }

    .beyond-text h2 {
        font-size: 28px;
    }

    .video-container {
        margin: 0 20px;
    }

    .framework-content {
        flex-direction: column;
        gap: 48px;
    }

    .framework-left,
    .framework-right {
        max-width: 100%;
    }

/* Launch Happiverse Section */
.launch-section {
    padding: 80px 0;
    background: #FAFBFF;
}

.launch-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.launch-left {
    flex: 1;
    max-width: 480px;
}

.launch-left h2 {
    font-size: 36px;
    font-weight: 600;
    color: #1a1f36;
    margin-bottom: 24px;
    line-height: 1.3;
}

.launch-left > p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 32px;
}

.launch-target h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1f36;
    margin-bottom: 12px;
}

.launch-target p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.launch-right {
    flex: 1;
    max-width: 480px;
}

.pricing-card {
    background: linear-gradient(to bottom, #E8EFFF 0%, #F5F8FF 100%);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid #D8E3FF;
}

.pricing-badge {
    background: linear-gradient(90deg, #6B9EFF 0%, #4E86FF 100%);
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 16px 16px 0 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pricing-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1f36;
    text-align: center;
    margin: 24px 0 16px;
}

.pricing-amount {
    font-size: 40px;
    font-weight: 600;
    color: #1a1f36;
    text-align: center;
    margin-bottom: 8px;
}

.pricing-subtitle {
    font-size: 16px;
    color: #4a5568;
    text-align: center;
    margin-bottom: 4px;
}

.pricing-note {
    font-size: 13px;
    color: #6B7280;
    text-align: center;
    margin-bottom: 32px;
    padding: 0 20px;
}

.pricing-includes {
    background: white;
    margin: 0 24px 24px;
    padding: 24px;
    border-radius: 12px;
}

.pricing-includes h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1f36;
    margin-bottom: 16px;
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-list li {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.includes-list li:last-child {
    margin-bottom: 0;
}

.includes-list li:before {
    content: "●";
    color: #DE7548;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: -2px;
}

.btn-schedule {
    background: #DE7548;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    width: calc(100% - 48px);
    margin: 0 24px 16px;
    transition: background 0.3s;
}

.btn-schedule:hover {
    background: #C95F3A;
}

.pricing-disclaimer {
    font-size: 11px;
    color: #6B7280;
    text-align: center;
    padding: 0 24px 24px;
    margin: 0;
}
.launch-content {
        flex-direction: column;
        gap: 48px;
    }

    .launch-left,
    .launch-right {
        max-width: 100%;
    } 
    .request-header h2 {
        font-size: 28px;
    }

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

    .request-form {
        padding: 0 20px;
    }
}

@media (max-width: 640px) {

	.triangulation-content {
        flex-direction: column;
        gap: 48px;
    }

    .triangulation-left,
    .triangulation-right {
        max-width: 100%;
    }

    .triangulation-left h2 {
        font-size: 28px;
    }

    .framework-cards {
        grid-template-columns: 1fr;
    }

    .framework-left h2 {
        font-size: 28px;
    }

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

    .btn-outline,
    .btn-primary {
        width: 100%;
        text-align: center;
    }

    .perception-chart {
        padding: 24px;
    }

    .platform-intro {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .platform-cards {
        grid-template-columns: 1fr;
    }

    .platform-title {
        font-size: 28px;
    }
 .launch-content {
        flex-direction: column;
        gap: 48px;
    }

    .launch-left,
    .launch-right {
        max-width: 100%;
    } 
}

/* Responsive Design */
@media (max-width: 968px) {
    .launch-content {
        flex-direction: column;
        gap: 48px;
    }

    .launch-left,
    .launch-right {
        max-width: 100%;
    }
 .launch-content {
        flex-direction: column;
        gap: 48px;
    }

    .launch-left,
    .launch-right {
        max-width: 100%;
    }
.footer-top {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-links {
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .launch-left h2 {
        font-size: 28px;
    }

    .pricing-amount {
        font-size: 32px;
    }
}




