:root {
    --primary: #00a8ff;
    --primary-dark: #0088cc;
    --accent: #1565c0;
    --accent-light: #64b5f6;
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;
    --bg-logo-carousel: #1a1a25;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b7b;
    --gradient-1: linear-gradient(135deg, #00a8ff 0%, #1565c0 100%);
    --gradient-2: linear-gradient(135deg, #1565c0 0%, #00bcd4 100%);
    --gradient-3: linear-gradient(180deg, rgba(0,168,255,0.1) 0%, transparent 100%);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: transparent;
}

nav.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.logo .shield-container {
    width: 40px !important;
    height: 44px !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

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

.nav-links a svg {
    margin-left: 4px;
    transition: transform 0.3s ease;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown:hover > a svg,
.nav-dropdown.active > a svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    min-width: 160px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li {
    margin: 0;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
}

.nav-cta {
    background: var(--gradient-1);
    color: var(--bg-dark);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 168, 255, 0.3);
}

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

/* Country Selector */
.country-selector {
    position: relative;
}

.country-selector-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.country-selector-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.country-selector-btn svg {
    transition: transform 0.3s ease;
}

.country-selector-btn.active svg {
    transform: rotate(180deg);
}

.country-flag {
    font-size: 1.2rem;
    line-height: 1;
}

.country-code {
    font-size: 0.85rem;
    font-weight: 600;
}

.country-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: min(280px, calc(100vw - 24px));
    max-width: min(320px, calc(100vw - 24px));
    max-height: 400px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.country-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.country-search {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.country-search input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 8px 12px;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.country-search input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.country-search input::placeholder {
    color: var(--text-muted);
}

.country-list {
    max-height: 320px;
    overflow-y: auto;
    padding: 4px;
}

.country-list::-webkit-scrollbar {
    width: 6px;
}

.country-list::-webkit-scrollbar-track {
    background: transparent;
}

.country-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.country-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.country-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-secondary);
}

.country-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.country-item.selected {
    background: rgba(0, 168, 255, 0.1);
    color: var(--primary);
}

.country-item-flag {
    font-size: 1.5rem;
    line-height: 1;
    width: 28px;
    text-align: center;
}

.country-item-name {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 500;
}

.country-item-code {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(21, 101, 192, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 168, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 168, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
    width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(21, 101, 192, 0.1);
    border: 1px solid rgba(21, 101, 192, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-light);
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-badge-secondary {
    background: rgba(0, 168, 255, 0.1);
    border: 1px solid rgba(0, 168, 255, 0.3);
    color: var(--primary);
}

.hero-badge-secondary::before {
    background: var(--primary);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero h1 .gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-1);
    color: var(--bg-dark);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 168, 255, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-trust-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-trust-logos-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    position: relative;
    background: var(--bg-logo-carousel);
    border-radius: 16px;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
}

.carousel-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.hero-trust-logos-track {
    display: flex;
    gap: 24px;
    align-items: center;
    overflow: hidden;
    flex: 1;
}

.trust-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-logo-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.trust-logo {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: brightness(1) contrast(1.1);
    transition: filter 0.3s ease;
    display: block;
}

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

.hero-graphic {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    position: relative;
}

.shield-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(0, 168, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 350px;
    height: 350px;
    animation: rotate 20s linear infinite;
}

.orbit-2 {
    width: 450px;
    height: 450px;
    animation: rotate 30s linear infinite reverse;
    border-color: rgba(21, 101, 192, 0.15);
}

.orbit-3 {
    width: 550px;
    height: 550px;
    animation: rotate 40s linear infinite;
    border-color: rgba(0, 168, 255, 0.1);
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary);
}

.orbit-1 .orbit-dot { top: 0; left: 50%; transform: translate(-50%, -50%); }
.orbit-2 .orbit-dot { top: 50%; right: 0; transform: translate(50%, -50%); background: var(--accent); box-shadow: 0 0 20px var(--accent); }
.orbit-3 .orbit-dot { bottom: 0; left: 50%; transform: translate(-50%, 50%); }

/* Problem Section */
.problem {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(21, 101, 192, 0.03) 50%, transparent 100%);
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    font-weight: 600;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
}

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

.problem .section-description {
    margin: 0 auto 60px;
}

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

.stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 168, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

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

.problem-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: rgba(0, 188, 212, 0.3);
    background: var(--bg-card-hover);
}

.problem-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: #ec4899;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 120px 0;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--primary));
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header .section-description {
    margin: 0 auto;
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 48px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 168, 255, 0.2);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(0, 168, 255, 0.1);
    border-radius: 16px;
    color: var(--primary);
}

.service-card:nth-child(2) .service-icon {
    background: rgba(21, 101, 192, 0.1);
    color: var(--accent);
}

.service-card:nth-child(3) .service-icon {
    background: rgba(0, 188, 212, 0.1);
    color: #00bcd4;
}

.service-card:nth-child(4) .service-icon {
    background: rgba(33, 150, 243, 0.1);
    color: #2196f3;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-card > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-benefits {
    list-style: none;
}

.service-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.service-benefits li svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Service Detail Page Styles */
.service-detail {
    padding: 140px 0 80px;
}

.service-detail-hero {
    text-align: center;
    margin-bottom: 80px;
}

.service-detail-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.service-detail-hero .gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 48px 0 24px;
    color: var(--primary);
}

.service-detail-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 40px 0 16px;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-detail-content ul, .service-detail-content ol {
    margin: 24px 0;
    padding-left: 32px;
}

.service-detail-content li {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.service-detail-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 24px;
    margin: 32px 0;
}

.tool-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.tool-card:hover {
    border-color: rgba(0, 168, 255, 0.2);
    transform: translateY(-4px);
}

.tool-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.tool-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.deliverables-list {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
}

.deliverables-list h3 {
    margin-top: 0;
    color: var(--primary);
}

.deliverables-list ul {
    list-style: none;
    padding: 0;
}

.deliverables-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.deliverables-list li:last-child {
    border-bottom: none;
}

.deliverables-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

/* Why Choose Us */
.why-us {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 168, 255, 0.03) 50%, transparent 100%);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-content {
    max-width: 540px;
}

.why-us-content .section-description {
    margin-bottom: 40px;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--bg-dark);
}

.why-feature-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.why-feature-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.why-us-visual {
    position: relative;
}

.credentials-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 48px;
}

.credentials-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.credentials-avatar {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.founder-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.credentials-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.credentials-info p {
    color: var(--primary);
    font-weight: 500;
}

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

.credential-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
}

.credential-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.credential-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.credentials-companies h5 {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.company-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.company-tag {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-light);
}

/* Cyber News Section */
.cyber-news {
    padding: 140px 0 100px;
    background: var(--bg-dark);
    min-height: calc(100vh - 80px);
}

.news-header {
    text-align: center;
    margin-bottom: 60px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 168, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 168, 255, 0.1);
}

.news-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.news-source {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: rgba(0, 168, 255, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
}

.news-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.news-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
}

.news-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: var(--primary);
}

.news-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.news-link:hover {
    gap: 12px;
    color: var(--accent-light);
}

.news-link svg {
    transition: transform 0.3s ease;
}

.news-link:hover svg {
    transform: translateX(4px);
}

.news-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.news-attribution {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.news-attribution a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-attribution a:hover {
    color: var(--accent-light);
}

.news-error {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(21, 101, 192, 0.05) 100%);
}

.cta-card {
    background: var(--gradient-1);
    border-radius: 32px;
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0,0,0,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 16px;
}

.cta p {
    font-size: 1.25rem;
    color: rgba(10, 10, 15, 0.7);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-dark);
    color: var(--text-primary);
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--bg-dark);
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(10, 10, 15, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline-dark:hover {
    background: rgba(10, 10, 15, 0.1);
    border-color: rgba(10, 10, 15, 0.5);
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.footer-column h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
        order: 1;
    }

    .hero-description {
        max-width: 100%;
        width: 100%;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-trust {
        align-items: center;
    }

    .hero-visual {
        order: 2;
        margin-top: 40px;
        width: 100%;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-graphic {
        max-width: 100%;
        width: 100%;
        aspect-ratio: 1;
    }

    .shield-container {
        width: 140px;
        height: 140px;
    }

    .orbit-1 {
        width: 180px;
        height: 180px;
    }

    .orbit-2 {
        width: 230px;
        height: 230px;
    }

    .orbit-3 {
        width: 280px;
        height: 280px;
    }

    .orbit-dot {
        width: 8px;
        height: 8px;
    }

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

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

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

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Navigation */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin-top: 8px;
        margin-left: 20px;
    }

    .nav-dropdown > a svg {
        transform: rotate(0deg);
    }

    .nav-right {
        gap: 12px;
    }

    .country-selector-btn {
        padding: 6px 10px;
        font-size: 0.85rem;
    }

    .country-code {
        display: none;
    }

    .country-dropdown {
        min-width: min(260px, calc(100vw - 32px));
        max-width: min(280px, calc(100vw - 32px));
        right: 0;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

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

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

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

    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
        overflow-x: hidden;
    }

    .hero .container {
        max-width: 100%;
        overflow: hidden;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        text-align: center;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
        text-align: center;
        max-width: 100%;
        width: 100%;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .hero-trust {
        align-items: center;
    }

    .hero-trust-label {
        font-size: 0.75rem;
    }

    .hero-trust-logos-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 12px;
        gap: 8px;
    }

    .carousel-btn {
        width: 32px;
        height: 32px;
    }

    .carousel-btn svg {
        width: 16px;
        height: 16px;
    }

    .hero-trust-logos-track {
        gap: 16px;
    }

    .trust-logo-item {
        padding: 6px;
    }

    .trust-logo {
        height: 32px;
        max-width: 120px;
    }

    .hero-visual {
        max-width: 280px;
        margin-top: 30px;
    }

    .shield-container {
        width: 100px;
        height: 100px;
    }

    .orbit-1 {
        width: 140px;
        height: 140px;
    }

    .orbit-2 {
        width: 180px;
        height: 180px;
    }

    .orbit-3 {
        width: 220px;
        height: 220px;
    }

    .orbit-dot {
        width: 6px;
        height: 6px;
    }

    /* Problem Section */
    .problem {
        padding: 80px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .stat-card {
        padding: 30px 24px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .problem-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .problem-card {
        padding: 24px;
    }

    /* Services Section */
    .services {
        padding: 80px 0;
    }

    .services-header {
        margin-bottom: 50px;
    }

    .service-card {
        padding: 32px 24px;
    }

    .service-card h3 {
        font-size: 1.25rem;
    }

    /* Why Us Section */
    .why-us {
        padding: 80px 0;
    }

    .why-us-grid {
        gap: 40px;
    }

    .why-feature {
        gap: 16px;
    }

    .why-feature-icon {
        width: 40px;
        height: 40px;
    }

    .why-feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .credentials-card {
        padding: 32px 24px;
    }

    .credentials-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .credentials-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Cyber News Section */
    .cyber-news {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .news-header {
        margin-bottom: 40px;
    }

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

    .news-card {
        padding: 20px;
    }

    .news-title {
        font-size: 1.1rem;
    }

    .news-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    /* CTA Section */
    .cta {
        padding: 80px 0;
    }

    .cta-card {
        padding: 48px 24px;
    }

    .cta h2 {
        font-size: 1.75rem;
    }

    .cta p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-dark, .btn-outline-dark {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    /* Service Detail Pages */
    .service-detail {
        padding: 120px 0 60px;
    }

    .service-detail-hero h1 {
        font-size: 2rem;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
        margin: 32px 0 16px;
    }

    .service-detail-content h3 {
        font-size: 1.25rem;
        margin: 24px 0 12px;
    }

    .service-detail-content p {
        font-size: 1rem;
    }

    .tools-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tool-card {
        padding: 20px;
    }

    .deliverables-list {
        padding: 24px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
        max-width: 100%;
        overflow: hidden;
    }

    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero {
        padding: 80px 0 40px;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .hero h1 {
        font-size: 1.75rem;
        hyphens: auto;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 10px;
        line-height: 1.4;
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
    }

    .hero-description {
        font-size: 0.95rem;
        max-width: 100%;
        width: 100%;
    }

    .hero-visual {
        max-width: 200px;
        margin-top: 24px;
    }

    .shield-container {
        width: 70px;
        height: 70px;
    }

    .orbit-1 {
        width: 100px;
        height: 100px;
    }

    .orbit-2 {
        width: 130px;
        height: 130px;
    }

    .orbit-3 {
        width: 160px;
        height: 160px;
    }

    .orbit-dot {
        width: 5px;
        height: 5px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .service-card {
        padding: 24px 16px;
    }

    .problem-card {
        padding: 20px;
    }

    .cta-card {
        padding: 32px 16px;
    }

    .credentials-card {
        padding: 24px 16px;
    }

    .hero-trust-logos-wrapper {
        padding: 10px 8px;
        gap: 6px;
    }

    .carousel-btn {
        width: 28px;
        height: 28px;
    }

    .carousel-btn svg {
        width: 14px;
        height: 14px;
    }

    .hero-trust-logos-track {
        gap: 12px;
    }

    .trust-logo {
        height: 28px;
        max-width: 100px;
    }

    .trust-logo-item {
        padding: 4px;
    }

    .country-dropdown {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        min-width: 100%;
        max-width: 100%;
        max-height: 60vh;
        border-radius: 16px 16px 0 0;
    }

    .news-card {
        padding: 16px;
    }

    .news-title {
        font-size: 1rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }
}

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

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

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Location Prompt Modal */
.location-prompt-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.location-prompt-content {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
}

.location-prompt-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: pulse 2s ease infinite;
}

.location-prompt-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.location-prompt-content > p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.location-prompt-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.btn-location-allow {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-1);
    color: var(--text-primary);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 168, 255, 0.3);
}

.btn-location-allow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 255, 0.4);
}

.btn-location-allow:active {
    transform: translateY(0);
}

.btn-location-skip {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-location-skip:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

.location-prompt-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.5;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

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

@media (max-width: 768px) {
    .location-prompt-content {
        padding: 32px 24px;
        width: calc(100% - 24px);
        max-width: calc(100vw - 24px);
    }

    .location-prompt-content h2 {
        font-size: 1.5rem;
    }

    .location-prompt-buttons {
        flex-direction: column;
    }

    .btn-location-allow,
    .btn-location-skip {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .location-prompt-content {
        padding: 24px 16px;
        width: calc(100% - 16px);
        margin: 8px;
    }

    .location-prompt-content h2 {
        font-size: 1.25rem;
    }

    .location-prompt-icon {
        font-size: 3rem;
    }
}

