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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6em;
    color: #656565;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 600;
    color: #353535;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 3px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 12px;
}

.btn-primary {
    background: #ef5523;
    color: #fff;
    border-color: #ef5523;
}

.btn-primary:hover {
    background: #d94415;
    border-color: #d94415;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
    background: #fff;
    color: #353535;
    border-color: #fff;
}

.btn-outline-dark {
    background: transparent;
    color: #ef5523;
    border-color: #ef5523;
}

.btn-outline-dark:hover {
    background: #ef5523;
    color: #fff;
}

.btn-accent {
    background: #ef5523;
    color: #fff;
    border-color: #ef5523;
}

.btn-accent:hover {
    background: #d94415;
    border-color: #d94415;
}

/* ===== Top Bar ===== */
.top-bar {
    background: #252525;
    color: #bbb;
    font-size: 12px;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar a {
    color: #ef5523;
    font-weight: 600;
}

.top-bar a:hover {
    color: #ff7043;
}

/* ===== Navbar ===== */
.navbar {
    background: #fff;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e6e6e6;
    transition: all 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #353535;
    font-size: 1.4rem;
    font-weight: 700;
}

.logo-icon {
    background: #ef5523;
    color: #fff;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-text {
    font-family: 'Open Sans', sans-serif;
    color: #353535;
}

.logo-text sup {
    font-size: 0.5em;
    color: #ef5523;
}

.nav-tagline {
    color: #ef5523;
    font-weight: 600;
    font-size: 13px;
}

.nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-link {
    color: #353535;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 16px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.nav-link:hover {
    color: #ef5523;
}

.nav-link.active {
    color: #ef5523;
}

.nav-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.logo-img {
    height: 36px;
    width: auto;
}

.nav-right .btn-outline {
    color: #353535;
    border-color: #e6e6e6;
}

.nav-right .btn-outline:hover {
    background: #f5f5f5;
    color: #353535;
    border-color: #ccc;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #353535;
    font-size: 1.4rem;
    cursor: pointer;
}

/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    height: 80vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 500px;
    padding: 0 40px;
}

.slide-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 300;
    opacity: 0.9;
}

.slide-image {
    position: relative;
    z-index: 1;
    padding: 0 40px;
}

.slide-image img {
    max-height: 350px;
    width: auto;
    max-width: 100%;
}

.device-mockup {
    width: 280px;
    height: 280px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.12);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #ef5523;
    transform: scale(1.2);
}

/* ===== Tagline Section ===== */
.tagline-section {
    background: #353535;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.tagline-section h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    color: #fff;
}

/* ===== Services Section ===== */
.services-section {
    padding: 70px 0;
    background: #fcfcfc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 4px;
    padding: 35px 24px;
    text-align: center;
    border: 1px solid #e6e6e6;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-color: #ddd;
}

.service-img {
    margin-bottom: 1.2rem;
    overflow: hidden;
    border-radius: 4px;
}

.service-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.service-card h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #353535;
}

.service-card p {
    font-size: 14px;
    color: #656565;
    line-height: 1.6;
    font-weight: 300;
}

/* ===== DOTs Section ===== */
.dots-section {
    padding: 70px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 3rem;
    color: #353535;
    font-weight: 300;
}

.dots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dot-card {
    background: #fcfcfc;
    border-radius: 4px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e6e6e6;
}

.dot-card:hover {
    border-color: #ef5523;
    transform: translateY(-4px);
}

.dot-letter {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ef5523;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.dot-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #353535;
}

.dot-card ul {
    text-align: left;
    display: inline-block;
}

.dot-card li {
    padding: 6px 0;
    color: #656565;
    font-size: 14px;
}

.dot-card li i {
    color: #72cd94;
    margin-right: 8px;
    font-size: 0.85rem;
}

/* ===== Stats Section ===== */
.stats-section {
    background: #252525;
    color: #fff;
    padding: 70px 0;
    text-align: center;
}

.stats-headline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    line-height: 1.5;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    color: #ef5523;
}

.stat-label {
    font-size: 14px;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Believers Section ===== */
.believers-section {
    padding: 70px 0;
    background: #fcfcfc;
}

.believers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
}

.believer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.brand-placeholder {
    background: #f0f0f0;
    color: #999;
    padding: 20px 30px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 160px;
    text-align: center;
    border: 1px solid #e6e6e6;
}

.believer-logo img {
    max-width: 160px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.believer-logo img:hover {
    opacity: 1;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 70px 0;
    background: #fff;
}

.contact-section h3 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: #353535;
    font-weight: 300;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #e6e6e6;
    border-radius: 3px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    transition: border-color 0.3s;
    background: #fff;
    color: #656565;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ef5523;
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 12px;
    color: #999;
}

/* ===== Footer ===== */
.footer {
    background: #111;
    color: #bbb;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h5 {
    color: #eee;
    font-size: 14px;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.footer-col a {
    color: #919191;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #eee;
}

.footer-col p {
    font-size: 13px;
    color: #919191;
}

.footer-col p i {
    color: #ef5523;
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 12px;
    color: #5d5d5d;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #919191;
    transition: all 0.3s;
    font-size: 13px;
}

.social-links a:hover {
    background: #ef5523;
    color: #fff;
}

/* ===== Features Page Specific ===== */

/* Modules */
.modules-section {
    padding: 70px 0;
    background: #fcfcfc;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.module-card {
    background: #fff;
    border-radius: 4px;
    padding: 0;
    text-align: center;
    border: 1px solid #e6e6e6;
    transition: all 0.3s;
    overflow: hidden;
}

.module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.module-img {
    overflow: hidden;
}

.module-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.module-icon {
    color: #ef5523;
    margin-bottom: 1.5rem;
}

.module-card h4 {
    font-size: 1.1rem;
    margin: 1.2rem 0 0.8rem;
    color: #353535;
    padding: 0 20px;
}

.module-card p {
    font-size: 14px;
    color: #656565;
    line-height: 1.6;
    font-weight: 300;
    padding: 0 20px 25px;
}

/* Features Detail */
.features-detail-section {
    padding: 70px 0;
    background: #fff;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
    padding: 35px;
    border-radius: 4px;
    background: #fcfcfc;
    border: 1px solid #e6e6e6;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-text h4 {
    font-size: 1.2rem;
    color: #353535;
    margin-bottom: 1rem;
}

.feature-text h4 i {
    color: #ef5523;
    margin-right: 10px;
}

.feature-text p {
    color: #656565;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-weight: 300;
}

.feature-text ul {
    padding-left: 0;
}

.feature-text li {
    padding: 4px 0;
    color: #656565;
    font-size: 14px;
    position: relative;
    padding-left: 18px;
    font-weight: 300;
}

.feature-text li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ef5523;
    font-weight: bold;
}

.feature-visual {
    flex: 0 0 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.feature-icon-large {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    background: #ef5523;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
}

/* Extra Features Grid */
.extra-features-section {
    padding: 70px 0;
    background: #fcfcfc;
}

.extra-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.extra-feature-card {
    background: #fff;
    border-radius: 4px;
    padding: 30px;
    text-align: center;
    border: 1px solid #e6e6e6;
    transition: all 0.3s;
}

.extra-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.extra-feature-img {
    margin-bottom: 1rem;
}

.extra-feature-img img {
    width: 100%;
    height: 140px;
    object-fit: contain;
}

.extra-feature-card i {
    color: #ef5523;
    margin-bottom: 1rem;
}

.extra-feature-card h5 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #353535;
}

.extra-feature-card p {
    font-size: 13px;
    color: #656565;
    line-height: 1.6;
    font-weight: 300;
}

/* Timeline */
.timeline-section {
    padding: 70px 0;
    background: #252525;
    color: #fff;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.timeline-phase {
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.08);
}

.phase-header {
    font-weight: 700;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 3px;
    text-align: center;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phase-header.pre {
    background: #72cd94;
}

.phase-header.on {
    background: #ef5523;
}

.phase-header.post {
    background: #ff4b5a;
}

.timeline-phase li {
    padding: 8px 0;
    font-size: 14px;
    color: #bbb;
    font-weight: 300;
}

.timeline-phase li i {
    margin-right: 10px;
    color: #72cd94;
}

/* Use Cases */
.usecases-section {
    padding: 70px 0;
    background: #fff;
}

.usecases-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.usecase-tag {
    background: #f5f5f5;
    padding: 10px 22px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 400;
    color: #656565;
    transition: all 0.3s;
    cursor: default;
    border: 1px solid #e6e6e6;
}

.usecase-tag:hover {
    background: #ef5523;
    color: #fff;
    border-color: #ef5523;
}

.usecase-tag i {
    margin-right: 8px;
    color: #ef5523;
}

.usecase-tag:hover i {
    color: #fff;
}

/* ===== About Us Page ===== */

/* About Hero */
.about-hero {
    position: relative;
    height: 360px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #252525;
    z-index: 0;
}

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

.about-hero-content {
    text-align: center;
    color: #fff;
}

.about-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #fff;
}

.about-hero-sub {
    font-size: 1.1rem;
    color: #bbb;
    font-weight: 300;
}

/* Who We Are */
.about-who {
    padding: 80px 0;
    background: #fff;
}

.about-who-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-who-text h2 {
    font-size: 1.8rem;
    color: #353535;
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 300;
}

.about-who-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #ef5523;
    margin-top: 12px;
}

.about-who-text p {
    color: #656565;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 15px;
    font-weight: 300;
}

.about-visual-card {
    width: 260px;
    height: 260px;
    background: #ef5523;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.85);
    gap: 16px;
    margin: 0 auto;
}

.about-visual-card span {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Key Numbers */
.about-numbers {
    padding: 70px 0;
    background: #fcfcfc;
}

.about-numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.about-number-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #e6e6e6;
    transition: transform 0.3s;
}

.about-number-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.about-number-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ef5523;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
}

.about-number-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #353535;
    margin-bottom: 0.5rem;
}

.about-number-label {
    font-size: 13px;
    color: #999;
    font-weight: 400;
}

/* Solutions */
.about-solutions {
    padding: 80px 0;
    background: #fff;
}

.about-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-solution-card {
    padding: 35px 28px;
    border-radius: 4px;
    background: #fcfcfc;
    border: 1px solid #e6e6e6;
    transition: all 0.3s;
}

.about-solution-card:hover {
    border-color: #ef5523;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.solution-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 4px;
    background: #ef5523;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-solution-card h4 {
    font-size: 1.05rem;
    color: #353535;
    margin-bottom: 1rem;
}

.about-solution-card p {
    font-size: 14px;
    color: #656565;
    line-height: 1.7;
    font-weight: 300;
}

/* Technology */
.about-tech {
    padding: 80px 0;
    background: #252525;
    color: #fff;
}

.section-title-light {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 3rem;
    color: #eee;
    font-weight: 300;
}

.about-tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-tech-item {
    text-align: center;
    padding: 28px 20px;
    background: rgba(255,255,255,0.04);
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s;
}

.about-tech-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.tech-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ef5523;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.1rem;
    color: #fff;
}

.about-tech-item h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #eee;
}

.about-tech-item p {
    font-size: 13px;
    color: #bbb;
    line-height: 1.6;
    font-weight: 300;
}

/* Milestones */
.about-milestones {
    padding: 80px 0;
    background: #fff;
}

.milestones-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 60px;
}

.milestones-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e6e6e6;
}

.milestone {
    position: relative;
    margin-bottom: 35px;
    padding: 22px 28px;
    background: #fcfcfc;
    border-radius: 4px;
    border: 1px solid #e6e6e6;
    transition: all 0.3s;
}

.milestone:hover {
    border-color: #ef5523;
    transform: translateX(4px);
}

.milestone::before {
    content: '';
    position: absolute;
    left: -48px;
    top: 28px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ef5523;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #ef5523;
}

.milestone-year {
    position: absolute;
    left: -110px;
    top: 22px;
    font-weight: 700;
    font-size: 14px;
    color: #ef5523;
    width: 50px;
    text-align: right;
}

.milestone-content h5 {
    font-size: 1rem;
    color: #353535;
    margin-bottom: 0.4rem;
}

.milestone-content p {
    font-size: 14px;
    color: #656565;
    line-height: 1.6;
    font-weight: 300;
}

/* CTA */
.about-cta {
    padding: 70px 0;
    background: #ef5523;
    color: #fff;
    text-align: center;
}

.about-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #fff;
    font-weight: 600;
}

.about-cta p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-weight: 300;
}

.about-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta .btn-outline {
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}

.about-cta .btn-outline:hover {
    background: #fff;
    color: #ef5523;
    border-color: #fff;
}

.about-cta .btn-accent {
    background: #353535;
    border-color: #353535;
}

.about-cta .btn-accent:hover {
    background: #252525;
    border-color: #252525;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .believers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .hero-slider {
        height: 60vh;
    }

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .feature-visual {
        flex: 0 0 auto;
    }

    .extra-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-tagline,
    .nav-links {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-right.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        flex-direction: column;
        gap: 12px;
        border-bottom: 1px solid #e6e6e6;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        gap: 4px;
        z-index: 100;
        border-bottom: 1px solid #e6e6e6;
    }

    .hero-slider {
        height: auto;
        min-height: 400px;
    }

    .slide {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

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

    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slide-image {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .dots-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .believers-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .tagline-section h3 {
        font-size: 1.2rem;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .timeline-grid {
        grid-template-columns: 1fr;
    }

    .extra-features-grid {
        grid-template-columns: 1fr;
    }

    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }

    /* About page responsive */
    .about-hero {
        height: 260px;
    }

    .about-hero-content h1 {
        font-size: 2rem;
    }

    .about-who-grid {
        grid-template-columns: 1fr;
    }

    .about-who-visual {
        display: none;
    }

    .about-numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-solutions-grid {
        grid-template-columns: 1fr;
    }

    .about-tech-grid {
        grid-template-columns: 1fr;
    }

    .milestones-timeline {
        padding-left: 40px;
    }

    .milestone-year {
        position: static;
        text-align: left;
        margin-bottom: 6px;
        width: auto;
    }

    .milestone::before {
        left: -28px;
    }

    .milestones-timeline::before {
        left: 4px;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2.2rem;
    }

    .believers-grid {
        grid-template-columns: 1fr;
    }

    .brand-placeholder {
        min-width: auto;
    }

    .about-numbers-grid {
        grid-template-columns: 1fr;
    }
}
