
:root {
    --black: #0a0a0a;
    --black-soft: #111111;
    --black-card: #161616;
    --black-muted: #1c1c1c;
    --gray-dark: #2a2a2a;
    --gray-mid: #888888;
    --gray-light: #cccccc;
    --white: #ffffff;
    --white-soft: #f5f5f5;
    --white-muted: #e8e8e8;
    --red: #dc2626;
    --red-bright: #ef4444;
    --red-dark: #b91c1c;
    --red-deep: #991b1b;
    --gradient-primary: linear-gradient(135deg, #b91c1c 0%, #dc2626 50%, #ef4444 100%);
    --gradient-hero: linear-gradient(160deg, #0a0a0a 0%, #111111 30%, #1a1a1a 60%, #0d0d0d 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.35);
    --shadow-red: 0 4px 25px rgba(220, 38, 38, 0.35);
    --shadow-red-lg: 0 8px 40px rgba(220, 38, 38, 0.45);
    --radius: 16px;
    --radius-lg: 24px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white-soft);
    color: var(--black-soft);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== Background Orbs ===== */
.bg-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.25;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--red);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--red-dark);
    bottom: 20%;
    left: -10%;
    animation-delay: -7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: #333;
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 1.15rem;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.03);
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    box-shadow: var(--shadow-red);
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: rotate(-8deg) scale(1.08);
    box-shadow: var(--shadow-red-lg);
}

.logo-icon.small {
    width: 36px;
    height: 36px;
    font-size: 1rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--red-bright);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-cta {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    box-shadow: var(--shadow-red);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-red-lg);
}

.nav-cta::after {
    display: none;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(220, 38, 38, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 38, 38, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(220, 38, 38, 0.4);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 28px;
    animation: fadeInDown 0.8s ease;
}

.hero-badge i {
    color: var(--red-bright);
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.gradient-text {
    background: linear-gradient(135deg, #ef4444, #dc2626, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: var(--transition);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-red-lg);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(220, 38, 38, 0.15);
    border-color: var(--red-bright);
    transform: translateY(-3px);
}

.btn-gmail {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-red);
    width: auto;
    justify-content: center;
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-gmail:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-red-lg);
}

.btn-gmail i {
    transition: var(--transition);
}

.btn-gmail:hover i {
    transform: translateX(4px) translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--red-bright);
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--red-bright);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.12);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 1.2rem;
    transition: var(--transition);
}

.hero-scroll a:hover {
    color: var(--red-bright);
}

/* ===== Home Showcase (picture section) ===== */
.home-showcase {
    background: var(--black);
    padding: 100px 24px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.showcase-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.showcase-text {
    color: var(--white);
}

.showcase-text .section-tag {
    margin-bottom: 18px;
}

.showcase-text h2 {
    font-size: clamp(1.7rem, 3.4vw, 2.3rem);
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.25;
}

.showcase-text > p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 28px;
}

.showcase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.showcase-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.showcase-list li i {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 8px;
    background: rgba(220, 38, 38, 0.15);
    color: var(--red-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-top: 2px;
}

.showcase-visual {
    position: relative;
}

.showcase-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 4 / 3.1;
}

.showcase-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.showcase-image-wrap:hover img {
    transform: scale(1.06);
}

.showcase-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

.showcase-badge {
    position: absolute;
    bottom: 22px;
    left: 22px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 38, 38, 0.4);
    padding: 14px 20px;
    border-radius: 14px;
}

.showcase-badge i {
    font-size: 1.4rem;
    color: var(--red-bright);
}

.showcase-badge strong {
    display: block;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
}

.showcase-badge span {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    margin-top: 2px;
}

.showcase-ring {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 90px;
    height: 90px;
    border: 2px solid rgba(220, 38, 38, 0.35);
    border-radius: 50%;
    z-index: 0;
}

/* ===== Sections ===== */
.section {
    padding: 100px 24px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: var(--black-muted);
    color: var(--red-bright);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid rgba(220, 38, 38, 0.25);
}

.section-tag.light {
    background: rgba(220, 38, 38, 0.12);
    color: var(--red-bright);
    border-color: rgba(220, 38, 38, 0.3);
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
}

.features .section-header h2 {
    color: var(--white);
}

.section-desc {
    color: var(--gray-mid);
    font-size: 1.05rem;
}

.section-desc.light {
    color: rgba(255, 255, 255, 0.6);
}

/* ===== About ===== */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--white-muted);
    transition: var(--transition);
    text-align: center;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red);
}

.about-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    color: var(--red);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.2px;
    opacity: 0;
    transform: translateY(6px);
    transition: var(--transition);
}

.about-card:hover .about-cta {
    opacity: 1;
    transform: translateY(0);
}

.about-cta i {
    transition: var(--transition);
    font-size: 0.8rem;
}

.about-card:hover .about-cta i {
    transform: translateX(4px);
}

.about-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--transition);
}

.about-card:hover .about-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-red);
}

.about-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.about-card p {
    color: var(--gray-mid);
    line-height: 1.7;
}

/* ===== Services Cards ===== */
.services {
    background: linear-gradient(180deg, var(--white-soft) 0%, var(--white) 100%);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--white-muted);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(220, 38, 38, 0.3);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--black-muted);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--red-bright);
    margin-bottom: 20px;
    transition: var(--transition);
}

.card:hover .card-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
}

.card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.card p {
    color: var(--gray-mid);
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.04), rgba(0, 0, 0, 0.03));
    transition: var(--transition);
}

.card:hover .card-hover-line {
    height: 100%;
    z-index: -1;
}

/* ===== Features ===== */
.features {
    background: var(--gradient-hero);
    color: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 36px 28px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(220, 38, 38, 0.1);
    transform: translateY(-6px);
    border-color: rgba(220, 38, 38, 0.45);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.3rem;
    color: var(--white);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: scale(1.15);
    box-shadow: var(--shadow-red);
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.features-quote {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    font-style: italic;
    line-height: 1.8;
}

.contact {
    background: var(--white-soft);
}
.contact-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-logo{
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.contact-logo-img{
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(0,0,0,.2);
}
.contact-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
    flex-wrap: wrap;
}

.contact-logo-badge {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-red-lg);
    position: relative;
    transition: var(--transition);
    margin: 0 auto;
}

.contact-logo-badge::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(220, 38, 38, 0.25);
}

.contact-logo:hover .contact-logo-badge {
    transform: rotate(-6deg) scale(1.06);
}

.contact-logo-badge i {
    font-size: 2.3rem;
    color: var(--white);
}

.contact-logo-name{
    margin-top:18px;
    font-size:2rem;
    font-weight:800;
    color:var(--black);
    white-space:nowrap;
    text-transform:uppercase;
    letter-spacing:2px;
}
.contact-logo-tag {
    margin-top: 4px;
    font-size: 0.8rem;
    color: var(--gray-mid);
    letter-spacing: 0.5px;
}

.contact-info {
    text-align: left;
    flex: 1;
    padding-left: 80px;
     
}

.contact-info h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--gray-mid);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--white-muted);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-md);
    transform: translateX(6px);
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--black-muted);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-bright);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-item-icon {
    background: var(--gradient-primary);
    color: var(--white);
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-mid);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    display: block;
    font-weight: 600;
    color: var(--black);
    font-size: 0.95rem;
}

.contact-email-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.email-note {
    font-size: 0.82rem;
    color: var(--gray-mid);
}

.email-note i {
    margin-right: 4px;
    color: var(--red);
}

/* ===== Footer ===== */
.footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.65);
    padding: 48px 24px;
    position: relative;
    z-index: 1;
    border-top: 2px solid var(--red-dark);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-bright);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: var(--shadow-red);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-red-lg);
}

/* ===== Scroll Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {

.hamburger {
    display: flex;
}

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    padding: 40px;
}

.nav-links.open {
    right: 0;
}

.nav-link {
    font-size: 1.05rem;
    width: 100%;
    text-align: center;
}

.hero {
    padding: 100px 20px 60px;
}

.hero-stats {
    gap: 20px;
}

.stat-divider {
    display: none;
}

.stat-number {
    font-size: 2rem;
}

.section {
    padding: 70px 20px;
}

.cards {
    grid-template-columns: 1fr;
}

.about-grid {
    grid-template-columns: 1fr;
}

.hero-buttons {
    flex-direction: column;
    align-items: center;
}

.btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
}

.btn-gmail {
    width: 100%;
    max-width: 320px;
}

.back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
}

.home-showcase {
    padding: 70px 20px;
}

.showcase-grid {
    grid-template-columns: 1fr;
    gap: 40px;
}

.showcase-visual {
    order: -1;
}

.showcase-ring {
    display: none;
}

.detail-hero {
    padding: 130px 20px 70px;
}

.detail-hero h1 {
    font-size: 2rem;
}

/* ---------- UPDATED ---------- */

/* ==========================
   DETAIL PAGE - MOBILE
========================== */

.detail-split,
.detail-split-inner{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:30px;
    padding:20px 0;
}

.detail-split-text{
    width:100%;
    order:2;
    text-align:left;
}

.detail-split-visual{
    width:100%;
    order:1;
}

.detail-split-visual img{
    width:100%;
    max-width:100%;
    height:260px;
    object-fit:cover;
    border-radius:18px;
    display:block;
    box-shadow:0 10px 25px rgba(0,0,0,.18);
}

.detail-split-text .section-tag{
    display:inline-block;
    font-size:.82rem;
    margin-bottom:12px;
}

.detail-split-text h2{
    font-size:1.65rem;
    line-height:1.35;
    margin-bottom:18px;
}

.detail-split-text p{
    font-size:1rem;
    line-height:1.9;
    margin-bottom:18px;
    color:#d8d8d8;
}

.detail-split.alt{
    margin-top:40px;
}

/* ---------- CONTACT PAGE ---------- */

.contact-wrapper {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.contact-info,
.contact-logo {
    width: 100%;
}

.contact-logo img,
.contact-logo-img {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.contact-details {
    width: 100%;
}

.contact-item {
    justify-content: flex-start;

}

.contact-email-action {
    width: 100%;
}

.email-note {
    display: block;
    margin-top: 12px;
}

}

@media (max-width: 480px) {

.logo span {
    font-size: 0.95rem;
}

.logo-icon {
    width: 38px;
    height: 38px;
}

.hero-badge {
    font-size: 0.78rem;
    padding: 6px 14px;
}

.feature-grid {
    grid-template-columns: 1fr;
}

/* NEW */

.detail-split-text h2 {
    font-size: 1.5rem;
}

.detail-split-text p {
    font-size: 0.95rem;
}

.contact-logo img,
.contact-logo-img {
    max-width: 220px;
}

.contact-info h2 {
    font-size: 1.6rem;
}

.btn-gmail {
    max-width: 100%;
}

}

/* ===== About Detail Pages ===== */
.detail-hero {
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    padding: 160px 24px 90px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.75) 55%, rgba(10, 10, 10, 0.96) 100%);
    z-index: 0;
}

.detail-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.detail-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.detail-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
}

.detail-breadcrumb a:hover {
    color: var(--red-bright);
}

.detail-hero-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    margin: 0 auto 22px;
    box-shadow: var(--shadow-red-lg);
}

.detail-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
}

.detail-hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto;
}

.detail-body {
    background: var(--white);
    position: relative;
    z-index: 1;
}

.detail-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.detail-split.reverse .detail-split-visual {
    order: 2;
}

.detail-split.alt {
    display: block;
    background: var(--white-soft);
    max-width: none;
    padding: 0;
}

.detail-split.alt > .detail-split-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.detail-split-visual img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--white-muted);
    display: block;
    aspect-ratio: 4 / 3.2;
    object-fit: cover;
}

.detail-split-text .section-tag {
    margin-bottom: 16px;
}

.detail-split-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 18px;
    line-height: 1.3;
}

.detail-split-text p {
    color: var(--gray-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

.detail-feature-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px 90px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.detail-feature-card {
    background: var(--white);
    border: 1px solid var(--white-muted);
    border-radius: var(--radius);
    padding: 30px 26px;
    transition: var(--transition);
}

.detail-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(220, 38, 38, 0.3);
}

.detail-feature-card i {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--black-muted);
    color: var(--red-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 16px;
    transition: var(--transition);
}

.detail-feature-card:hover i {
    background: var(--gradient-primary);
    color: var(--white);
}

.detail-feature-card h4 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.detail-feature-card p {
    color: var(--gray-mid);
    font-size: 0.9rem;
    line-height: 1.65;
}

.detail-cta {
    background: var(--gradient-hero);
    padding: 70px 24px;
}

.detail-cta-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.detail-cta-inner h3 {
    color: var(--white);
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 800;
    margin-bottom: 8px;
}

.detail-cta-inner p {
    color: rgba(255, 255, 255, 0.65);
}

.other-sections {
    background: var(--white-soft);
    padding: 70px 24px 90px;
}

.other-sections-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.other-sections h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 36px;
}

.other-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.other-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--white);
    border: 1px solid var(--white-muted);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    text-align: left;
}

.other-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red);
}

.other-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.other-card-body {
    padding: 20px 22px;
}

.other-card-body span {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
}

.other-card-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}

.other-card-body p {
    font-size: 0.88rem;
    color: var(--gray-mid);
    line-height: 1.6;
}

.logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    border-radius: 50%;
    margin-right: 12px;
}


@media (max-width:768px){

    .contact-wrapper{
        flex-direction: column-reverse;
        text-align: center;
    }

    .contact-info,
    .contact-logo{
        width: 100%;
    }

}

@media (max-width: 768px) {

    .nav-container {
        flex-wrap: nowrap;
    }

    .logo {
        gap: 8px;
        min-width: 0;
    }

    .logo span {
        font-size: 0.85rem;
        white-space: normal;
        line-height: 1.15;
    }

    .logo-img {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
        margin-right: 0;
    }

    /* ---- Detail page hero (Alerts / Monitoring / team) ---- */
    .detail-hero {
        min-height: auto;
        padding: 130px 20px 60px;
    }

    .detail-hero-icon {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
    }

    .detail-hero p {
        font-size: 1rem;
    }

    .detail-split,
    .detail-split.alt > .detail-split-inner {
        display: flex;
        flex-direction: column;
        grid-template-columns: unset;
        gap: 24px;
        padding: 50px 20px;
    }

    .detail-split-text {
        order: 2;
        width: 100%;
    }

    .detail-split-visual {
        order: 1;
        width: 100%;
    }

    .detail-split-visual img {
        width: 100%;
        height: 240px;
        aspect-ratio: unset;
        object-fit: cover;
        border-radius: 16px;
    }

    .detail-split-text h2 {
        font-size: 1.5rem;
    }

    .detail-split-text p {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .detail-feature-grid {
        grid-template-columns: 1fr;
        padding: 10px 20px 60px;
    }

    .detail-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .other-cards {
        grid-template-columns: 1fr;
    }


    .contact-info {
        padding-left: 0;
    }

    .contact-logo-img {
        width: 160px !important;
        height: 160px !important;
        max-width: 160px;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

    .contact-logo-name {
        font-size: 1.4rem;
        white-space: normal;
        letter-spacing: 1px;
        line-height: 1.3;
    }

    .contact-logo-tag {
        font-size: 0.75rem;
    }

    .contact-item {
        gap: 12px;
        padding: 14px 16px;
    }

    .contact-item > div {
        min-width: 0;
    }

    .contact-value {
        overflow-wrap: break-word;
        word-break: break-word;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo span {
        font-size: 0.78rem;
    }

    .logo-img {
        width: 32px;
        height: 32px;
    }

    .contact-logo-img {
        width: 130px !important;
        height: 130px !important;
        max-width: 130px;
        aspect-ratio: 1 / 1;
    }

    .contact-logo-name {
        font-size: 1.2rem;
    }

    .detail-split-visual img {
        height: 200px;
    }
}
