@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    --bg-darker: #08090C;
    --bg-dark: #0F111A;
    --bg-card: #151824;
    --bg-card-hover: #1D2132;
    --border-color: #23283B;
    --primary: #FFCC00;
    --primary-glow: rgba(255, 204, 0, 0.15);
    --primary-hover: #E6B800;
    --text-main: #FFFFFF;
    --text-muted: #8E96A9;
    --text-gray: #575F73;
    --success: #00E676;
    --danger: #FF1744;
    --warning: #FF9100;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glow: 0 0 20px var(--primary-glow);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-darker);
    color: var(--text-main);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-darker);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: #23283B;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography & Layout */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

section {
    padding: 100px 5% 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

p {
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #000000;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--bg-card);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.8rem;
    border-radius: 6px;
}

/* Grid & Tech Background */
.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 204, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 204, 0, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.04) 0%, rgba(255, 204, 0, 0) 70%);
    top: 10%;
    right: -10%;
    pointer-events: none;
    z-index: 1;
}

/* Header & Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(8, 9, 12, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(35, 40, 59, 0.5);
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
    background: rgba(8, 9, 12, 0.95);
    border-bottom: 1px solid var(--border-color);
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-svg {
    height: 48px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.nav-item a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-item a:hover, .nav-item a.active {
    color: var(--primary);
}

.nav-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-item a:hover::after, .nav-item a.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 110;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 140px;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 204, 0, 0.08);
    border: 1px solid rgba(255, 204, 0, 0.3);
    padding: 6px 16px;
    border-radius: 30px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-tag span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-main);
    line-height: 1.15;
}

.hero-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-desc {
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dash-mockup {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 100%;
    max-width: 480px;
    padding: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
    position: relative;
    z-index: 2;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.dash-dots {
    display: flex;
    gap: 6px;
}

.dash-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--text-gray);
}
.dash-dots span:nth-child(1) { background-color: var(--danger); }
.dash-dots span:nth-child(2) { background-color: var(--warning); }
.dash-dots span:nth-child(3) { background-color: var(--success); }

.dash-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.dash-status {
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.2);
    color: var(--success);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.dash-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dash-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(8, 9, 12, 0.5);
    border-radius: 6px;
    border: 1px solid rgba(35, 40, 59, 0.3);
}

.dash-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dash-icon {
    color: var(--primary);
    display: flex;
    align-items: center;
}

.dash-name {
    font-size: 0.85rem;
    font-weight: 500;
}

.dash-val {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.dash-progress-container {
    width: 60px;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
}

.dash-progress {
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
}

.dash-decorations {
    position: absolute;
    width: 110%;
    height: 110%;
    z-index: 1;
    pointer-events: none;
}

.dash-dec-circle {
    position: absolute;
    border: 2px dashed rgba(255,204,0,0.15);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

.dec-1 {
    width: 320px;
    height: 320px;
    top: -20px;
    left: -20px;
}

.dec-2 {
    width: 480px;
    height: 480px;
    top: -60px;
    left: -60px;
    border-style: dotted;
    animation-duration: 60s;
    animation-direction: reverse;
}

/* Why YedekAL Section */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
    position: relative;
    z-index: 2;
}

.section-tag {
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    margin-bottom: 20px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 2;
}

.why-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 36px;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,204,0,0.3);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.why-card:hover::before {
    height: 100%;
}

.why-icon {
    width: 54px;
    height: 54px;
    background: rgba(255, 204, 0, 0.06);
    border: 1px solid rgba(255, 204, 0, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--primary);
    color: #000;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.why-card p {
    font-size: 0.95rem;
}

/* Detailed Services Grid styling (12 Services) */
#services {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--bg-darker) 100%);
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 2;
}

.service-card-detailed {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 36px 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
    position: relative;
    overflow: hidden;
}

.service-card-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 204, 0, 0.3), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card-detailed:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 204, 0, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 204, 0, 0.03);
}

.service-card-detailed:hover::before {
    opacity: 1;
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.service-card-icon {
    width: 46px;
    height: 46px;
    background: rgba(255, 204, 0, 0.05);
    border: 1px solid rgba(255, 204, 0, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
}

.service-card-detailed:hover .service-card-icon {
    background: var(--primary);
    color: #000000;
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.service-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

.service-sub-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.service-sub-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
}

.service-sub-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.service-card-detailed .btn {
    align-self: flex-start;
    width: 100%;
}

/* Cyber Security & Ransomware */
#security {
    position: relative;
    overflow: hidden;
}

.security-box {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(21, 24, 36, 0.6) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.security-badge {
    background: rgba(255, 23, 68, 0.08);
    border: 1px solid rgba(255, 23, 68, 0.3);
    color: var(--danger);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.security-badge span {
    width: 6px;
    height: 6px;
    background-color: var(--danger);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.security-title {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.sec-feat-item {
    display: flex;
    gap: 16px;
}

.sec-feat-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,204,0,0.06);
    border: 1px solid rgba(255,204,0,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.sec-feat-desc h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.sec-feat-desc p {
    font-size: 0.9rem;
}

.security-art {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.art-card {
    background: rgba(8, 9, 12, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.art-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,204,0,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.art-card.warning-style {
    border-color: rgba(255, 145, 0, 0.3);
}

.art-card.warning-style .art-card-icon {
    background: rgba(255, 145, 0, 0.08);
    color: var(--warning);
}

.art-card-text h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.art-card-text p {
    font-size: 0.85rem;
}

.art-badge-pills {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.art-badge-pills span {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Disaster Recovery (DRaaS) Section */
.draas-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.draas-flow-visual {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.flow-node {
    background: rgba(8, 9, 12, 0.6);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.flow-node-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.flow-node-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.flow-node-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.flow-node-status {
    font-size: 0.75rem;
    background: rgba(255, 204, 0, 0.1);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.flow-arrow {
    display: flex;
    justify-content: center;
    color: var(--text-gray);
    animation: flowPulse 2s infinite ease-in-out;
}

.flow-node.active-dr {
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.flow-node.active-dr .flow-node-status {
    background: var(--primary);
    color: #000;
}

/* Interactive Backup Health Check */
#health-check {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
}

.health-check-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.health-check-progress {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
    margin-bottom: 40px;
    overflow: hidden;
}

.health-check-progress-bar {
    width: 20%;
    height: 100%;
    background: var(--primary);
    transition: var(--transition);
}

.health-step {
    display: none;
}

.health-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.health-step h3 {
    font-size: 1.6rem;
    margin-bottom: 24px;
    color: var(--text-main);
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.option-card {
    background: rgba(8, 9, 12, 0.4);
    border: 1px solid var(--border-color);
    padding: 20px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.option-card:hover {
    border-color: rgba(255,204,0,0.3);
    background: rgba(8,9,12,0.6);
}

.option-card.selected {
    border-color: var(--primary);
    background: rgba(255, 204, 0, 0.04);
}

.option-card span {
    font-weight: 600;
    font-size: 1.05rem;
}

.option-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.option-card.selected .option-radio {
    border-color: var(--primary);
}

.option-card.selected .option-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
}

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

.health-result-container {
    text-align: center;
}

.health-score-gauge {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 30px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(8, 9, 12, 0.5);
    border: 4px solid var(--border-color);
    position: relative;
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
}

.score-num {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
}

.score-lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.risk-level-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.risk-high {
    background: rgba(255, 23, 68, 0.1);
    color: var(--danger);
    border: 1px solid rgba(255, 23, 68, 0.2);
}

.risk-medium {
    background: rgba(255, 145, 0, 0.1);
    color: var(--warning);
    border: 1px solid rgba(255, 145, 0, 0.2);
}

.risk-low {
    background: rgba(0, 230, 118, 0.1);
    color: var(--success);
    border: 1px solid rgba(0, 230, 118, 0.2);
}

.health-feedback {
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Sectors Grid */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 2;
}

.sector-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.sector-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.sector-card svg {
    color: var(--primary);
    margin-bottom: 16px;
}

.sector-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

/* Compliance Badges */
.compliance-container {
    margin-top: 80px;
    border-top: 1px solid var(--border-color);
    padding-top: 50px;
    text-align: center;
}

.compliance-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.compliance-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.compliance-badge {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.compliance-badge:hover {
    color: var(--primary);
    border-color: var(--primary);
}

/* Contact / Quote Form Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,204,0,0.06);
    border: 1px solid rgba(255,204,0,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.info-details h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.info-details p, .info-details a {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.info-details a:hover {
    color: var(--primary);
}

.contact-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
}

.form-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
}

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

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input, .form-group select, .form-group textarea {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 14px 18px;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.1);
}

.form-group select option {
    background-color: var(--bg-card);
    color: var(--text-main);
}

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

/* Footer styling */
footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 60px 5% 40px 5%;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 320px;
}

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

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links-col h4 {
    font-size: 1.05rem;
    color: var(--text-main);
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links-col a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
}

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

.footer-bottom-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.5);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 204, 0, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
    }
}

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

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

@keyframes flowPulse {
    0%, 100% {
        opacity: 0.4;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(4px);
    }
}

/* Intersection Observer animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Response Layout Grid adjustments for tablet and mobile devices */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .hero-title {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-illustration {
        order: -1;
    }
    
    .services-grid-detailed {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .security-box {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .draas-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 5% 60px 5%;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--bg-darker);
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        padding-top: 40px;
        z-index: 99;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-cta {
        display: none;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
