:root {
    --navy: #0b1a2f;
    --navy-light: #132642;
    --navy-dark: #071220;
    --gold: #c9a227;
    --gold-light: #d4b54a;
    --gold-dark: #a88a1f;
    --cream: #fffaf0;
    --cream-dark: #f5efe5;
    --white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.6);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--navy);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(11, 26, 47, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--navy);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.logo-text span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 162, 39, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    display: flex;
    align-items: center;
    padding: 8rem 5% 6rem;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.06) 0%, transparent 40%),
        linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    z-index: 1;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge span {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 35px;
    /*    font-size: clamp(2.5rem, 5vw, 4rem);*/
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-title .highlight {
    color: var(--gold);
    position: relative;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-ctas {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    padding: 1rem 2.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(201, 162, 39, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Floating 3D Cards */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 40%;
    transform: translateY(-50%);
    z-index: 5;
    width: 400px;
    height: 500px;
    display: none;
}

@media (min-width: 1200px) {
    .hero-visual {
        display: block;
    }

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

.float-card {
    position: absolute;
    background: linear-gradient(145deg, var(--navy-light), var(--navy));
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(201, 162, 39, 0.1) inset;
    animation: float 6s ease-in-out infinite;
}

.float-card-1 {
    top: 0;
    left: 0;
    width: 200px;
    animation-delay: 0s;
}

.float-card-2 {
    top: 120px;
    right: 0;
    width: 220px;
    animation-delay: -2s;
}

.float-card-3 {
    bottom: 50px;
    left: 40px;
    width: 240px;
    animation-delay: -4s;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.card-title {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.5;
}

/* Research Process Section */
.research-section {
    padding: 5rem 5%;
    background: var(--cream);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-dark);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #5a6a7a;
    font-size: 1.1rem;
    line-height: 1.7;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.process-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 6px rgba(11, 26, 47, 0.04),
        0 10px 40px rgba(11, 26, 47, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(11, 26, 47, 0.06);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(11, 26, 47, 0.12),
        0 0 0 1px rgba(201, 162, 39, 0.2);
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-card:hover::before {
    opacity: 1;
}

.process-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(11, 26, 47, 0.05);
    line-height: 1;
}

.process-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(11, 26, 47, 0.2);
}

.process-card h3 {
    font-size: 1.35rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.process-card p {
    color: #5a6a7a;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* About Section */
.about-section {
    padding: 7rem 5%;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 90%, rgba(201, 162, 39, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(201, 162, 39, 0.08) 0%, transparent 40%);
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image-wrapper {
    position: relative;
}

.about-image-frame {
    position: relative;
    padding: 1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.about-image {
    width: 100%;
    /*    aspect-ratio: 4/5;*/
    /*    background: linear-gradient(145deg, var(--navy-light), var(--navy));*/
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-image-placeholder {
    text-align: center;
    color: var(--text-muted);
}

.about-image-placeholder img {
    width: 485px;
    height: auto;
}

.about-image-placeholder span {
    font-size: 0.9rem;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 1.25rem 1.75rem;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.about-badge-text {
    font-size: 0.8rem;
    color: #5a6a7a;
    font-weight: 500;
}

.about-badge-value {
    font-size: 1.25rem;
    color: var(--navy);
    font-weight: 700;
}

.about-details {
    padding: 2rem 0;
}

.about-label {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.about-name {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--white);
    margin-bottom: 0.5rem;
}

.about-credentials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.credential-badge {
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
}

.about-bio {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(201, 162, 39, 0.15);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(201, 162, 39, 0.1);
    border-color: rgba(201, 162, 39, 0.3);
}

.highlight-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 22px;
    height: 22px;
    color: var(--navy);
}

.highlight-text h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 0.15rem;
}

.highlight-text span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Deep Research Section */
.deep-research {
    padding: 7rem 5%;
    background: var(--cream-dark);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(11, 26, 47, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(11, 26, 47, 0.12);
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(0deg, rgba(201, 162, 39, 0.05), transparent);
    transition: height 0.4s ease;
}

.feature-card:hover::after {
    height: 100%;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--navy), var(--navy-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 30px rgba(11, 26, 47, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.05);
    transform: rotate(-5deg);
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(0deg) scale(1.05);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    color: var(--gold);
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: #5a6a7a;
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 5rem 5%;
    background: var(--navy-dark);
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-header {
    text-align: center;
    margin-bottom: 3rem;
}

.disclaimer-header h2 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.disclaimer-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.disclaimer-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 16px;
    padding: 1.75rem;
}

.disclaimer-card h4 {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
    font-family: 'DM Sans', sans-serif;
}

.disclaimer-card p,
.disclaimer-card li {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
}

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

.disclaimer-card li {
    padding-left: 1rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.disclaimer-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
}

.disclaimer-important {
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.disclaimer-important p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

.disclaimer-important strong {
    color: var(--gold);
}

/* Footer */
.footer {
    background: var(--navy);
    padding: 3rem 5% 2rem;
    border-top: 1px solid rgba(201, 162, 39, 0.15);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 33%;
}

.footer-address {
    width: 33%;
}

.footer-address p {
    color: #fff;
    font-size: 13px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy);
}

.footer-logo span {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
}

.footer-info {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: right;
}

.footer-info p {
    margin-bottom: 0.25rem;
}

.footer-sebi {
    color: var(--gold);
    font-weight: 500;
}

.and_font {
    font-family: 'DM Sans', sans-serif;
}

.hero-stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
    padding: 60px 20px;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    margin: 20px 10px;
    color: #fff;
}

.stat-icon {
    font-size: 32px;
    color: #f4c430;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #f4c430;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    margin-top: 10px;
}

.featured-on {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
    overflow: hidden;
    position: relative;
}

.logo-slider-track {
    display: flex;
    width: calc(250px * 12);
}

.logo_header {
    font-size: 30px;
}

.logo-slide {
    width: 250px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.logo-slide img {
    max-width: 250px;
    max-height: 100px;
    /* filter: grayscale(100%); */
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 6));
    }
}

.featured-on::before,
.featured-on::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.featured-on::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.featured-on::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

/* Hero Section */
.page-hero {
    padding: 10rem 5% 5rem;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.08) 0%, transparent 40%),
        linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.page-hero-badge span {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.page-hero h1 {
    font-size: 35px;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.page-hero h1 .highlight {
    color: var(--gold);
}

.page-hero p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Service Section */
.service-section {
    padding: 5rem 5%;
    position: relative;
    background: var(--cream);
}

.service-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Header */
.service-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 25px rgba(11, 26, 47, 0.2);
}

.service-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--navy);
    margin-bottom: 1rem;
}

.service-section {
    animation: fadeInUp 0.8s ease-out;
}

.service-description {
    color: #5a6a7a;
    font-size: 1rem;
    line-height: 1.8;
}

/* Pricing Grid - 4 cards in a row */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    perspective: 1000px;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 
        0 10px 20px rgba(11, 26, 47, 0.08),
        0 20px 40px rgba(11, 26, 47, 0.12),
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 -3px 0 rgba(11, 26, 47, 0.1) inset;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 50%, rgba(11, 26, 47, 0.03) 100%);
    pointer-events: none;
    border-radius: 18px;
}

.pricing-card:hover {
    border-color: var(--gold);
    transform: translateY(-12px) rotateX(5deg);
    box-shadow: 
        0 25px 50px rgba(11, 26, 47, 0.15),
        0 35px 60px rgba(11, 26, 47, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 -3px 0 rgba(11, 26, 47, 0.1) inset,
        0 0 30px rgba(201, 162, 39, 0.2);
}

.pricing-card.popular {
    border-color: var(--gold);
    background: linear-gradient(145deg, var(--navy), var(--navy-light));
    transform: scale(1.03) translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(11, 26, 47, 0.25),
        0 35px 70px rgba(11, 26, 47, 0.15),
        0 0 0 2px var(--gold),
        0 1px 0 rgba(255, 255, 255, 0.1) inset,
        0 -3px 0 rgba(0, 0, 0, 0.2) inset;
}

.pricing-card.popular::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-10px) rotateX(5deg);
    box-shadow: 
        0 35px 70px rgba(11, 26, 47, 0.3),
        0 45px 80px rgba(11, 26, 47, 0.15),
        0 0 0 2px var(--gold),
        0 0 40px rgba(201, 162, 39, 0.3);
}

.pricing-card.popular .pricing-duration {
    color: var(--text-light);
}

.pricing-card.popular .pricing-original {
    color: var(--text-muted);
}

.pricing-card.popular .pricing-price {
    color: var(--white);
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    color: var(--navy);
    padding: 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pricing-card.popular .pricing-content {
    padding-top: 0.5rem;
}

.pricing-duration {
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-original {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.35rem;
}

.pricing-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.pricing-save {
    display: inline-block;
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pricing-card.popular .pricing-save {
    background: rgba(34, 197, 94, 0.25);
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.pricing-btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.pricing-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
}

.pricing-btn-secondary {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(11, 26, 47, 0.15);
}

.pricing-btn-secondary:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

.pricing-card.popular .pricing-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
}

/* Gold Line Divider */
.section-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 10%;
}

/* CTA Section */
.cta-section {
    padding: 5rem 5%;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(201, 162, 39, 0.1) 0%, transparent 40%);
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.alpha_section {
    margin: auto;
/*    padding: 80px 40px;*/
    background: #f4f4f4;
}

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

.small-title {
    font-size: 18px;
    color: #b5c9d6;
    margin-bottom: 20px;
}

.main-title {
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.main-title span {
    color: #79d3f2;
}

.alpha_description {
    font-size: 16px;
    line-height: 1.5;
    color: #3c434a;
    font-family: 'DM Sans', sans-serif;
}

.big-letter {
    font-size: 40px;
    font-weight: 700;
    display: inline-block;
    margin-right: 5px;
    font-family: 'Playfair Display', serif;
}

.column-title {
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--navy);
    margin-bottom: 5px;
}

.pdf_document { width: 100%;text-align:center;text-align:center;padding:0px 10%;line-height:1.7; }
.pdf_document ul li { display: inline-block;color: #fff; }
.pdf_document ul li a { display: inline-block;color: #c19c25; }


.logo-slider1 {
    overflow: hidden;
    background: #fff;
}

.logo-track1 {
    display: flex;
    width: max-content;
}

.logo1 {
    flex: 0 0 auto;
    padding: 0 40px;
}

.logo1 img {
    width: 170px;
    height: 170px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo1 img:hover {
    transform: scale(1.1);
}

.hamburger {
    display: none;
}

.mobile-menu { display:none; }

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-15px) rotate(1deg);
    }

    66% {
        transform: translateY(-8px) rotate(-1deg);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

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

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

    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .pricing-card {
        padding: 1.5rem 1rem;
    }

    .pricing-price {
        font-size: 1.75rem;
    }

    .footer-logo {
        width: 100%;
    }

    .footer-address {
        width: 100%;
    }
}

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

    /*.hamburger {
        display: flex;
    }*/

    .getStartedHeader { display:none; }

    /* Hamburger */
    .hamburger{
        display: block;
        position:absolute;
        right:20px;
        top:18px;
        width:25px;
        cursor:pointer;
    }

    .hamburger span{
      display:block;
      height:3px;
      background:#fff;
      margin:5px 0;
      border-radius:3px;
      transition:0.3s;
    }

    /* Menu */
    .mobile-menu{
        list-style:none;
        background:#c19c25;
        max-height:0;
        display: none;
        transition:max-height 0.4s ease;
        width: 50%;
    }

    .mobile-menu li {
        border-top:1px solid rgba(255,255,255,0.1);
        background: #0a1a2e;
    }

    .mobile-menu a{
        display:block;
        padding:15px;
        color:#fff;
        text-decoration:none;
        font-size:16px;
    }

    .mobile-menu a:hover{
        background:#1f2937;
    }

    /* Open menu */
    #menu-toggle:checked ~ .mobile-menu{
        max-height:300px;
    }

    /* Animate hamburger to X */
    #menu-toggle:checked + .hamburger span:nth-child(1){
        transform:rotate(45deg) translate(5px,5px);
    }

    #menu-toggle:checked + .hamburger span:nth-child(2){
        opacity:0;
    }

    #menu-toggle:checked + .hamburger span:nth-child(3){
        transform:rotate(-45deg) translate(6px,-6px);
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

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

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

    .about-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
        justify-content: center;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 100%;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

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

    .main-title {
        font-size: 48px;
    }


    .logo1 img {
        width: 110px;
    }

    .logo1 {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

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

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

    .logo_header {
        font-size: 20px;
    }

    .logo1 img {
        width: 120px;
    }
}